UNPKG

@cesium/engine

Version:

CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.

20 lines (16 loc) 248 B
// @ts-check /** * @private */ const ImageryState = { UNLOADED: 0, TRANSITIONING: 1, RECEIVED: 2, TEXTURE_LOADED: 3, READY: 4, FAILED: 5, INVALID: 6, PLACEHOLDER: 7, }; Object.freeze(ImageryState); export default ImageryState;