我想让地图重新定位到按钮单击事件的常量绑定。加载页面时,它显示我得到正确计算的界限的界限。加载后,我需要导航到我绘制的标记。导航到几个标记后,需要飞到我首先得到的原始边界。但它位于伦敦市。我不确定为什么它没有重新定位到原始边界。
这是我的代码
<CustomMapbox
showAll={this.state.showAll}
center={this.state.center}
fitBounds={this.state.bound}
zoom={[8]}
containerStyle={{
height: "100%"
}} onClick={this.onClickMap}
>
<Marker
locations={this.state.places}
data={this.state.product}
onClick={this.onClickPosition}
/>
{ (this.state.selectedPoint ) && (this.state.showPopup) &&
<Popup key={`${this.state.selectedPoint[0]}_${this.state.selectedPoint[1]}`} coordinates={this.state.selectedPoint}>
<StyledPopup>
<div>{this.state.selectedUPCDate}</div>
</StyledPopup>
</Popup>
}
</CustomMapbox>
如您所见,我正在使用CustomMapbox
组件和道具,例如showAll
, center
,fitBounds
用于 Map。
showAll
是否显示所有标记。当showAll
为真时,需要显示所有标记,因此需要显示带有 的区域fitBound
。当showAll
为假时,需要显示中心点。
我通过变量CustomMapbox
选择了正确的道具。showAll
在CustomMapbox
中,如果showAll
为真,center
道具将被移除,或者,fitBounds
道具将被移除。问题是在页面加载时正确显示此区域,但在导航到特定中心后未显示。
是否有任何解决方案可以使用此功能react-mapbox-gl
?