Is there a way to watch for the completion of the rendering of Google map tiles?
Related to this, is there a way to test whether or not all map tiles were successfully rendered?
This is based on an unresolved issue described here.
Is there a way to watch for the completion of the rendering of Google map tiles?
Related to this, is there a way to test whether or not all map tiles were successfully rendered?
This is based on an unresolved issue described here.
Listen for the tilesloaded
event, e.g.
google.maps.event.addListener( 'tilesloaded', function() {
// tiles have been loaded
});
I don't think there is any method in the API to ask whether the tiles have been loaded, but you can set a flag in your event listener.