| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 | /** * Created by eric-hl on 2016/11/21. */var blueStyle = {styleJson: [    {        "featureType": "water",        "elementType": "geometry.fill",        "stylers": {            "color": "#232931"        }    },    {        "featureType": "land",        "elementType": "geometry.fill",        "stylers": {            "color": "#303844"        }    },    {        "featureType": "green",        "elementType": "geometry.fill",        "stylers": {            "color": "#394656",            "visibility": "off"        }    },    {        "featureType": "manmade",        "elementType": "all",        "stylers": {            "visibility": "off"        }    },    {        "featureType": "building",        "elementType": "all",        "stylers": {            "visibility": "off"        }    },    {        "featureType": "highway",        "elementType": "geometry",        "stylers": {            "color": "#293540"        }    },    {        "featureType": "arterial",        "elementType": "all",        "stylers": {            "visibility": "off"        }    },    {        "featureType": "local",        "elementType": "all",        "stylers": {            "visibility": "off"        }    },    {        "featureType": "railway",        "elementType": "all",        "stylers": {            "visibility": "off"        }    },    {        "featureType": "poi",        "elementType": "all",        "stylers": {            "visibility": "off"        }    },    {        "featureType": "label",        "elementType": "all",        "stylers": {            "visibility": "off"        }    },    {        "featureType": "boundary",        "elementType": "geometry",        "stylers": {            "color": "#5a6a7e",            "weight": "0.6",            "lightness": -4,            "saturation": -14        }    }]};var darkStyle = {    styleJson: [{        featureType: "land",        elementType: "geometry",        stylers: {            color: "#212121"        }    }, {        featureType: "building",        elementType: "geometry",        stylers: {            color: "#2b2b2b"        }    }, {        featureType: "highway",        elementType: "all",        stylers: {            lightness: -42,            saturation: -91        }    }, {        featureType: "arterial",        elementType: "geometry",        stylers: {            lightness: -77,            saturation: -94        }    }, {        featureType: "green",        elementType: "geometry",        stylers: {            color: "#1b1b1b"        }    }, {        featureType: "water",        elementType: "geometry",        stylers: {            color: "#181818"        }    }, {        featureType: "subway",        elementType: "geometry.stroke",        stylers: {            color: "#181818"        }    }, {        featureType: "railway",        elementType: "geometry",        stylers: {            lightness: -52,            visibility: "off"        }    }, {        featureType: "railway",        elementType: "all",        stylers: {            visibility: "off"        }    }, {        featureType: "subway",        elementType: "all",        stylers: {            visibility: "off"        }    }, {        featureType: "all",        elementType: "labels.text.stroke",        stylers: {            color: "#313131"        }    }, {        featureType: "all",        elementType: "labels.text.fill",        stylers: {            color: "#8b8787"        }    }, {        featureType: "manmade",        elementType: "geometry",        stylers: {            color: "#1b1b1b"        }    }, {        featureType: "local",        elementType: "geometry",        stylers: {            lightness: -75,            saturation: -91        }    }, {        featureType: "subway",        elementType: "geometry",        stylers: {            lightness: -65        }    }, {        featureType: "railway",        elementType: "all",        stylers: {            lightness: -40        }    }, {        featureType: "poi",        elementType: "all",        stylers: {            visibility: "off"        }    }, {        featureType: "highway",        elementType: "labels.icon",        stylers: {            visibility: "off"        }    }]}
 |