Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 4x 4x 1x | /** * Single elevation object returned by underlying web service. Contains at least, one elevation (z). May also contain point coordinates and elevation accuracy if "zonly" parameter wasn't set to true. * * @property {Float} lat - Point latitude. (only if zonly=false) * @property {Float} lon - Point longitude. (only if zonly=false) * @property {Float} z - Point elevation. * @property {Float} acc - Accuracy of elevation for this point. (only if zonly=false) * * @namespace * @alias Gp.Services.Alti.Elevation */ function Elevation () { Iif (!(this instanceof Elevation)) { throw new TypeError("Elevation constructor cannot be called as a function."); } this.z = null; } Elevation.prototype = { constructor : Elevation }; export default Elevation; |