Created
March 21, 2018 17:22
-
-
Save ToeJamson/f23bdf9e428937554a24b10e7077d1a1 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 lineCoords = []; | |
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