mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 14:14:38 +01:00
26 lines
508 B
Markdown
26 lines
508 B
Markdown
|
---
|
||
|
title: inputGeoPoint
|
||
|
description: inputGeoPoint attributes, type and example
|
||
|
---
|
||
|
## Constructor: inputGeoPoint
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|lat|[double](../types/double.md) | Required|
|
||
|
|long|[double](../types/double.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [InputGeoPoint](../types/InputGeoPoint.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$inputGeoPoint = ['_' => 'inputGeoPoint', 'lat' => double, 'long' => double, ];
|
||
|
```
|