Hello,
I am trying to style google map:
like: http://www.akronyms.net/demo/arvin-html/v_1.5/
How?
Here is a references: https://developers.google.com/maps/documentation/javascript/styling
What I do not understand is to create a grey map I should include the following array variable:
var styleArray = [
{
featureType: "all",
stylers: [
{ saturation: -80 }
]
},{
featureType: "road.arterial",
elementType: "geometry",
stylers: [
{ hue: "#00ffee" },
{ saturation: 50 }
]
},{
featureType: "poi.business",
elementType: "labels",
stylers: [
{ visibility: "off" }
]
}
];
My question is where to include that array variable? I already try it and it does not work.