1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*global define*/
- define([
- '../Core/freezeObject'
- ], function(
- freezeObject) {
- "use strict";
- /**
- * The types of imagery provided by Bing Maps.
- *
- * @namespace
- * @alias BingMapsStyle
- *
- * @see BingMapsImageryProvider
- */
- var BingMapsStyle = {
- /**
- * Aerial imagery.
- *
- * @type {String}
- * @constant
- */
- AERIAL : 'Aerial',
- /**
- * Aerial imagery with a road overlay.
- *
- * @type {String}
- * @constant
- */
- AERIAL_WITH_LABELS : 'AerialWithLabels',
- /**
- * Roads without additional imagery.
- *
- * @type {String}
- * @constant
- */
- ROAD : 'Road',
- /**
- * Ordnance Survey imagery
- *
- * @type {String}
- * @constant
- */
- ORDNANCE_SURVEY : 'OrdnanceSurvey',
- /**
- * Collins Bart imagery.
- *
- * @type {String}
- * @constant
- */
- COLLINS_BART : 'CollinsBart'
- };
- return freezeObject(BingMapsStyle);
- });
|