Here is my hack to hide the ski slopes:
map.setOptions({styles: [
{
"featureType": "all",
"stylers": [{ "visibility": "off" }]
},
{
"featureType": "administrative",
"elementType": "geometry",
"stylers": [{ "visibility": "on" }]
},{
"featureType": "landscape",
"stylers": [{ "visibility": "on" }]
},{
"featureType": "road",
"stylers": [{ "visibility": "on" }]
},{
"featureType": "transit",
"stylers": [{ "visibility": "on" }]
},{
"featureType": "water",
"stylers": [{ "visibility": "on" }]
}
]});
You can see the result here: http://jsfiddle.net/69yG3/2/embedded/result/
source
share