Fifty shades of grey
var GRAYMAP = [ { // Dial down the map saturation. stylers: [ { saturation: -100 } ] },{ // Dial down the label darkness. elementType: 'labels', stylers: [ { lightness: 20 } ] },{ // Simplify the road geometries. featureType: 'road', elementType: 'geometry', stylers: [ { visibility: 'simplified' } ] },{ // Turn off road labels. featureType: 'road', elementType: 'labels', stylers: [ { visibility: 'off' } ] },{ // Turn off all icons. elementType: 'labels.icon', stylers: [ { visibility: 'off' } ] },{ // Turn off all POIs. featureType: 'poi', elementType: 'all', stylers: [ { visibility: 'off' }] } ]; Map.setOptions('Gray', {'Gray': GRAYMAP});
Or follow this link.