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

12345678910111213141516171819202122232425262728
  1. // @ts-check
  2. /**
  3. * Describes how the map will operate in 2D.
  4. *
  5. * @enum {number}
  6. */
  7. const MapMode2D = {
  8. /**
  9. * The 2D map can be rotated about the z axis.
  10. *
  11. * @type {number}
  12. * @constant
  13. */
  14. ROTATE: 0,
  15. /**
  16. * The 2D map can be scrolled infinitely in the horizontal direction.
  17. *
  18. * @type {number}
  19. * @constant
  20. */
  21. INFINITE_SCROLL: 1,
  22. };
  23. Object.freeze(MapMode2D);
  24. export default MapMode2D;