Representation of geographic coordinate using the spatial reference World Geodetic System (WSG84, also known as EPSG:4326).

interface LatLon {
    lat: number;
    lon: number;
}

Hierarchy (view full)

Properties

Properties

lat: number

The latitude, geographic coordinate that specifies the north-south position of a point on the Earth's surface.

lon: number

The longitude, geographic coordinate that specifies the east-west position of a point on the Earth's surface.

Generated using TypeDoc