Hello,

I can't properly set color of water with google maps api v3.

My RGB color is: #676a59. I've converted it to HSL using this tool: 
http://www.workwithcolor.com/hsl-color-picker-01.htm. The result is: color: 
hsl(71, 9%, 38%);

This is the code I use in Javascript to style water.

                                 var noLabelsStyle = [
                                 {
                                    featureType: "all",
                                    stylers: [{visibility: "off"}]
                                  },
                                  {
                                    featureType: "water", 
                                    elementType: "geometry",
                                    stylers: [{hue: "#676a59"}, {saturation: 
9}, {lightness: 38}, {visibility: "on" }, {gamma: 1.0}]
                                   }];

The problem is that it doesn't work at all. I don't really know what is the 
reason of that. Can you see something that I'm doing wrong?

Thanks


-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to