MadelineProtoDocs/old_docs/API_docs_v46/constructors/inputGeoPoint.md

730 B

title description image
inputGeoPoint Geo point https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputGeoPoint

Back to constructors index

Geo point

Attributes:

Name Type Required Description
latitude double Yes Latitude
longitude double Yes Longitude

Type: InputGeoPoint

Example:

$inputGeoPoint = ['_' => 'inputGeoPoint', 'latitude' => double, 'longitude' => double];

Or, if you're into Lua:

inputGeoPoint={_='inputGeoPoint', latitude=double, longitude=double}