Clustering many markers with Google Maps v3

I’ve found this blog where Matthias Burtscher converted the Marker Cluster (like the Phoogle2) for Google Maps API v.3. Since…

Dicembre 13, 2009

I’ve found this blog where Matthias Burtscher converted the Marker Cluster (like the Phoogle2) for Google Maps API v.3. Since I’m starting to develop some v3 application, I’m very happy: http://blog.fusonic.net/archives/195

Author

PHP expert. Wordpress plugin and theme developer. Father, Maker, Arduino and ESP8266 enthusiast.

Comments on “Clustering many markers with Google Maps v3”

2 thoughts

  1. Rohit Shrivastava ha detto:

    function initialize()
    {
    var center = new google.maps.LatLng(22.725661799087856, 75.86609821319574);
    var option = {
    ‘zoom’: 15,
    ‘center’: center,
    ‘mapTypeId’: google.maps.MapTypeId.ROADMAP
    };

    var map = new google.maps.Map(document.getElementById(“map_canvas”), option);

    for (var i = 0; i < 10; i++) {
    var latLng = new google.maps.LatLng(22.725661799087856,75.86609821319574);
    marker = new google.maps.Marker({'position': latLng});
    markers.push(marker);
    }

    var markerCluster = new MarkerClusterer(map, markers);

    please let me know whats wrong with this code.. I am not getting the cluster..

  2. I fond this archive from google.I think it is a good archive.Thank you!

Comments are closed

Recommended

Full Screen GControl for Google Maps

Use with phoogle modified class: (see an example here) To use it in the phoogle modified class just turn it…

Novembre 13, 2009

Decimal Degrees conversion and distance of two points on google map

Those two functions are usefull when you’re making Google Maps applications: When you show the coordinates of a point, it’s…

Dicembre 26, 2009

Javascript Ruler for Google Maps v3 to measure distance on map

Javascript example for measuring distances on a Google Maps with a ruler.

Dicembre 19, 2009

Phoogle Modified Class for Google Maps

I was looking for a php class to use on Rockit.it to geo reference band, festivals, labels and other stuff.…

Novembre 9, 2009

The Quantcast CMP broke my sites

A javascript error in CMP blocks my site.

Maggio 19, 2023