Currently I have a set of markers and I cluster them like this:

var markerCluster = new MarkerClusterer(map, cm_mapMarkers);

But I also have a set of filters which i use to set markers visible false or true. Unfortunatly when I set the marker setvisible(false) the cluster count is not changing.

So I looked for methods to do this:

I tried the following:

MarkerClusterer.redraw();
MarkerClusterer.repaint();

Both resulting in : has no method 'repaint' has no method 'redraw'

Here is a JSfiddle:

http://jsfiddle.net/tDYcX/30/

Anybody knows what I am doing wrong?

Thanks in advance

link|improve this question

67% accept rate
feedback

2 Answers

The MarkerClusterer isn't really designed for that sort of thing. The easiest way to do what you want is to clearMarkers() then addMarkers(markers) with a new array of markers that match your filter.

link|improve this answer
Is there realy no other way? I thought redraw or repaint should work.... – Emrulez Jan 27 at 13:21
The MarkerClusterer doesn't care/pay attention to the markers visible state, it only uses the position. The Marker is only added to the map when there is only 1 Marker in a cluster. – skarE Jan 29 at 22:01
feedback
up vote 0 down vote accepted

I managed to do it using markerclustererplus and using markerCluster.setIgnoreHidden(true); and markerCluster.repaint();

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.