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

BingMapsStyle.js 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. // @ts-check
  2. /**
  3. * The types of imagery provided by Bing Maps.
  4. *
  5. * @enum {number}
  6. *
  7. * @see BingMapsImageryProvider
  8. */
  9. const BingMapsStyle = {
  10. /**
  11. * Aerial imagery.
  12. *
  13. * @type {string}
  14. * @constant
  15. */
  16. AERIAL: "Aerial",
  17. /**
  18. * Aerial imagery with a road overlay.
  19. *
  20. * @type {string}
  21. * @constant
  22. * @deprecated See https://github.com/CesiumGS/cesium/issues/7128.
  23. * Use `BingMapsStyle.AERIAL_WITH_LABELS_ON_DEMAND` instead
  24. */
  25. AERIAL_WITH_LABELS: "AerialWithLabels",
  26. /**
  27. * Aerial imagery with a road overlay.
  28. *
  29. * @type {string}
  30. * @constant
  31. */
  32. AERIAL_WITH_LABELS_ON_DEMAND: "AerialWithLabelsOnDemand",
  33. /**
  34. * Roads without additional imagery.
  35. *
  36. * @type {string}
  37. * @constant
  38. * @deprecated See https://github.com/CesiumGS/cesium/issues/7128.
  39. * Use `BingMapsStyle.ROAD_ON_DEMAND` instead
  40. */
  41. ROAD: "Road",
  42. /**
  43. * Roads without additional imagery.
  44. *
  45. * @type {string}
  46. * @constant
  47. */
  48. ROAD_ON_DEMAND: "RoadOnDemand",
  49. /**
  50. * A dark version of the road maps.
  51. *
  52. * @type {string}
  53. * @constant
  54. */
  55. CANVAS_DARK: "CanvasDark",
  56. /**
  57. * A lighter version of the road maps.
  58. *
  59. * @type {string}
  60. * @constant
  61. */
  62. CANVAS_LIGHT: "CanvasLight",
  63. /**
  64. * A grayscale version of the road maps.
  65. *
  66. * @type {string}
  67. * @constant
  68. */
  69. CANVAS_GRAY: "CanvasGray",
  70. /**
  71. * Ordnance Survey imagery. This imagery is visible only for the London, UK area.
  72. *
  73. * @type {string}
  74. * @constant
  75. */
  76. ORDNANCE_SURVEY: "OrdnanceSurvey",
  77. /**
  78. * Collins Bart imagery.
  79. *
  80. * @type {string}
  81. * @constant
  82. */
  83. COLLINS_BART: "CollinsBart",
  84. };
  85. Object.freeze(BingMapsStyle);
  86. export default BingMapsStyle;