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
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…
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…
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…
Javascript Ruler for Google Maps v3 to measure distance on map
Javascript example for measuring distances on a Google Maps with a ruler.
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.…
Add Internet Explorer class to body to detect old browser
When you have clients that still uses an old browser, you need to handle it. This javascript function detects the…
Modify list counter in :before pseudo class with jQuery using start attribute
Suppose you have two ordered list ol tags, and the second one has a start attribute. You also have in…
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!