Home › Forums › MapPress Support › Map Ready › Reply To: Map Ready
December 15, 2013 at 7:10 pm
#13944
Hi,
This may work: get the Google map object for the map, then use the ‘idle’ or ’tilesloaded’ event (they have a description in the API documentation):
mapp0.getMap();
google.maps.event.addListenerOnce(_gmap, 'tilesloaded', function() {
alert('ready');
});