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
I’ve found this blog where Matthias Burtscher converted the Marker Cluster (like the Phoogle2) for Google Maps API v.3. Since…
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
Use with phoogle modified class: (see an example here) To use it in the phoogle modified class just turn it…
Those two functions are usefull when you’re making Google Maps applications: When you show the coordinates of a point, it’s…
Javascript example for measuring distances on a Google Maps with a ruler.
I was looking for a php class to use on Rockit.it to geo reference band, festivals, labels and other stuff.…
A nice solution found by chatGPT
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..
I fond this archive from google.I think it is a good archive.Thank you!