1

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!

2 Answers2

0

Mr Zimogorov, Perhaps a quick search on Stackoverflow would yield your answer -- untested:

var pinkParksStyles = [
  {
  featureType: "all",
  stylers: [
  { saturation: 0 }
 ]
},
];

map.setOptions({styles: pinkParksStyles});
Community
  • 1
  • 1
hd1
  • 33,938
  • 5
  • 80
  • 91
0

@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.

wf9a5m75
  • 6,100
  • 3
  • 25
  • 59
  • In Google IO app the map is customized, so I believe, there must be a way to style MapView. https://play.google.com/store/apps/details?id=com.google.android.apps.iosched&feature=nav_result#?t=W251bGwsMSwyLDNd Thank you! – Vladimir Zimogorov Nov 13 '12 at 12:06