We are searching for a way to set the styles on google v3 map so that a given feature - such as water - is transparent (ie shows through to the background beneath the holding div)... ?
We have tried with setting the styling with something like this:
var styles = [
{
featureType: "water",
stylers: [
{ color: none }
]
}]
map.setOptions({styles: styles});
but this simply sets the color to the map default which is light blue... when what we want is to see the background layer underneath the whole map...
thanks