Created
October 25, 2015 06:50
-
-
Save rickywid/b25b8cbeec59249517a7 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
:javascript | |
function initMap() { | |
var myLatLng = {lat: #{@user.latitude}, lng: #{@user.longitude} }; | |
var map = new google.maps.Map(document.getElementById('map'), { | |
center: myLatLng, | |
zoom: 17 | |
}); | |
var marker = new google.maps.Marker({ | |
position: myLatlng, | |
title:"Hello World!", | |
map: map | |
}); | |
} | |
https://developers.google.com/maps/documentation/javascript/markers |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment