Skip to content

Commit

Permalink
Add more Bing Maps imagery styles.
Browse files Browse the repository at this point in the history
  • Loading branch information
shunter committed Aug 10, 2017
1 parent be83a12 commit 1b4c757
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Change Log
* Fixed `replaceState` bug that was causing the `CesiumViewer` demo application to crash in Safari and iOS
* Fixed issue where `Model` and `BillboardCollection` would throw an error if the globe is undefined [#5638](https://github.com/AnalyticalGraphicsInc/cesium/issues/5638)
* Fixed issue where the `Model` glTF cache loses reference to the model's buffer data. [#5720](https://github.com/AnalyticalGraphicsInc/cesium/issues/5720)
* Added several new Bing Maps styles: `CANVAS_DARK`, `CANVAS_LIGHT`, and `CANVAS_GRAY`.

### 1.36 - 2017-08-01

Expand Down
26 changes: 25 additions & 1 deletion Source/Scene/BingMapsStyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,31 @@ define([
ROAD : 'Road',

/**
* Ordnance Survey imagery
* A dark version of the road maps.
*
* @type {String}
* @constant
*/
CANVAS_DARK : 'CanvasDark',

/**
* A lighter version of the road maps.
*
* @type {String}
* @constant
*/
CANVAS_LIGHT : 'CanvasLight',

/**
* A grayscale version of the road maps.
*
* @type {String}
* @constant
*/
CANVAS_GRAY : 'CanvasGray',

/**
* Ordnance Survey imagery. This imagery is visible only for the London, UK area.
*
* @type {String}
* @constant
Expand Down

0 comments on commit 1b4c757

Please sign in to comment.