I am trying to create my google map so that it blends well in my web layout. Here is the style I'm using now. Does anyone know how to make all ground mapping in a specific hex? I tried this with the "Administrative.country" featureType function with no luck.
var myStyle = [ { featureType: "administrative", elementType: "labels", stylers: [ { visibility: "off" } ] },{ featureType: " administrative.country", elementType: "geometry", stylers: [ { hue:"#6E6E6E"} ] },{ featureType: "poi", elementType: "labels", stylers: [ { visibility: "off" } ] },{ featureType: "water", elementType: "labels", stylers: [ { visibility: "off" } ] },{ featureType: "road", elementType: "labels", stylers: [ { visibility: "off" } ] } ];
source share