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
Related posts:
Dec 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
Related posts:
February 11th, 2011 12:55 pm
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..
April 9th, 2011 12:23 pm
I fond this archive from google.I think it is a good archive.Thank you!