我想使用设置为用户位置的默认视口值来渲染地图。目前下面的代码用于正常渲染,当点击它移动到该位置时,地图中有“定位我”按钮。有什么办法让它默认点击?
<ReactMapGL
mapboxApiAccessToken={mapboxApiKey}
mapStyle="mapbox://styles/mapbox/streets-v11"
{...viewport}
{...mapStyle}
onViewportChange={this.handle_view}
>
<GeolocateControl
positionOptions={{ enableHighAccuracy: true }}
trackUserLocation={true}
/>
</ReactMapGL>