mirror of
https://github.com/danog/MadelineProto.git
synced 2025-01-06 01:58:20 +01:00
26 lines
493 B
Markdown
26 lines
493 B
Markdown
|
---
|
||
|
title: geoPoint
|
||
|
description: geoPoint attributes, type and example
|
||
|
---
|
||
|
## Constructor: geoPoint
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|longitude|[double](../types/double.md) | Required|
|
||
|
|latitude|[double](../types/double.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [GeoPoint](../types/GeoPoint.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$geoPoint = ['_' => 'geoPoint', 'longitude' => double, 'latitude' => double, ];
|
||
|
```
|