Created
January 31, 2018 15:09
-
-
Save alimoshen/74ff5a44e99d88676e29865caccb8336 to your computer and use it in GitHub Desktop.
Google Map API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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