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