I’m working with the Google Maps v3 API, and I have a custom overlay layer based on the ImageMapType class. I would like to show a loading indicator of some sort while the overlay’s tiles are loading, but I don’t see any way to know when they are finished.
The code to create the overlay looks similar to the following:
var myOverlay = new google.maps.ImageMapType({
getTileUrl: myGetTileUrl,
tileSize: new google.maps.Size(256, 256),
isPng: true
});
myMap.overlayMapTypes.push(myOverlay);
The above works just fine, and the overlay successfully loads; it just seems that no events are emitted by the map to indicate anything about the ImageMapType overlay’s status.
I would expect the map to at least emit an “idle” event when the tiles are finished loading, but as far as I can tell it does not.
How may I know when the ImageMapType overlay is finished loading?
EDIT
I wrote a test case on jsFiddle: http://jsfiddle.net/6yvcB/ — Watch your console output for the word “idled” to see when the idle event fires. Notice that it never fires when you click the button to add an overlay.
Also, kittens.
It would seem there’s no “out of the box” way to know when an ImageMapType overlay has finished loading, but thanks to a suggestion from Martin over on the Google Maps API v3 Forums I was able to add in my own custom event that is emitted when the layer finishes loading.
The basic approach is:
I’ve copied the code below for posterity, but you can see it in action on jsFiddle: http://jsfiddle.net/6yvcB/22/