mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
43 lines
796 B
JavaScript
43 lines
796 B
JavaScript
|
/**
|
||
|
* A pair of coordinates, latitude `lat` and longitude `lng`.
|
||
|
*/
|
||
|
export default class Coordinates {
|
||
|
lat
|
||
|
lng
|
||
|
|
||
|
/**
|
||
|
* @param lat - Latitude.
|
||
|
* @param lng - Longitude.
|
||
|
*/
|
||
|
constructor(lat, lng) {
|
||
|
this.lat = lat
|
||
|
this.lng = lng
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
toString() {
|
||
|
return `${this.lat.toFixed(7)} ${this.lng.toFixed(7)}`
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Render the Coordinates as an human-readable string.
|
||
|
*
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
toHumanString() {
|
||
|
return `${this.lat.toFixed(3)} ${this.lng.toFixed(3)}`
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Transform the object in a Geolib compatible-one.
|
||
|
*/
|
||
|
toGeolib() {
|
||
|
return {
|
||
|
latitude: this.lat,
|
||
|
longitude: this.lng,
|
||
|
}
|
||
|
}
|
||
|
}
|