智慧水务管理系统 - 精河县供水工程综合管理平台

Cesium3DTileContentState.js 549B

1234567891011121314151617
  1. // @ts-check
  2. /**
  3. * @private
  4. */
  5. const Cesium3DTileContentState = {
  6. UNLOADED: 0, // Has never been requested
  7. LOADING: 1, // Is waiting on a pending request
  8. PROCESSING: 2, // Request received. Contents are being processed for rendering. Depending on the content, it might make its own requests for external data.
  9. READY: 3, // Ready to render.
  10. EXPIRED: 4, // Is expired and will be unloaded once new content is loaded.
  11. FAILED: 5, // Request failed.
  12. };
  13. Object.freeze(Cesium3DTileContentState);
  14. export default Cesium3DTileContentState;