Created
March 20, 2018 22:07
-
-
Save ToeJamson/431f9266e3120a8c414adaa60589aa09 to your computer and use it in GitHub Desktop.
location
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 map; | |
var mark; | |
var initialize = function() { | |
map = new google.maps.Map(document.getElementById('map-canvas'), {center:{lat:lat,lng:lng},zoom:12}); | |
mark = new google.maps.Marker({position:{lat:lat, lng:lng}, map:map}); | |
}; | |
window.initialize = initialize; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment