first commit with existing project files
This commit is contained in:
14
models/Geo.js
Normal file
14
models/Geo.js
Normal file
@@ -0,0 +1,14 @@
|
||||
export class Geo {
|
||||
constructor(lat, lng) {
|
||||
this._lat = lat;
|
||||
this._lng = lng;
|
||||
}
|
||||
|
||||
get lat() { return this._lat; }
|
||||
|
||||
get lng() { return this._lng; }
|
||||
|
||||
set lat(lat) { this._lat = lat; }
|
||||
|
||||
set lng(lng) { this._lng = lng; }
|
||||
}
|
||||
Reference in New Issue
Block a user