Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@alimoshen
Created January 31, 2018 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alimoshen/74ff5a44e99d88676e29865caccb8336 to your computer and use it in GitHub Desktop.
Save alimoshen/74ff5a44e99d88676e29865caccb8336 to your computer and use it in GitHub Desktop.
Google Map API
function initMap() {
// Styles a map in night mode.
var map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 40.674, lng: -73.945},
zoom: 12,
styles:
[{
"elementType": "geometry",
"stylers": [
{
"color": "#ebe3cd"
}
]
}]
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment