When Google Maps API calls "mapsbackend.loadMap" method as reported in API console? -
someone explain me when gmap javascript api calls mapsbackend.loadmap
method reported in google api console?
is called when first script google using "http://maps.googleapis.com/maps/api/js?key=..." url? called when gmap objects dynamically loaded google server? or called when map rendered on screen? (in case, method never called if map container tag display: hidden
or display: none
?)
thanks in advance
each time create google.maps.map
-instance map-load counted.
from docs:
a map load counted when map initialized on web page
i've tested little bit, seems map-load counted first time when tilesloaded-event of map fires.
this event fire when map hidden, when map-div isn't part of document @ all.
it not fire when 1 of required arguments constructor missing(e.g. zoom), set required property tilesloaded-event fire , load counted.
Comments
Post a Comment