@tauri-apps/plugin-geolocation - v2.3.2
    Preparing search index...

    Type Alias PermissionStatus

    type PermissionStatus = {
        location: PermissionState;
        coarseLocation: PermissionState;
    }
    Index

    Properties

    location: PermissionState

    Permission state for the location alias.

    On Android it requests/checks both ACCESS_COARSE_LOCATION and ACCESS_FINE_LOCATION permissions.

    On iOS it requests/checks location permissions.

    coarseLocation: PermissionState

    Permissions state for the coarseLoaction alias.

    On Android it requests/checks ACCESS_COARSE_LOCATION.

    On Android 12+, users can choose between Approximate location (ACCESS_COARSE_LOCATION) and Precise location (ACCESS_FINE_LOCATION).

    On iOS it will have the same value as the location alias.