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 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 1x | /**
* The state of a {@link QuadtreeTile} in the tile load pipeline.
* @enum {number}
* @private
*/
const QuadtreeTileLoadState = {
/**
* The tile is new and loading has not yet begun.
* @type QuadtreeTileLoadState
* @constant
* @default 0
*/
START: 0,
/**
* Loading is in progress.
* @type QuadtreeTileLoadState
* @constant
* @default 1
*/
LOADING: 1,
/**
* Loading is complete.
* @type QuadtreeTileLoadState
* @constant
* @default 2
*/
DONE: 2,
/**
* The tile has failed to load.
* @type QuadtreeTileLoadState
* @constant
* @default 3
*/
FAILED: 3,
};
export default Object.freeze(QuadtreeTileLoadState);
|