Library API
    Preparing search index...

    Interface ResolvedCoordinates

    interface ResolvedCoordinates {
        city?: string;
        country?: string;
        elevation?: number;
        lat: number;
        latitude?: number;
        lng: number;
        longitude?: number;
        sphere?: GeoSphere;
        timezone?: string;
        [key: string]: any;
        readonly [key: symbol]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    • readonly [key: symbol]: any

      Custom symbol key property

    Index
    city?: string

    City or locality name

    country?: string

    ISO country code (e.g. 'US', 'AU')

    elevation?: number

    Altitude / Elevation in meters above sea level

    lat: number
    latitude?: number

    Latitude coordinate in degrees (-90 to 90)

    lng: number
    longitude?: number

    Longitude coordinate in degrees (-180 to 180)

    sphere?: GeoSphere

    Inferred or explicit hemisphere ('north' | 'south' | 'equator')

    timezone?: string

    IANA Time Zone ID (e.g. 'Australia/Sydney')