|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1035 ] | MapQuest.com Europe B.V. |
---|---|
Organisation name | MapQuest.com Europe B.V. |
Short name or acronym | MapQuest.com Europe B.V. |
Organisation type | Company |
Activity type | Call centers |
Address | 83-89 Parkstraat |
Postal Code | 2514 JG |
City | The Hague |
Country | Netherlands |
Phone | + +31 70 4262 660 |
Fax | + +31 70 4262 602 |
info_(on)_mapquest.com | |
Organisation URL | http://www.mapquest.com |
Logo | Description |
![]() |
As a leading provider of destination information solutions, MapQuest.com not only provides maps and driving directions to consumers on our web site, but also supply both printed and digital mapping solutions to businesses on and off-line. On MapQuest.com, consumers can find over three-million locations worldwide, obtain detailed maps and driving directions, live traffic updates, places of interest and create and save personalized maps. For businesses, MapQuest.com provides a full range of mapping and routing services, allowing them to map-enable their web-sites, company intranet and call-center applications for improved marketing and customer service functionality. In addition, MapQuest.com provides maps and driving directions on a variety of wireless products. In December 1999, MapQuest.com delivered over 130 million maps to our users. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |