BingMapsStyle.js 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. import freezeObject from '../Core/freezeObject.js';
  2. /**
  3. * The types of imagery provided by Bing Maps.
  4. *
  5. * @exports BingMapsStyle
  6. *
  7. * @see BingMapsImageryProvider
  8. */
  9. var 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/AnalyticalGraphicsInc/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/AnalyticalGraphicsInc/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. export default freezeObject(BingMapsStyle);