> In manager contains a list of markers. > How to get a list of all markers, which are in the manager (or in the > map) and get to their coordinates?
You created the markers ; you added them to the manager. When you create them, keep a reference to each one. The usual method is with an array in global scope like myMarkers[]. This is example isn't about markermanager but it is a simple illustration of the technique - http://econym.org.uk/gmap/basic2.htm To recover the coordinates of a marker, see the documentation - http://code.google.com/apis/maps/documentation/reference.html#GMarker.getLatLng --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
