ArcType-d521909b.js 980 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* This file is automatically rebuilt by the Cesium build process. */
  2. define(['exports', './freezeObject-2d83f591'], function (exports, freezeObject) { 'use strict';
  3. /**
  4. * ArcType defines the path that should be taken connecting vertices.
  5. *
  6. * @exports ArcType
  7. */
  8. var ArcType = {
  9. /**
  10. * Straight line that does not conform to the surface of the ellipsoid.
  11. *
  12. * @type {Number}
  13. * @constant
  14. */
  15. NONE : 0,
  16. /**
  17. * Follow geodesic path.
  18. *
  19. * @type {Number}
  20. * @constant
  21. */
  22. GEODESIC : 1,
  23. /**
  24. * Follow rhumb or loxodrome path.
  25. *
  26. * @type {Number}
  27. * @constant
  28. */
  29. RHUMB : 2
  30. };
  31. var ArcType$1 = freezeObject.freezeObject(ArcType);
  32. exports.ArcType = ArcType$1;
  33. });