Dec 13 2009

Clustering many markers with Google Maps v3

Category: Google Maps,JavascriptGiulio Pons @ 12:36 pm

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

Share

Related posts:

  1. Ruler for Google Maps v3 to measure distance on map
  2. Full Screen GControl for Google Maps
  3. Decimal Degrees conversion and distance of two points on google map
  4. Phoogle Modified Class for Google Maps
  5. PHP Geocoding function, from address to coordinates lat long

Tags: , , ,

2 Responses to “Clustering many markers with Google Maps v3”

  1. Rohit Shrivastava says:

    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. mutianyu great wall tours says:

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

Leave a Reply