InputGeoPoint
- class pyrogram.raw.types.InputGeoPoint
Defines a GeoPoint by its coordinates.
Constructor of
InputGeoPoint.- Details:
Layer:
223ID:
48222FAF
- Parameters:
lat (
float64-bit) – Latitudelong (
float64-bit) – Longitudeaccuracy_radius (
int32-bit, optional) – The estimated horizontal accuracy of the location, in meters; as defined by the sender.
TL Schema
inputGeoPoint#48222faf
flags:#
lat:double
long:double
accuracy_radius:flags.0?int
= InputGeoPoint
Parameter Tree
InputGeoPoint
├── lat →
double├── long →
double└── accuracy_radius →
int (optional)Example
InputGeoPoint(
lat=0.0,
long=0.0,
)