Created
October 3, 2011 16:28
-
-
Save SpencerCooley/1259523 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var marker = new google.maps.Marker({ | |
//this is just telling where on the map to drop the marker | |
position: new google.maps.LatLng(40.7257,-74.0047), | |
//tells which map to add it to. We named the map, map earlier | |
map:map, | |
//add title | |
title:'this marker is not draggable' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment