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

12345678910111213141516171819202122232425262728293031323334
  1. // @ts-check
  2. /**
  3. * The refinement approach for a tile.
  4. * <p>
  5. * See the {@link https://github.com/CesiumGS/3d-tiles/tree/main/specification#refinement|Refinement}
  6. * in the 3D Tiles spec.
  7. * </p>
  8. *
  9. * @enum {number}
  10. *
  11. * @private
  12. */
  13. const Cesium3DTileRefine = {
  14. /**
  15. * Render this tile and, if it doesn't meet the screen space error, also refine to its children.
  16. *
  17. * @type {number}
  18. * @constant
  19. */
  20. ADD: 0,
  21. /**
  22. * Render this tile or, if it doesn't meet the screen space error, refine to its descendants instead.
  23. *
  24. * @type {number}
  25. * @constant
  26. */
  27. REPLACE: 1,
  28. };
  29. Object.freeze(Cesium3DTileRefine);
  30. export default Cesium3DTileRefine;