Interface Location

This object represents a point on the map.

interface Location {
    heading?: number;
    horizontal_accuracy?: number;
    latitude: number;
    live_period?: number;
    longitude: number;
    proximity_alert_radius?: number;
}

Properties

heading?: number

The direction in which user is moving, in degrees; 1-360. For active live locations only.

horizontal_accuracy?: number

The radius of uncertainty for the location, measured in meters; 0-1500

latitude: number

Latitude as defined by sender

live_period?: number

Time relative to the message sending date, during which the location can be updated; in seconds. For active live locations only.

longitude: number

Longitude as defined by sender

proximity_alert_radius?: number

The maximum distance for proximity alerts about approaching another chat member, in meters. For sent live locations only.