BingMapsStyle.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*global define*/
  2. define([
  3. '../Core/freezeObject'
  4. ], function(
  5. freezeObject) {
  6. "use strict";
  7. /**
  8. * The types of imagery provided by Bing Maps.
  9. *
  10. * @namespace
  11. * @alias BingMapsStyle
  12. *
  13. * @see BingMapsImageryProvider
  14. */
  15. var BingMapsStyle = {
  16. /**
  17. * Aerial imagery.
  18. *
  19. * @type {String}
  20. * @constant
  21. */
  22. AERIAL : 'Aerial',
  23. /**
  24. * Aerial imagery with a road overlay.
  25. *
  26. * @type {String}
  27. * @constant
  28. */
  29. AERIAL_WITH_LABELS : 'AerialWithLabels',
  30. /**
  31. * Roads without additional imagery.
  32. *
  33. * @type {String}
  34. * @constant
  35. */
  36. ROAD : 'Road',
  37. /**
  38. * Ordnance Survey imagery
  39. *
  40. * @type {String}
  41. * @constant
  42. */
  43. ORDNANCE_SURVEY : 'OrdnanceSurvey',
  44. /**
  45. * Collins Bart imagery.
  46. *
  47. * @type {String}
  48. * @constant
  49. */
  50. COLLINS_BART : 'CollinsBart'
  51. };
  52. return freezeObject(BingMapsStyle);
  53. });