Created
December 2, 2015 10:13
-
-
Save lukefowell/e1042fa78174c3f14d0a to your computer and use it in GitHub Desktop.
Black and White Google Maps
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
var styles = [ | |
{ | |
featureType: 'water', | |
elementType: 'all', | |
stylers: [ | |
{ hue: '#000000' }, | |
{ saturation: -100 }, | |
{ lightness: -100 }, | |
{ visibility: 'on' } | |
] | |
},{ | |
featureType: 'landscape.man_made', | |
elementType: 'all', | |
stylers: [ | |
{ hue: '#eeeeee' }, | |
{ saturation: -100 }, | |
{ lightness: 39 }, | |
{ visibility: 'on' } | |
] | |
},{ | |
featureType: 'landscape', | |
elementType: 'all', | |
stylers: [ | |
{ hue: '#ffffff' }, | |
{ saturation: -100 }, | |
{ lightness: 100 }, | |
{ visibility: 'on' } | |
] | |
},{ | |
featureType: 'administrative.province', | |
elementType: 'labels', | |
stylers: [ | |
{ hue: '#ffffff' }, | |
{ saturation: 0 }, | |
{ lightness: 100 }, | |
{ visibility: 'off' } | |
] | |
},{ | |
featureType: 'administrative.locality', | |
elementType: 'labels', | |
stylers: [ | |
{ hue: '#ffffff' }, | |
{ saturation: 0 }, | |
{ lightness: 100 }, | |
{ visibility: 'off' } | |
] | |
} | |
]; | |
var options = { | |
mapTypeControlOptions: { | |
mapTypeIds: [ 'Styled'] | |
}, | |
center: new google.maps.LatLng(54.32, 10.100000000000023), | |
zoom: 4, | |
mapTypeId: 'Styled' | |
}; | |
var div = document.getElementById('map'); | |
var map = new google.maps.Map(div, options); | |
var styledMapType = new google.maps.StyledMapType(styles, { name: 'Styled' }); | |
map.mapTypes.set('Styled', styledMapType); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment