Geolocation

The Geolocation interface represents an object able to obtain the position of the device programmatically.

MDN Reference

Functions

Link copied to clipboard

The clearWatch() method of the Geolocation interface is used to unregister location/error monitoring handlers previously installed using Geolocation.watchPosition().

Link copied to clipboard
fun getCurrentPosition(    successCallback: PositionCallback,     errorCallback: PositionErrorCallback? = definedExternally,     options: PositionOptions = definedExternally)

The getCurrentPosition() method of the Geolocation interface is used to get the current position of the device.

Link copied to clipboard
fun watchPosition(    successCallback: PositionCallback,     errorCallback: PositionErrorCallback? = definedExternally,     options: PositionOptions = definedExternally): GeolocationWatchId

The watchPosition() method of the Geolocation interface is used to register a handler function that will be called automatically each time the position of the device changes.