Interface Location

Describes a location on planet Earth.

interface Location {
    @type: "location";
    horizontal_accuracy: number;
    latitude: number;
    longitude: number;
}

Properties

@type: "location"
horizontal_accuracy: number

The estimated horizontal accuracy of the location, in meters; as defined by the sender. 0 if unknown.

latitude: number

Latitude of the location in degrees; as defined by the sender.

longitude: number

Longitude of the location, in degrees; as defined by the sender.