2017-03-11 19:54:51 +01:00
|
|
|
---
|
|
|
|
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:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
$location = ['_' => 'location', 'latitude' => double, 'longitude' => double];
|
2017-03-11 19:54:51 +01:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
{"_": "location", "latitude": double, "longitude": double}
|
2017-07-23 16:11:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
location={_='location', latitude=double, longitude=double}
|
2017-03-11 19:54:51 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|