Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more Bing Maps imagery styles. #5737

Merged
merged 1 commit into from
Aug 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Change Log
* 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)
* Fixed some issues with `disableDepthTestDistance` [#5501](https://github.com/AnalyticalGraphicsInc/cesium/issues/5501) [#5331](https://github.com/AnalyticalGraphicsInc/cesium/issues/5331) [#5621](https://github.com/AnalyticalGraphicsInc/cesium/issues/5621)
* 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