Skip to content

Instantly share code, notes, and snippets.

@gugat
Created September 29, 2014 19:32
Show Gist options
  • Save gugat/e9dcb44c5a92f48333f1 to your computer and use it in GitHub Desktop.
Save gugat/e9dcb44c5a92f48333f1 to your computer and use it in GitHub Desktop.
google maps
function initialize() {
var gyeLatLng = new google.maps.LatLng(-2.1705289,-79.919566);
var mapOptions = {
center: gyeLatLng,
zoom: 13
};
var map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
var marker = new google.maps.Marker({
position: gyeLatLng,
map: map,
draggable:true
});
//google.maps.event.addListener(map, 'click', function(evt) { });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment