MadelineProtoDocs/old_docs/API_docs_v91/constructors/inputWebFileGeoPointLocation.md
2019-03-08 13:49:23 +01:00

1.3 KiB

title description image
inputWebFileGeoPointLocation Web file geo point location https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputWebFileGeoPointLocation

Back to constructors index

Web file geo point location

Attributes:

Name Type Required Description
geo_point InputGeoPoint Optional Geo point
access_hash long Yes Access hash
w int Yes Width
h int Yes Height
zoom int Yes Zoom
scale int Yes Scale

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}