| javascript Programming Glossary: markerclustererHow can I cluster markers without overlap with google maps? http://stackoverflow.com/questions/11781183/how-can-i-cluster-markers-without-overlap-with-google-maps 
 Adding simple marker clusterer to google map http://stackoverflow.com/questions/5258553/adding-simple-marker-clusterer-to-google-map   myOptions var mcOptions gridSize 50 maxZoom 15 var mc new MarkerClusterer map mcOptions google.maps.event.addListener map 'click' function.. a marker cluster you will want to add markers to it. MarkerClusterer supports adding markers using the addMarker and addMarkers method.. individual marker onto global array var markerCluster new MarkerClusterer map markers create clusterer and push the global array of markers.. 
 |