2.1.1 Coordinates object
Represents a set of geographical coordinates denoting a particular place on earth.
Latitude and longitude are represented as decimal numbers. The latitude is preceded by a minus sign if it is south of the equator (a positive number implies north), and the longitude is preceded by a minus sign if it is west of the prime meridian (a positive number implies east).
Example
{
"latitude": 52.234817,
"longitude": 0.14485
}
Fields
Field | Type | Description |
---|---|---|
latitude required |
Floating point | The latitude in decimal degrees. Example value: 52.234817 |
longitude required |
Floating point | The longitude in decimal degrees. Example value: 0.14485 |
Last updated on