BlendOption.js 664 B

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