mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
907 B
907 B
title | description | nav_exclude | image |
---|---|---|---|
geoPoint | GeoPoint. | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: geoPoint
GeoPoint.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
long | double | Yes | Longitude |
lat | double | Yes | Latitude |
access_hash | long | Yes | Access hash |
accuracy_radius | int | Optional | The estimated horizontal accuracy of the location, in meters; as defined by the sender. |
Type: GeoPoint
Example:
$geoPoint = ['_' => 'geoPoint', 'long' => double, 'lat' => double, 'access_hash' => long, 'accuracy_radius' => int];