current work complete

This commit is contained in:
akilan
2020-05-14 12:10:15 +04:00
parent 2fca76e753
commit b4f9978b36
751 changed files with 233459 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
'use strict';
/**
* Location information
*/
class Location {
/**
* @param {number} latitude
* @param {number} longitude
* @param {?string} description
*/
constructor(latitude, longitude, description) {
/**
* Location latitude
* @type {number}
*/
this.latitude = latitude;
/**
* Location longitude
* @type {number}
*/
this.longitude = longitude;
/**
* Name for the location
* @type {?string}
*/
this.description = description;
}
}
module.exports = Location;