Class MaptilerGeolocateControlMaptiler
Hierarchy (View Summary)
- GeolocateControl
- MaptilerGeolocateControl
Constructors
constructor
Parameters
- options: GeolocateControlOptions
the control's options
Returns MaptilerGeolocateControl
- options: GeolocateControlOptions
Methods
fire
Parameters
- event: string | Event
Optionalproperties: any
Returns this
listens
Returns a true if this instance of Evented or any forwardeed instances of Evented have a listener for the specified type.
Parameters
- type: string
The event type
Returns boolean
trueif there is at least one registered listener for specified event type,falseotherwise- type: string
off
Removes a previously registered event listener.
Parameters
- type: string
The event type to remove listeners for.
- listener: Listener
The listener function to remove.
Returns this
- type: string
on
Adds a listener to a specified event type.
Parameters
- type: string
The event type to add a listen for.
- listener: Listener
The function to be called when the event is fired. The listener function is called with the data object passed to
fire, extended withtargetandtypeproperties.
Returns Subscription
- type: string
onAdd
Register a control on the map and give it a chance to register event listeners and resources. This method is called by Map.addControl internally.
Parameters
- map: MapLibreMap | Map
the Map this control will be added to
Returns HTMLElement
The control's container element. This should be created by the control and returned by onAdd without being attached to the DOM: the map will insert the control's element into the DOM as necessary.
- map: MapLibreMap | Map
once
Adds a listener that will be called only once to a specified event type.
The listener will be called first time the event fires after the listener is registered.
Parameters
- type: string
The event type to listen for.
Optionallistener: ListenerThe function to be called when the event is fired the first time.
Returns Promise<any> | MaptilerGeolocateControl
thisor a promise if a listener is not provided- type: string
onRemove
Unregister a control on the map and give it a chance to detach event listeners and resources. This method is called by Map.removeControl internally.
Returns void
setEventedParent
Bubble all events fired by this instance of Evented to this parent instance of Evented.
Parameters
Optionalparent: Evented | nullOptionaldata: any
Returns this
trigger
Programmatically request and move the map to the user's location.
Returns boolean
falseif called before control was added to a map, otherwise returnstrue.
The MaptilerGeolocateControl is an extension of the original GeolocateControl with a few changes. In this version, the active mode persists as long as the location is still centered. This means it's robust to rotation, pitch and zoom.