Skip to content

Instantly share code, notes, and snippets.

@getsudocode
Created July 19, 2018 11:30
Show Gist options
  • Save getsudocode/441eafa56a9b1372fabffd33665f40bc to your computer and use it in GitHub Desktop.
Save getsudocode/441eafa56a9b1372fabffd33665f40bc to your computer and use it in GitHub Desktop.
let map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
let marker = new google.maps.Marker({
map: map,
position: {lat: -34.397, lng: 150.644},
icon: {
url: "http://maps.google.com/mapfiles/ms/icons/blue-dot.png"
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment