Showing posts with label googlemap. Show all posts
Showing posts with label googlemap. Show all posts
Saturday, February 11, 2012
google map location pointer
VEry good control which you can search for location with auto complete function and showing the location pin on google map.
Monday, May 17, 2010
Friday, April 30, 2010
Google Map API V3 vs V2
Adding Marker in V2:
map.addOverlay(marker);
Adding Marker in V3:
marker = new google.maps.Marker( { position: point, icon: icon1, title: sTitle, map: map } ) ;
Removing Marker in V2:
map.removeOverlay(marker);
Removing Marker in V3:
marker.setMap(null);
Actually there are many more difference, but this post only highlighted basic one.
map.addOverlay(marker);
Adding Marker in V3:
marker = new google.maps.Marker( { position: point, icon: icon1, title: sTitle, map: map } ) ;
Removing Marker in V2:
map.removeOverlay(marker);
Removing Marker in V3:
marker.setMap(null);
Actually there are many more difference, but this post only highlighted basic one.
Thursday, April 1, 2010
label on googlemap marker
Subscribe to:
Posts (Atom)