MadelineProtoDocs/docs/API_docs/constructors/inputWebFileGeoPointLocation.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00: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}