gpx-builder
Version:
Builder of GPX files
32 lines (29 loc) • 498 B
JavaScript
;
class Bounds {
/**
* @see http://www.topografix.com/gpx/1/1/#type_boundsType
*/
constructor(minlat, minlon, maxlat, maxlon) {
this.minlat = minlat;
this.minlon = minlon;
this.maxlat = maxlat;
this.maxlon = maxlon;
}
toObject() {
const {
minlat,
minlon,
maxlat,
maxlon
} = this;
return {
attributes: {
maxlat,
maxlon,
minlat,
minlon
}
};
}
}
module.exports = Bounds;