markerclusterer

Google map API v3 event click raise when clickingMarkerClusterer?

I have a Google Map API v3 map object on a page that uses MarkerClusterer. I have a function that need to run when we click on the map to it is registered as: google.maps.event.addListener(map, 'click', function (event) { CallMe(event.latLng); }); So my problem is as follows: When I click on a cluster of MarkerClusterer instead of...

Removing Custom Markers with MarkerClusterer

I'm using Google Maps api v2 and marker clusterer. I have custom icons that replace the default google icons and they aren't being replaced but the marker cluster icons. The marker cluster icon is added but the other icons are not removed. Just wondering if anyone came across this issue. The code is probably to extensive to post (working...

marker cluster in Gmap V3

I am using marker clusterer in v3, since i have milions of points to show on map. I have three types of colored markers and created clusters for them. Now i want to add three checkboxes to select a particular type of markers and cluster it. Till now i succeeded but when i first create cluster and then select a particular type cluster it ...

How to show/hide a MarkerCluster in google maps v3?

I need to have different markers for different mapTypes, and I'm pushing them to a MarkerClusterer. I "hide" the markers with: cluster.set("map", null); cluster.resetViewport(); cluster.redraw(); And "show" them with: cluster.set("map", MAP); cluster.resetViewport(); cluster.redraw(); The problem is that MarkerClusterer seems to n...