Skip to content

Commit

Permalink
Merge pull request #303 from gberaudo/update_ol3
Browse files Browse the repository at this point in the history
Prepare for December release
  • Loading branch information
gberaudo committed Dec 23, 2015
2 parents e703bd0 + 6782e9d commit be1e97e
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

## v1.11
## v1.11 - 2015-12-23

* Changes
* Port to Cesium 1.16.
* Port to OL 3.12.0
* Port to OL 3.12.1

## v1.10 - 2015-11-30

Expand Down
17 changes: 17 additions & 0 deletions Cesium.externs.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ Cesium.Color.unpack = function(color) {};
*/
Cesium.Color.byteToFloat = function(component) {};

/**
* @type {!Cesium.Color}
*/
Cesium.Color.WHITE;

/**
* @constructor
* @param {string} text
Expand Down Expand Up @@ -962,6 +967,12 @@ Cesium.Globe = function(ellipsoid) {};
Cesium.Globe.prototype.ellipsoid;


/**
* @type {!Cesium.Color}
*/
Cesium.Globe.prototype.baseColor;


/**
* @type {boolean}
*/
Expand Down Expand Up @@ -2407,6 +2418,12 @@ Cesium.Scene = function(opt_opts) {};
Cesium.Scene.prototype.canvas;


/**
* @type {!Cesium.Color}
*/
Cesium.Scene.prototype.backgroundColor;


/**
* @type {!Cesium.Context}
*/
Expand Down
2 changes: 1 addition & 1 deletion ol3
Submodule ol3 updated from 5d6476 to 863cc1
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "git",
"url": "git://github.com/openlayers/ol3-cesium.git"
},
"license": "BSD",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/openlayers/ol3-cesium/issues"
},
Expand Down
1 change: 1 addition & 0 deletions src/ol3cesium.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ olcs.OLCesium = function(options) {
* @private
*/
this.globe_ = new Cesium.Globe(Cesium.Ellipsoid.WGS84);
this.globe_.baseColor = Cesium.Color.WHITE;
this.scene_.globe = this.globe_;
this.scene_.skyAtmosphere = new Cesium.SkyAtmosphere();

Expand Down

0 comments on commit be1e97e

Please sign in to comment.