gpt4 book ai didi

javascript - Mapbox js map 没有瓦片

转载 作者:行者123 更新时间:2023-12-02 14:10:42 25 4
gpt4 key购买 nike

我想使用 Mapbox 框架显示分区统计图。我已经有一个使用 mapbox.light 样式的工作示例。我想要实现的是拥有一张仅显示多边形的空白 map 。简而言之,我想禁用 map 框平铺。这可能吗?我一直在尝试使用 d3 实现同样的目标,但没有任何运气。

最佳答案

您可以隐藏图层:

map 框:

map.eachLayer( function(t,e) {
if (t.setOpacity) t.setOpacity(0.5);
});

ma​​pbox gl js:

map
.getStyle()
.layers
.forEach(function(layer) {
map.setLayoutProperty(layer.id, 'visibility', 'none');
})

关于javascript - Mapbox js map 没有瓦片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39607994/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com