I am using the gmap3 ajquery plugin (for google maps v3) to cluster markers on a google map and need to get a list of which markers are within a cluster.

I am struggling to think what else I can tell you about my issue.

The only potential solution I can think of is to loop through all markers and compare their lat / long positions, but that seems so in efficient.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I've changed to jquery UI map

It has a function which fetches only markers and not clusters.

$('#map').gmap('findMarker', '', '', false, function(marker, found) {
            //do stuff with marker here
        });

By removing and re-adding the markers and then redrawing the clusters I have the solution I was after.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.