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

BlendOption.js 693B

123456789101112131415161718192021222324252627282930313233
  1. // @ts-check
  2. /**
  3. * Determines how opaque and translucent parts of billboards, points, and labels are blended with the scene.
  4. *
  5. * @enum {number}
  6. */
  7. const BlendOption = {
  8. /**
  9. * The billboards, points, or labels in the collection are completely opaque.
  10. * @type {number}
  11. * @constant
  12. */
  13. OPAQUE: 0,
  14. /**
  15. * The billboards, points, or labels in the collection are completely translucent.
  16. * @type {number}
  17. * @constant
  18. */
  19. TRANSLUCENT: 1,
  20. /**
  21. * The billboards, points, or labels in the collection are both opaque and translucent.
  22. * @type {number}
  23. * @constant
  24. */
  25. OPAQUE_AND_TRANSLUCENT: 2,
  26. };
  27. Object.freeze(BlendOption);
  28. export default BlendOption;