# Coordinates

## Coordinates API

### `Coordinates()`

Constructs an instance of Coordinates.

```java
Coordinates(double latitude, double longitude)
```

<table><thead><tr><th width="214">Parameters</th><th></th></tr></thead><tbody><tr><td>latitude</td><td>Specifies the north-south position of a point on the surface of the Earth, in degrees, ranging from −90° at the south pole to 90° at the north.</td></tr><tr><td>longitude</td><td>Specifies the east-west position of a point on the surface of the Earth, in degrees, ranging from -180° westward to 180° eastward.</td></tr></tbody></table>

### `getLatitude()`

Returns the latitude in degrees.

```java
double getLatitude()
```

### `getLongitude()`

Returns the longitude in degrees.

```java
double getLongitude()
```
