Skip to content

Instantly share code, notes, and snippets.

@getsudocode
Last active July 18, 2018 09:28
Show Gist options
  • Save getsudocode/d1ca6c5a084d4ea3ecc9a8f1093d6bf5 to your computer and use it in GitHub Desktop.
Save getsudocode/d1ca6c5a084d4ea3ecc9a8f1093d6bf5 to your computer and use it in GitHub Desktop.
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
map.addListener('click', function(e) {
console.log(e);
addMarker(e.latLng);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment