Mobile Maps
Home
Services - Contacts

Advertising Sign-up

Please choose a username and password for your NearbyAds account. By signing up you are agreeing to the following terms.

% if ((defined($latitude)) and (defined($longitude))) { % }; % if (defined($portal_id)) { % };
Username
Password

If you have an existing account, login here.


Advantages of Mobilemaps NearbyAds technology:

  • Let local customers find you on the Internet
  • For the first time, you can target by keywords and location on the Internet. Literally place your text advertisements on the map!

  • Only pay for genuine interest
  • You only pay if someone clicks on your adverts, and you do not have to pay anything if your adverts are merely seen.

  • Simple online purchase
  • Create your own text advertisments online in minutes and pay for them online.

Hints

Your username is the way you identify yourself when you come to make changes to your adverts, check their progress, or pay money into your account.

This username must be unique on mobilemaps, so try entering a variation of your name.

Your password is known only to you and protects your account from intrusion. You should keep this private at all times. It must be longer than 6 letters, and can be a mixture of numbers and letters.


Home | Services | Contacts

webmaster@mobilemaps.com
Mobilemaps.com is Copyright 2003 High Country Software Ltd.
<%init> #If we have come to this login page from lbs by clicking on the advert link, #check the latitude and longitude input: my $MIN_LATITUDE = -90; my $MAX_LATITUDE = 90; my $MIN_LONGITUDE = -180; my $MAX_LONGITUDE = 180; my ($latitude, $longitude); my $error_message = ''; if (defined($ARGS{'latitude'})) { if (($ARGS{'latitude'} =~ /^([0-9-+.]+?)$/) and ($ARGS{'latitude'} <= $MAX_LATITUDE) and ($ARGS{'latitude'} >= $MIN_LATITUDE)) { $latitude = $1; } else { $error_message = "Your latitude is outside " . $MIN_LATITUDE . " and " . $MAX_LATITUDE . "!"; }; }; if (defined($ARGS{'longitude'})) { if (($ARGS{'longitude'} =~ /^([0-9-+.]+?)$/) and ($ARGS{'longitude'} <= $MAX_LONGITUDE) and ($ARGS{'longitude'} >= $MIN_LONGITUDE)) { $longitude = $1; } else { $error_message = "Your longitude is outside " . $MIN_LONGITUDE . " and " . $MAX_LONGITUDE . "!"; }; }; #check for a portal_id input which indicates the portal or agent from #which the advertising customer has been forwarded my $portal_id; if (defined($ARGS{'portal_id'})) { if ($ARGS{'portal_id'} =~ /^([0-9]{1,10})$/) { $portal_id = $1; }; };