I am using Google Maps v3 with MarkerClustererPlus. Click for docs
I want to animate a cluster if a cluster contains a specific marker. The animation is quite easy if the marker is not inside a cluster.
marker.setAnimation(google.maps.Animation.BOUNCE);
But i want to bounce the whole cluster-icon. I can get the cluster with:
markerCluster.getClusters();
But how can i associate the cluster-div with my getClusters()-Array? I dont know which div belongs to which cluster from the getClusters()-function.