cesium
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
27 lines (24 loc) • 526 B
JavaScript
/**
* The encoding that is used for a heightmap
*
* @exports HeightmapEncoding
*/
var HeightmapEncoding = {
/**
* No encoding
*
* @type {Number}
* @constant
*/
NONE: 0,
/**
* LERC encoding
*
* @type {Number}
* @constant
*
* @see {@link https://github.com/Esri/lerc|The LERC specification}
*/
LERC: 1
};
export default Object.freeze(HeightmapEncoding);