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

Google Mapl Play back

1. very good example
2. complex example
3. click to show the point example
4. example in flex

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.

Thursday, April 1, 2010

label on googlemap marker

This open source for labeling on googlemap marker is very useful.

Checkout the example from here, where you can inject html code to show your label.