Skip to content

Commit be1e97e

Browse files
committed
Merge pull request #303 from gberaudo/update_ol3
Prepare for December release
2 parents e703bd0 + 6782e9d commit be1e97e

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

CHANGES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Changelog
22

3-
## v1.11
3+
## v1.11 - 2015-12-23
44

55
* Changes
66
* Port to Cesium 1.16.
7-
* Port to OL 3.12.0
7+
* Port to OL 3.12.1
88

99
## v1.10 - 2015-11-30
1010

Cesium.externs.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ Cesium.Color.unpack = function(color) {};
3838
*/
3939
Cesium.Color.byteToFloat = function(component) {};
4040

41+
/**
42+
* @type {!Cesium.Color}
43+
*/
44+
Cesium.Color.WHITE;
45+
4146
/**
4247
* @constructor
4348
* @param {string} text
@@ -962,6 +967,12 @@ Cesium.Globe = function(ellipsoid) {};
962967
Cesium.Globe.prototype.ellipsoid;
963968

964969

970+
/**
971+
* @type {!Cesium.Color}
972+
*/
973+
Cesium.Globe.prototype.baseColor;
974+
975+
965976
/**
966977
* @type {boolean}
967978
*/
@@ -2407,6 +2418,12 @@ Cesium.Scene = function(opt_opts) {};
24072418
Cesium.Scene.prototype.canvas;
24082419

24092420

2421+
/**
2422+
* @type {!Cesium.Color}
2423+
*/
2424+
Cesium.Scene.prototype.backgroundColor;
2425+
2426+
24102427
/**
24112428
* @type {!Cesium.Context}
24122429
*/

ol3

Submodule ol3 updated from 5d64762 to 863cc1b

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "git",
88
"url": "git://github.com/openlayers/ol3-cesium.git"
99
},
10-
"license": "BSD",
10+
"license": "BSD-2-Clause",
1111
"bugs": {
1212
"url": "https://github.com/openlayers/ol3-cesium/issues"
1313
},

src/ol3cesium.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ olcs.OLCesium = function(options) {
148148
* @private
149149
*/
150150
this.globe_ = new Cesium.Globe(Cesium.Ellipsoid.WGS84);
151+
this.globe_.baseColor = Cesium.Color.WHITE;
151152
this.scene_.globe = this.globe_;
152153
this.scene_.skyAtmosphere = new Cesium.SkyAtmosphere();
153154

0 commit comments

Comments
 (0)