gpt4 book ai didi

Mapbox GL JS : Set base layer to white?

转载 作者:行者123 更新时间:2023-12-04 02:07:03 25 4
gpt4 key购买 nike

我想显示带有白色背景的 Mapbox GL JS map ,而不是 map 背景。

这是我现在的代码:

mapboxgl.accessToken = 'mytoken';
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/light-v9',
minZoom: 4,
maxZoom: 14,
center: [-2.0, 53.3],
});

如何用纯白色替换浅色背景?如果我改变 stylewhite然后我得到一个错误。

最佳答案

您不需要在 Mapbox Studio 中创建样式,您可以在浏览器中创建它:

var map = new mapboxgl.Map({
container: 'map',
style: {
version: 8,
sources: {

},
layers: [
{
id: 'background',
type: 'background',
paint: {
'background-color': 'white'
}
}
]

},
});

关于Mapbox GL JS : Set base layer to white?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42483180/

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