MadelineProtoDocs/docs/API_docs/constructors/geoPoint.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

890 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
long double Yes Long
lat double Yes Lat
access_hash long Yes Access hash

Type: GeoPoint

Example:

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

PWRTelegram json-encoded version:

{"_": "geoPoint", "long": double, "lat": double, "access_hash": long}

Or, if you're into Lua:

geoPoint={_='geoPoint', long=double, lat=double, access_hash=long}