File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ # v 2.14.0 - 2023-04-26
34
4- # v 2.13.2 - 2022-11-
5+ * Breaking changes
6+ * Use named exports
57
68* Changes
7- * port to CesiumJS 1.99 and OL 7.1
9+ * port to CesiumJS 1.104 and OL 7.3
810
911# v 2.13 - 2021-05-20
1012
Original file line number Diff line number Diff line change 11{
22 "name" : " ol-cesium" ,
3- "version" : " 2.13.2 " ,
3+ "version" : " 2.14.0 " ,
44 "description" : " OpenLayers Cesium integration library" ,
55 "scripts" : {
66 "build-examples" : " cross-env NODE_ENV=production TARGET=examples webpack --progress --bail" ,
Original file line number Diff line number Diff line change @@ -14,16 +14,14 @@ import Manager from './olcs/contrib/Manager.js';
1414
1515export default OLCesium ;
1616
17- // Using var for phantomJS
18- // eslint-disable-next-line no-var
19- var olcs = window [ 'olcs' ] = { } ;
17+ const olcs = window [ 'olcs' ] = { } ;
2018olcs . OLCesium = OLCesium ;
2119
2220olcs . AbstractSynchronizer = AbstractSynchronizer ;
2321olcs . RasterSynchronizer = RasterSynchronizer ;
2422olcs . VectorSynchronizer = VectorSynchronizer ;
2523
26- olcs . core = core . default ;
24+ olcs . core = core ;
2725olcs . core . OLImageryProvider = OLImageryProvider ;
2826olcs . core . VectorLayerCounterpart = VectorLayerCounterpart ;
2927
You can’t perform that action at this time.
0 commit comments