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 | 1x | /**
* @private
*/
const ImageryState = {
UNLOADED: 0,
TRANSITIONING: 1,
RECEIVED: 2,
TEXTURE_LOADED: 3,
READY: 4,
FAILED: 5,
INVALID: 6,
PLACEHOLDER: 7,
};
export default Object.freeze(ImageryState);
|