Skip to content

Instantly share code, notes, and snippets.

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