UNPKG

cesium

Version:

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

23 lines (20 loc) 413 B
define([ '../Core/freezeObject' ], function( freezeObject) { 'use strict'; /** * @private */ var ImageryState = { UNLOADED : 0, TRANSITIONING : 1, RECEIVED : 2, TEXTURE_LOADED : 3, READY : 4, FAILED : 5, INVALID : 6, PLACEHOLDER : 7 }; return freezeObject(ImageryState); });