React component that wraps GeolocateControl.
import * as React from 'react';
import Map, {GeolocateControl} from 'react-map-gl';
function App() {
return <Map
initialViewState={{
longitude: -100,
latitude: 40,
zoom: 3.5
}}
mapStyle="mapbox://styles/mapbox/streets-v9"
>
<GeolocateControl />
</Map>;
}
Imperative methods are accessible via a React ref hook:
import * as React from 'react';
import Map, {GeolocateControl} from 'react-map-gl';
function App() {
const geolocateControlRef = React.useCallback((ref) => {
if (ref) {
// Activate as soon as the control is loaded
ref.trigger();
}
}, []);
return <Map><GeolocateControl ref={geolocateControlRef} /></Map>;
}
Trigger a geolocation event.
Returns: true
if successful.
Note that the following properties are not reactive. They are only used when the component first mounts.
positionOptions
: PositionOptions
A Geolocation API PositionOptions object
Default: false
If true
the GeolocateControl becomes a toggle button and when active the map will receive updates to the user's location as it changes.
fitBoundsOptions
: FitBoundsOptions
Default: {maxZoom: 15}
A (fitBounds) options object to use when the map is panned and zoomed to the user's location.
Default: 'top-right'
Placement of the control relative to the map.
CSS style override that applies to the control's container.
Default: true
Draw a transparent circle will be drawn around the user location indicating the accuracy (95% confidence level) of the user's location. Set to false
to disable.
This only has effect if showUserLocation
is true
.
Default: false
If true
, an arrow will be drawn next to the user location dot indicating the device's heading.
This only has affect when trackUserLocation
is true
.
Default: true
Show a dot on the map at the user's location. Set to false
to disable.
onGeolocate
: (evt: GeolocateResultEvent) => void
Called on each Geolocation API position update that returned as success.
onError
: (evt: GeolocateErrorEvent) => void
Called on each Geolocation API position update that returned as an error.
onOutOfMaxBounds
: (evt: GeolocateResultEvent) => void
Called on each Geolocation API position update that returned as success but user position is out of map maxBounds
.
onTrackUserLocationStart
: (evt: GeolocateEvent) => void
Called when the GeolocateControl changes to the active lock state.
onTrackUserLocationEnd
: (evt: GeolocateEvent) => void
Called when the GeolocateControl changes to the background state.