MadelineProtoDocs/old_docs/API_docs_v46/constructors/geoPoint.md

690 B

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

Constructor: geoPoint

Back to constructors index

Geo point

Attributes:

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

Type: GeoPoint

Example:

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

Or, if you're into Lua:

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