cesium
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
41 lines (36 loc) • 742 B
JavaScript
/**
* An enum identifying the type of request. Used for finer grained logging and priority sorting.
*
* @exports RequestType
*/
var RequestType = {
/**
* Terrain request.
*
* @type Number
* @constant
*/
TERRAIN : 0,
/**
* Imagery request.
*
* @type Number
* @constant
*/
IMAGERY : 1,
/**
* 3D Tiles request.
*
* @type Number
* @constant
*/
TILES3D : 2,
/**
* Other request.
*
* @type Number
* @constant
*/
OTHER : 3
};
export default Object.freeze(RequestType);