IonWorldImageryStyle.js 766 B

1234567891011121314151617181920212223242526272829303132333435
  1. import freezeObject from '../Core/freezeObject.js';
  2. // Note, these values map directly to ion asset ids.
  3. /**
  4. * The types of imagery provided by {@link createWorldImagery}.
  5. *
  6. * @exports IonWorldImageryStyle
  7. */
  8. var IonWorldImageryStyle = {
  9. /**
  10. * Aerial imagery.
  11. *
  12. * @type {Number}
  13. * @constant
  14. */
  15. AERIAL : 2,
  16. /**
  17. * Aerial imagery with a road overlay.
  18. *
  19. * @type {Number}
  20. * @constant
  21. */
  22. AERIAL_WITH_LABELS : 3,
  23. /**
  24. * Roads without additional imagery.
  25. *
  26. * @type {Number}
  27. * @constant
  28. */
  29. ROAD : 4
  30. };
  31. export default freezeObject(IonWorldImageryStyle);