Sanity Library Reference Docs
    Preparing search index...

    Interface GeopointValue

    Geographical point representing a pair of latitude and longitude coordinates, stored as degrees, in the World Geodetic System 1984 (WGS 84) format. Also includes an optional alt property representing the altitude in meters.

    interface GeopointValue {
        _type: "geopoint";
        alt?: number;
        lat: number;
        lng: number;
    }
    Index

    Properties

    Properties

    _type: "geopoint"

    Type of the object. Must be geopoint.

    alt?: number

    Altitude in meters

    lat: number

    Latitude in degrees

    lng: number

    Longitude in degrees