Hello, I have a map with about 2000 markers, it come slow:
I use this this way to whow the markers: var markers = []; var marker1 = markerCreator(...) ; markers.push(marker1); map.addOverlay(marker1); var marker2 = markerCreator(...) ; markers.push(marker2); map.addOverlay(marker2); .... var marker2000 = markerCreator(...) ; markers.push(marker2000); map.addOverlay(marker2000); I have an array (markers) with the 2000 markers. It's a way to display only the markers arround a radius of x kilometers ... or show only markers from one state ? Cédric -- 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.
