Google Maps JavaScript API - 如何设计商家风格?

时间:2018-04-19 08:22:59

标签: javascript google-maps google-maps-api-3

我正在尝试设置Google地图地图的样式,并且根据要求我需要为某个区域内的商家颜色设置样式。

根据Maps JS docs,我应该能够做到以下几点:

[
  {
    "featureType": "poi.business",
    "elementType": "geometry.fill",
    "stylers": [
      { "color": "#ff0000" }
    ]
  }
]

但没有任何反应。但是,我可以轻松设置标签,道路等的样式。

你们有没有想法?

1 个答案:

答案 0 :(得分:0)

您可以使用Styling Wizard检查自己的风格。

例如,应用以下样式

[
  {
    "featureType": "poi.business",
    "elementType": "geometry.fill",
    "stylers": [
      {
        "color": "#ff0000"
      }
    ]
  }
]

enter image description here

结果

enter image description here