MadelineProto/old_docs/API_docs_v46/constructors/inputGeoPoint.md

44 lines
764 B
Markdown
Raw Normal View History

---
title: inputGeoPoint
description: inputGeoPoint attributes, type and example
---
## Constructor: inputGeoPoint
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|latitude|[double](../types/double.md) | Yes|
|longitude|[double](../types/double.md) | Yes|
### Type: [InputGeoPoint](../types/InputGeoPoint.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$inputGeoPoint = ['_' => 'inputGeoPoint', 'latitude' => double, 'longitude' => double];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "inputGeoPoint", "latitude": double, "longitude": double}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
inputGeoPoint={_='inputGeoPoint', latitude=double, longitude=double}
```