3

有没有办法用 google map api2 for android对地图进行风格化?我所需要的只是将背景设为灰色,道路设为白色,并关闭一些标记,如公共汽车站。

我知道谷歌 javaScript maps api v3 可以做到这一点。它是这样工作的:

   var pinkParksStyles = [
{
 featureType: "all",
 stylers: [
  { saturation: -80 }
 ]
},
{
 featureType: "poi.park",
 stylers: [
  { hue: "#ff0023" },
  { saturation: 40 }
 ]
}
];

map.setOptions({styles: pinkParksStyles});

https://developers.google.com/maps/documentation/javascript/styling#styling_the_default_map

但我无法为 android 找到类似的东西。

4

1 回答 1

1

Styled maps are not currently supported for the Google Maps Android API

于 2013-05-20T18:48:11.990 回答