Azure maps blog状态为Grayscale maps: A dark-gray map style is for users who want to have a darker scale representation of a map.
如何在Javascript实现中启用它?
答案 0 :(得分:2)
请参见https://codepen.io/azuremaps/pen/WKOQRq上的代码示例。我们将有 文档很快。
style: "grayscale_dark"
答案 1 :(得分:1)
定义地图时可以设置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" });