How can I customize the appearance of Google Maps in my Android app? The task is to put saturation value to 0.
Thank you for your help!
How can I customize the appearance of Google Maps in my Android app? The task is to put saturation value to 0.
Thank you for your help!
Mr Zimogorov, Perhaps a quick search on Stackoverflow would yield your answer -- untested:
var pinkParksStyles = [
{
featureType: "all",
stylers: [
{ saturation: 0 }
]
},
];
map.setOptions({styles: pinkParksStyles});
@Vladimir Zimogorov
Are you talking about MapView or GoogleMapsAPI-v3? Google Maps API v3 supports "styledMapType" which enables you to control appearance of Google Maps, Mr.hd1 show an example. Meanwhile, I think MapView haven't support the future yet.