geographic.js 206 Bytes
Newer Older
Athanasios's avatar
Athanasios committed
1
2
3
4
5
6
7
8
9
10
11
class Geographic {

  constructor(longitude, latitude, height) {
    this.longitude = longitude;
    this.latitude = latitude;
    this.height = height || 0.0;
  }

}

module.exports = Geographic;