You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* @private
|
|
*/
|
|
var TileState = {
|
|
START: 0,
|
|
LOADING: 1,
|
|
READY: 2,
|
|
UPSAMPLED_ONLY: 3,
|
|
};
|
|
export default Object.freeze(TileState);
|