GeoPoint
- class pyrogram.raw.types.GeoPoint
GeoPoint.
Constructor of
GeoPoint.- Details:
Layer:
223ID:
B2A2F663
- Parameters:
long (
float64-bit) – Longitudelat (
float64-bit) – Latitudeaccess_hash (
int64-bit) – Access hashaccuracy_radius (
int32-bit, optional) – The estimated horizontal accuracy of the location, in meters; as defined by the sender.
TL Schema
geoPoint#b2a2f663
flags:#
long:double
lat:double
access_hash:long
accuracy_radius:flags.0?int
= GeoPoint
Parameter Tree
GeoPoint
├── long →
double├── lat →
double├── access_hash →
long└── accuracy_radius →
int (optional)Example
GeoPoint(
long=0.0,
lat=0.0,
access_hash=0,
)