Skip to content

Instantly share code, notes, and snippets.

@ToeJamson
Created March 21, 2018 17:22
Show Gist options
  • Save ToeJamson/f23bdf9e428937554a24b10e7077d1a1 to your computer and use it in GitHub Desktop.
Save ToeJamson/f23bdf9e428937554a24b10e7077d1a1 to your computer and use it in GitHub Desktop.
location
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