MadelineProtoDocs/docs/API_docs/constructors/inputWebFileGeoPointLocatio...

1.3 KiB

title description image
inputWebFileGeoPointLocation inputWebFileGeoPointLocation attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputWebFileGeoPointLocation

Back to constructors index

Attributes:

Name Type Required
geo_point InputGeoPoint Optional
access_hash long Yes
w int Yes
h int Yes
zoom int Yes
scale int Yes

Type: InputWebFileLocation

Example:

$inputWebFileGeoPointLocation = ['_' => 'inputWebFileGeoPointLocation', 'geo_point' => InputGeoPoint, 'access_hash' => long, 'w' => int, 'h' => int, 'zoom' => int, 'scale' => int];

PWRTelegram json-encoded version:

{"_": "inputWebFileGeoPointLocation", "geo_point": InputGeoPoint, "access_hash": long, "w": int, "h": int, "zoom": int, "scale": int}

Or, if you're into Lua:

inputWebFileGeoPointLocation={_='inputWebFileGeoPointLocation', geo_point=InputGeoPoint, access_hash=long, w=int, h=int, zoom=int, scale=int}