Wasn't it Martijn van der Plaat who wrote: > >Hi experts, > >Im playing with Google Maps. I don't understand why the zoomend >eventlister says that !catMarkers[i].isHidden() stays false in a zoom >level that the points are disappeared. >I want to know if a specific MarkerManager category is showed while >zooming, so i can display the points in a sidebar. > >You can take a look at: http://www.profec.nl/profec/gmaps/ > >thanks in advance!
.isHidden() only tells you whether .hide() is in effect. MarkerManager doesn't use .hide(), it uses .removeOverlay(). [If it used .hide() then the markers would still be attached to the map, and the map would be just as sluggish as if all the markers were visible.] There isn't anything that tells you whether a marker is currently addOverlay()ed. -- http://econym.org.uk/gmap The Blackpool Community Church Javascript Team --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
