Maps API v3 Simple styled map
Grey map
by Alex Azuero
HTML
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<div id="map-canvas"></div>
CSS
#map-canvas {
height: 400px;
}
JavaScript
var map;
function initialize() {
var bwStyle = [{
'featureType': 'all',
'elementType': 'all',
'stylers': [{
'saturation': -100
}]
}];
var mapOptions = {
center: new google.maps.LatLng(52.368465, 4.903921),
zoom: 10,
styles: bwStyle
};
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
}
initialize();