@nextcloud/dialogs
    Preparing search index...

    Interface Geolocation

    The Geolocation interface represents an object able to obtain the position of the device programmatically. It gives Web content access to the location of the device. This allows a website or app to offer customized results based on the user's location.

    MDN Reference

    interface Geolocation {
        clearWatch(watchId: number): void;
        getCurrentPosition(
            successCallback: PositionCallback,
            errorCallback?: PositionErrorCallback | null,
            options?: PositionOptions,
        ): void;
        watchPosition(
            successCallback: PositionCallback,
            errorCallback?: PositionErrorCallback | null,
            options?: PositionOptions,
        ): number;
    }
    Index

    Methods

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

      MDN Reference

      Parameters

      • watchId: number

      Returns void

    • 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. You can also, optionally, specify an error handling callback function.

      MDN Reference

      Parameters

      Returns number