Bill
Bill

Reputation: 3209

Google Map API Style for Whitewater from Google Map Engine

I was wondering how and where can I extract the JSON styling for the Base Map "Whitewater" from Google Map Engine?

Here is an example of such map: https://mapsengine.google.com/map/edit?mid=z-BEFzFo7gdM.kYdiUKVQpQQI

However, there are no solid style found in Google's API docs.

Thanks Bill

Upvotes: 0

Views: 428

Answers (1)

Ivar
Ivar

Reputation: 154

According to google maps engine Pro, this is the JSON for style "Whitewater"

[ { "stylers" : [ { "visibility" : "on" },
        { "saturation" : -13 },
        { "lightness" : -17 },
        { "hue" : "#ff6e00" }
      ] },
  { "featureType" : "water",
    "stylers" : [ { "visibility" : "on" },
        { "lightness" : 100 }
      ]
  },
  { "featureType" : "poi",
    "stylers" : [ { "lightness" : 39 },
        { "saturation" : -43 },
        { "visibility" : "on" }
      ]
  },
  { "elementType" : "geometry",
    "featureType" : "roads",
    "stylers" : [ { "visibility" : "on" },
        { "lightness" : 30 }
      ]
  },
  { "elementType" : "labels",
    "stylers" : [ { "lightness" : 35 } ]
  }
]

Upvotes: 1

Related Questions