@situm/react-native
    Preparing search index...

    Interface Location

    Represents a location with various attributes including position, accuracy, and bearing.

    interface Location {
        accuracy?: number;
        bearing?: { degrees: number; degreesClockwise: number };
        hasBearing?: boolean;
        position?: Position;
    }
    Index

    Properties

    accuracy?: number

    The accuracy of the location information in meters

    bearing?: { degrees: number; degreesClockwise: number }

    Bearing information including degrees and degreesClockwise

    hasBearing?: boolean

    Indicates if bearing information is available

    position?: Position

    The position information of the location