Files
coopgo/node_modules/ol/TileState.js
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

18 lines
267 B
JavaScript

/**
* @module ol/TileState
*/
/**
* @enum {number}
*/
export default {
IDLE: 0,
LOADING: 1,
LOADED: 2,
/**
* Indicates that tile loading failed
* @type {number}
*/
ERROR: 3,
EMPTY: 4,
};
//# sourceMappingURL=TileState.js.map