Sha256: 673470439e03fcc4007a94f14db2a876867872bf8a0eba369ccf2cdd184045e2
Contents?: true
Size: 1.48 KB
Versions: 9
Compression:
Stored size: 1.48 KB
Contents
/*global define*/ define(['Core/Enumeration'], function(Enumeration) { "use strict"; /** * An enumeration of the types of imagery provided by Bing Maps. * * @exports BingMapsStyle * * @see BingMapsImageryProvider */ var BingMapsStyle = { /** * Aerial imagery. * * @type {Enumeration} * @constant * @default 0 */ AERIAL : new Enumeration(0, 'AERIAL', { imagerySetName : 'Aerial' }), /** * Aerial imagery with a road overlay. * * @type {Enumeration} * @constant * @default 1 */ AERIAL_WITH_LABELS : new Enumeration(1, 'AERIAL_WITH_LABELS', { imagerySetName : 'AerialWithLabels' }), /** * Roads without additional imagery. * * @type {Enumeration} * @constant * @default 2 */ ROAD : new Enumeration(2, 'ROAD', { imagerySetName : 'Road' }), /** * Ordnance Survey imagery * * @type {Enumeration} * @constant * @default 3 */ ORDNANCE_SURVEY : new Enumeration(3, 'ORDNANCE_SURVEY', { imagerySetName : 'OrdnanceSurvey' }), /** * Collins Bart imagery. * * @type {Enumeration} * @constant * @default 4 */ COLLINS_BART : new Enumeration(4, 'COLLINS_BART', { imagerySetName : 'CollinsBart' }) }; return BingMapsStyle; });
Version data entries
9 entries across 9 versions & 1 rubygems