MadelineProto/docs/TD_docs/constructors/location.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

46 lines
868 B
Markdown

---
title: location
description: Describes location on Earth
---
## Constructor: location
[Back to constructors index](index.md)
Describes location on Earth
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|latitude|[double](../types/double.md) | Yes|Latitude of location in degrees as defined by sender|
|longitude|[double](../types/double.md) | Yes|Longitude of location in degrees as defined by sender|
### Type: [Location](../types/Location.md)
### Example:
```
$location = ['_' => 'location', 'latitude' => double, 'longitude' => double];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "location", "latitude": double, "longitude": double}
```
Or, if you're into Lua:
```
location={_='location', latitude=double, longitude=double}
```