From 7f3fa2e1930c9652d97bfef199ed699fd304001c Mon Sep 17 00:00:00 2001 From: Caven Chen Date: Sat, 4 Dec 2021 10:51:44 +0800 Subject: [PATCH] change the log --- CHANGES_en.md | 22 +++++++++++++++++-- CHANGES_zh.md | 18 +++++++++++++++ .../primitive/GroundPolylinePrimitive.js | 8 +++++++ package.json | 2 +- packages/base/package.json | 2 +- packages/chart/package.json | 4 ++-- packages/core/package.json | 4 ++-- packages/mapv/package.json | 4 ++-- packages/sdk/package.json | 2 +- 9 files changed, 55 insertions(+), 11 deletions(-) create mode 100644 modules/overlay/primitive/GroundPolylinePrimitive.js diff --git a/CHANGES_en.md b/CHANGES_en.md index 183f7d30..91344460 100644 --- a/CHANGES_en.md +++ b/CHANGES_en.md @@ -1,5 +1,23 @@ # Change Log +### 2.8.0 - 2021-12-04 + +#### Breaking Changes 📣 + +- Upgrade Cesium to version 1.88.0 + +#### Additions 🎉 + +- Add ground primitive layer +- Add both replacement and append FS modes for 3Dtiles +- Add water primitive holes param +- Add hot layer support for classificationType + +#### Fixes 🔧 + +- Improve the function of clearing or removing the primitive layer +- Improve the history track function + ### 2.7.0 - 2021-11-13 #### Breaking Changes 📣 @@ -8,7 +26,7 @@ #### Additions 🎉 -- Added overlay clouds +- Add overlay clouds - Add get LayerGroup function #### Fixes 🔧 @@ -63,7 +81,7 @@ #### Additions 🎉 -- Added support for layer mouse events [#53](https://github.com/dvgis/dc-sdk/issues/54) +- Add support for layer mouse events [#53](https://github.com/dvgis/dc-sdk/issues/54) - Add partial mouse default events [#54](https://github.com/dvgis/dc-sdk/issues/54) - Add function to get tile information diff --git a/CHANGES_zh.md b/CHANGES_zh.md index ee6cb7ab..97542d22 100644 --- a/CHANGES_zh.md +++ b/CHANGES_zh.md @@ -1,5 +1,23 @@ # Change Log +### 2.8.0 - 2021-12-04 + +#### Breaking Changes 📣 + +- 升级 Cesium 到 1.88.0 版本 + +#### Additions 🎉 + +- 添加贴地图元图层 +- 添加3Dtiles的替换和追加片元着色器两种模式 +- 添加水面图元洞面参数 +- 添加热区图层对贴地的支持 + +#### Fixes 🔧 + +- 完善图元图层清除或移除功能 +- 完善历史轨迹功能 + ### 2.7.0 - 2021-11-13 #### Breaking Changes 📣 diff --git a/modules/overlay/primitive/GroundPolylinePrimitive.js b/modules/overlay/primitive/GroundPolylinePrimitive.js new file mode 100644 index 00000000..5229622e --- /dev/null +++ b/modules/overlay/primitive/GroundPolylinePrimitive.js @@ -0,0 +1,8 @@ +/** + * @Author: Caven + * @Date: 2021-12-01 20:31:02 + */ + +class GroundPolylinePrimitive {} + +export default GroundPolylinePrimitive diff --git a/package.json b/package.json index 2d32b267..e8d0ac46 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dc-sdk", - "version": "2.7.0", + "version": "2.8.0", "description": "The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.", "repository": "https://github.com/dvgis/dc-sdk.git", "homepage": "https://www.dvgis.cn", diff --git a/packages/base/package.json b/packages/base/package.json index 8c6ded95..c10c6412 100644 --- a/packages/base/package.json +++ b/packages/base/package.json @@ -1,6 +1,6 @@ { "name": "@dvgis/dc-base", - "version": "2.7.0", + "version": "2.8.0", "description": "The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.", "repository": "https://github.com/dvgis/dc-sdk.git", "homepage": "https://www.dvgis.cn", diff --git a/packages/chart/package.json b/packages/chart/package.json index 449eddfb..891a0ac6 100644 --- a/packages/chart/package.json +++ b/packages/chart/package.json @@ -1,6 +1,6 @@ { "name": "@dvgis/dc-chart", - "version": "2.7.0", + "version": "2.8.0", "description": "The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.", "repository": "https://github.com/dvgis/dc-sdk.git", "homepage": "https://www.dvgis.cn", @@ -18,7 +18,7 @@ "license": "Apache 2.0", "main": "dist/dc.chart.min.js", "peerDependencies": { - "@dvgis/dc-base": "^2.7.0" + "@dvgis/dc-base": "^2.8.0" }, "files": [ "dist" diff --git a/packages/core/package.json b/packages/core/package.json index 36eba815..16a1371b 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@dvgis/dc-core", - "version": "2.7.0", + "version": "2.8.0", "description": "The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.", "repository": "https://github.com/dvgis/dc-sdk.git", "homepage": "https://www.dvgis.cn", @@ -18,7 +18,7 @@ "license": "Apache 2.0", "main": "dist/dc.core.min.js", "peerDependencies": { - "@dvgis/dc-base": "^2.7.0" + "@dvgis/dc-base": "^2.8.0" }, "files": [ "dist" diff --git a/packages/mapv/package.json b/packages/mapv/package.json index 403aad2a..3edd7ac9 100644 --- a/packages/mapv/package.json +++ b/packages/mapv/package.json @@ -1,6 +1,6 @@ { "name": "@dvgis/dc-mapv", - "version": "2.7.0", + "version": "2.8.0", "description": "The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.", "repository": "https://github.com/dvgis/dc-sdk.git", "homepage": "https://www.dvgis.cn", @@ -18,7 +18,7 @@ "license": "Apache 2.0", "main": "dist/dc.mapv.js", "peerDependencies": { - "@dvgis/dc-base": "^2.7.0" + "@dvgis/dc-base": "^2.8.0" }, "files": [ "dist" diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 2158f034..0acaa95c 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@dvgis/dc-sdk", - "version": "2.7.0", + "version": "2.8.0", "description": "The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.", "repository": "https://github.com/dvgis/dc-sdk.git", "homepage": "https://www.dvgis.cn",