MadelineProtoDocs/old_docs/API_docs_v14/constructors/inputGeoPoint.md

759 B

title description image
inputGeoPoint Defines a GeoPoint by its coordinates. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputGeoPoint

Back to constructors index

Defines a GeoPoint by its coordinates.

Attributes:

Name Type Required Description
lat double Yes Latitide
long double Yes Longtitude

Type: InputGeoPoint

Example:

$inputGeoPoint = ['_' => 'inputGeoPoint', 'lat' => double, 'long' => double];

Or, if you're into Lua:

inputGeoPoint={_='inputGeoPoint', lat=double, long=double}