React Native Location
    Preparing search index...

    Type Alias Location

    type Location = {
        accuracy: number;
        altitude: number;
        altitudeAccuracy: number;
        course: number;
        courseAccuracy?: number;
        floor?: number;
        fromMockProvider?: boolean;
        latitude: number;
        longitude: number;
        speed: number;
        speedAccuracy?: number;
        timestamp: number;
    }
    Index

    Properties

    accuracy: number

    The radius of uncertainty for the location, measured in meters.

    android ios

    altitude: number

    The altitude of the location in meters.

    android ios

    altitudeAccuracy: number

    The accuracy of the altitude value, measured in meters.

    android ios

    course: number

    The direction in which the device is traveling, measured in degrees and relative to due north.

    android ios

    courseAccuracy?: number

    Get the estimated course accuracy of this location, in degrees.

    android

    floor?: number

    The logical floor of the building in which the user is located.

    android ios

    fromMockProvider?: boolean

    If the location comes from a mock provider.

    android

    latitude: number

    The latitude of the location.

    android ios

    longitude: number

    The longitude of the location.

    android ios

    speed: number

    The instantaneous speed of the device, measured in meters per second.

    android ios

    speedAccuracy?: number

    Get the estimated speed accuracy of this location, in meters per second.

    android

    timestamp: number

    The time that the device was at this location.

    android ios