I managed to solve the upper left corner problem with the following
piece of code... I hope that it helps others too
// Create a point for the center of the map
var center = new GLatLng(latitude, longitude);
// refresh the map by checking the resize, recentering and checking
the resize again 1000ms after the page has loaded
window.setTimeout(function() {
map.checkResize();
map.setCenter(center, 12);
map.checkResize();
}, 1000);
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---