Azure地图博客指出Grayscale maps: A dark-gray map style is for users who want to have a darker scale representation of a map.
如何在 Javascript 实现中启用此功能?
Azure地图博客指出Grayscale maps: A dark-gray map style is for users who want to have a darker scale representation of a map.
如何在 Javascript 实现中启用此功能?
请参阅https://codepen.io/azuremaps/pen/WKOQRq上的代码示例。我们很快就会有文件。
style: "grayscale_dark"
您可以style: "grayscale_dark"
在定义地图时进行设置。
var map = new atlas.Map("map", {
center: mapCenterPosition,
zoom: 15,
style: "grayscale_dark"
});
您也可以在地图上创建一个控件,允许您在不同模式之间切换:
map.addControl(new atlas.control.StyleControl(), { position: "top-right" });