Google Maps stopped working suddenly (blank map)
I start with google maps. just learning. some time ago it worked. now he's gone. everything seems to work in UI Controls, Markers / Overlay elements, but the map is empty.
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)));
});

+2
source to share