vote up 2 vote down star

i am starting with google maps. just learning. awhile ago, it was working. now its not. everything seems to workin UI Controls, Markers/Overlay but the map is blank.

google.load("jquery", "1.3.2");
google.load("maps", "2");
google.setOnLoadCallback(function() {
    var map = new google.maps.Map2(document.getElementById("map"));
    map.setCenter(new google.maps.LatLng(103.8, 1.37), 13);
    map.setUIToDefault();
    map.addOverlay(new google.maps.Marker(new google.maps.LatLng(103.8, 1.37)));
});

http://img42.imageshack.us/img42/9176/93200994557pm.png

flag

76% accept rate
1  
It may be difficult to get answers with your 27% accept rate. Go back and accept some answers to your other questions - I see a few that have more than one valid answer. Be sure to keep accepting answers as you ask questions. – JoshJordan Sep 3 at 14:02
1  
Zoom out and you'll see the map – Chris B Sep 3 at 16:50

1 Answer

vote up 2 vote down check

The point you are trying to centre the map onto isn't a valid Lat/Lon pair: Latitude runs from +/-90 degrees: you're passing in +103.8

seems like you've got your parameters the wrong way around (Lat +1.37, Lon +103.8 puts you in Malaysia)

link|flag
Singapore to be more accurate ;) – iAn Sep 3 at 14:07
1  
This is precisely the problem. The map isn't blank - it's showing you the location you requested (which is off the map). – Chris B Sep 3 at 16:49
oh, yes i got it wrong. i am supposed to go to singapore. i noticed the precesion is very high i rounded the lat & long to 2 dp and i went far off where i wanted to be ... lol – iceangel89 Sep 4 at 11:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.