gpt4 book ai didi

reactjs - React MapBox 我无法更改位置

转载 作者:行者123 更新时间:2023-12-02 20:06:39 25 4
gpt4 key购买 nike

我正在使用 alex3165/react-mapbox-gl 并且遇到问题。我试图查看 x,y 位置,但它没有改变。不断展示伦敦。我也尝试更改node_module,但结果是相同的。我该怎么办?

const coordinate=[29.371532589441756,40.896189603433761];

return (
<div>
<div className="col-md-7 col-xs-12">
<div id="map" className="map-sm">
<Map
style="mapbox://styles/mapbox/satellite-v9"
zoom={zoom}
containerStyle={{
height: "100%",
width: "100%",
center: {position}

}}>
<Layer
type="symbol"
id="marker"
layout={{ "icon-image": "marker-15" }}>

</Layer>
<Feature coordinates={coordinate}/>
</Map>
</div>

最佳答案

Map组件上使用center属性。您只是使用 Feature 组件设置要在 map 上显示的要素,这实际上并没有设置 MapBox 的默认位置。

<Map
style="mapbox://styles/mapbox/satellite-v9"
zoom={zoom}
containerStyle={{
height: "100%",
width: "100%",
}}
center={coordinate}
>
<Layer
type="symbol"
id="marker"
layout={{ "icon-image": "marker-15" }}>

</Layer>
<Feature coordinates={coordinate}/>
</Map>

关于reactjs - React MapBox 我无法更改位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54460031/

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