如何更改 google 地图的颜色

How to change color of google map

我找到了一些如何自定义我的 googlemap enter link description here - 但我没有找到的是 -> 你知道例如选项 ROADMAP。这是地图,这个拖把上有很多颜色,如绿色、黄色等。可以将这张地图设为黑白或灰度吗?谢谢

这里是 google 地图与 google 地图 API 的地图设置样式的示例 :),希望对您有所帮助 URL: https://developers.google.com/maps/documentation/javascript/styling

var styles = [
  {
    stylers: [
      { hue: "#00ffe6" },
      { saturation: -20 }
    ]
  },{
    featureType: "road",
    elementType: "geometry",
    stylers: [
      { lightness: 100 },
      { visibility: "simplified" }
    ]
  },{
    featureType: "road",
    elementType: "labels",
    stylers: [
      { visibility: "off" }
    ]
  }
];

map.setOptions({styles: styles});