Snazzy colors

Snazzy Maps is a collection of free styles for Google Maps and you can of course use it with SimpleGmaps! View more themes over at snazzymaps.com.

javascript


simplegmaps.init({
    container: '#simplegmaps-1',
    MapOptions: {
      zoom: 16,
      styles: [{
    "stylers": [{
        "visibility": "off"
    }]
}, {
    "featureType": "road",
        "stylers": [{
        "visibility": "on"
    }, {
        "color": "#ffffff"
    }]
}, {
    "featureType": "road.arterial",
        "stylers": [{
        "visibility": "on"
    }, {
        "color": "#fee379"
    }]
}, {
    "featureType": "road.highway",
        "stylers": [{
        "visibility": "on"
    }, {
        "color": "#fee379"
    }]
}, {
    "featureType": "landscape",
        "stylers": [{
        "visibility": "on"
    }, {
        "color": "#f3f4f4"
    }]
}, {
    "featureType": "water",
        "stylers": [{
        "visibility": "on"
    }, {
        "color": "#7fc8ed"
    }]
}, {}, {
    "featureType": "road",
        "elementType": "labels.text.fill",
        "stylers": [{
        "color": "#000000",
        "visibility": "off"
    }]
}, {
    "featureType": "poi.park",
        "elementType": "geometry.fill",
        "stylers": [{
        "visibility": "on"
    }, {
        "color": "#83cead"
    }]
}, {
    "elementType": "labels.text.fill",
        "stylers": [{
            "color": "#000000",
        "visibility": "on"
    }]
}, {
    "elementType": "labels.text.stroke",
        "stylers": [{
            "color": "transparent",
        "visibility": "on"
    }]
}, {
    "featureType": "landscape.man_made",
        "elementType": "geometry",
        "stylers": [{
        "weight": 0.9
    }, {
        "visibility": "off"
    }]
}]
    }
  });
});

html