peyk.platforms.telegram.types.location

Classes

Location(latitude, longitude[, ...])

This object represents a point on the map.

class peyk.platforms.telegram.types.location.Location(latitude: float, longitude: float, horizontal_accuracy: float | None = None, live_period: int | None = None, heading: int | None = None, proximity_alert_radius: int | None = None)[source]

Bases: object

This object represents a point on the map.

Variables:
  • latitude (float) – Latitude as defined by the sender

  • longitude (float) – Longitude as defined by the sender

  • horizontal_accuracy (float | None) – The radius of uncertainty for the location, measured in meters; 0-1500

  • live_period (int | None) – Time relative to the message sending date, during which the location can be updated; in seconds. For active live locations only.

  • heading (int | None) – The direction in which user is moving, in degrees; 1-360. For active live locations only.

  • proximity_alert_radius (int | None) – The maximum distance for proximity alerts about approaching another chat member, in meters. For sent live locations only.

latitude: float
longitude: float
horizontal_accuracy: float | None = None
live_period: int | None = None
heading: int | None = None
proximity_alert_radius: int | None = None
classmethod from_dict(data: dict | None) Location | None[source]

Parse a Telegram API mapping into this type.

Parameters:

data – Raw Telegram API mapping, or None.

Returns:

Parsed type instance, or None when data is None.