File tree Expand file tree Collapse file tree 5 files changed +22
-4
lines changed
Expand file tree Collapse file tree 5 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -38,6 +38,11 @@ Cesium.Color.unpack = function(color) {};
3838 */
3939Cesium . 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) {};
962967Cesium . 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) {};
24072418Cesium . Scene . prototype . canvas ;
24082419
24092420
2421+ /**
2422+ * @type {!Cesium.Color }
2423+ */
2424+ Cesium . Scene . prototype . backgroundColor ;
2425+
2426+
24102427/**
24112428 * @type {!Cesium.Context }
24122429 */
Original file line number Diff line number Diff line change 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 },
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments