I want to render the map with default values of viewport set to user's location. Currently below code is for normal rendering and there is locate me button in the map when clicked it moves to that location. Any way to get it default clicked?
<ReactMapGL
mapboxApiAccessToken={mapboxApiKey}
mapStyle="mapbox://styles/mapbox/streets-v11"
{...viewport}
{...mapStyle}
onViewportChange={this.handle_view}
>
<GeolocateControl
positionOptions={{ enableHighAccuracy: true }}
trackUserLocation={true}
/>
</ReactMapGL>