Hi
When initialising and loading my GoogleMap, it only partially loads.
Only some of the tiles and shown, and you can only drag (move) the map
by clicking on the loaded tiles. If I resize my browser, then the
problem is fixed. Also, I'm working in a .NET environment. The
problem only seems to occur when I'm using a master page and content
place holders.
I did some Googling and found someone with a similar problem. They
apparently used checkResize to fix this. This doesn't work for me
unfortunately :(
Sorry for not being able to link my URL, but this project is internal,
and we have no way of hosting it.
My initialisation function:
Initialise: function() {
if (GBrowserIsCompatible()) {
// Create the Google Map
this.map = new GMap2(this.map, { draggableCursor: 'auto',
draggingCursor: 'move' }); ;
this.map.setCenter(new GLatLng(-33.958259582519531,
18.463146209716797), 13);
this.map.addControl(new GSmallMapControl());
this.map.disableDoubleClickZoom();
this.map.disableContinuousZoom();
this.map.disableScrollWheelZoom();
this.map.checkResize();
}
}
Any idea to why this problem has arisen?
Thanks
Dave
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---