-
Notifications
You must be signed in to change notification settings - Fork 0
/
latlon.js
79 lines (56 loc) · 1.38 KB
/
latlon.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// @flow
/**
* A `LatLon` object represents a given latitude and longitude coordinates.
*
* @param {number} lat Latitude, measured in degrees.
* @param {number} lon Longitude, measured in degrees.
* @example
* var ll = new LatLon(42.10376, 1.84584);
*/
export default class LatLon {
constructor(lat: number, lon: number) {
const areNumbers = !(isNaN(lat) || isNaN(lon));
if (areNumbers) {
this.lat = +lat;
this.lon = +lon;
const validRange = this.lat > -90 && this.lat < 90 &&
this.lon > -180 && this.lon < 180;
if (!validRange) {
throw new Error("Invalid LatLon value: Latitude must be between -90 and 90 and Longitude must be between -180 and 180");
}
} else {
throw new Error(`Invalid LatLon object: (${lat}, ${lon})`);
}
}
/**
* Set the latitude
*
* @param {number} lat
* @returns {LatLon} `this`
*/
setLatitude(lat: number) {
this.lat = lat;
return this;
}
/**
* Set the longitude
*
* @param {number} lon
* @returns {LatLon} `this`
*/
setLongitude(lon: number) {
this.lon = lon;
return this;
}
/**
* Returns the LatLon object as a string.
*
* @returns {string} The coordinates as a string in the format `'LatLon(lat, lng)'`.
* @example
* var ll = new LatLon(42.10376, 1.84584);
* ll.toString(); //"LatLon(42.10376, 1.84584)"
*/
toString() {
return `LatLon(${this.lat}, ${this.lon})`;
}
}