瀏覽代碼

change the log

tags/2.8.0
Caven Chen 3 年之前
父節點
當前提交
7f3fa2e193

+ 20
- 2
CHANGES_en.md 查看文件

# Change Log # 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 ### 2.7.0 - 2021-11-13


#### Breaking Changes 📣 #### Breaking Changes 📣


#### Additions 🎉 #### Additions 🎉


- Added overlay clouds
- Add overlay clouds
- Add get LayerGroup function - Add get LayerGroup function


#### Fixes 🔧 #### Fixes 🔧


#### Additions 🎉 #### 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 partial mouse default events [#54](https://github.com/dvgis/dc-sdk/issues/54)
- Add function to get tile information - Add function to get tile information



+ 18
- 0
CHANGES_zh.md 查看文件

# Change Log # Change Log


### 2.8.0 - 2021-12-04

#### Breaking Changes 📣

- 升级 Cesium 到 1.88.0 版本

#### Additions 🎉

- 添加贴地图元图层
- 添加3Dtiles的替换和追加片元着色器两种模式
- 添加水面图元洞面参数
- 添加热区图层对贴地的支持

#### Fixes 🔧

- 完善图元图层清除或移除功能
- 完善历史轨迹功能

### 2.7.0 - 2021-11-13 ### 2.7.0 - 2021-11-13


#### Breaking Changes 📣 #### Breaking Changes 📣

+ 8
- 0
modules/overlay/primitive/GroundPolylinePrimitive.js 查看文件

/**
* @Author: Caven
* @Date: 2021-12-01 20:31:02
*/

class GroundPolylinePrimitive {}

export default GroundPolylinePrimitive

+ 1
- 1
package.json 查看文件

{ {
"name": "dc-sdk", "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.", "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", "repository": "https://github.com/dvgis/dc-sdk.git",
"homepage": "https://www.dvgis.cn", "homepage": "https://www.dvgis.cn",

+ 1
- 1
packages/base/package.json 查看文件

{ {
"name": "@dvgis/dc-base", "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.", "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", "repository": "https://github.com/dvgis/dc-sdk.git",
"homepage": "https://www.dvgis.cn", "homepage": "https://www.dvgis.cn",

+ 2
- 2
packages/chart/package.json 查看文件

{ {
"name": "@dvgis/dc-chart", "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.", "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", "repository": "https://github.com/dvgis/dc-sdk.git",
"homepage": "https://www.dvgis.cn", "homepage": "https://www.dvgis.cn",
"license": "Apache 2.0", "license": "Apache 2.0",
"main": "dist/dc.chart.min.js", "main": "dist/dc.chart.min.js",
"peerDependencies": { "peerDependencies": {
"@dvgis/dc-base": "^2.7.0"
"@dvgis/dc-base": "^2.8.0"
}, },
"files": [ "files": [
"dist" "dist"

+ 2
- 2
packages/core/package.json 查看文件

{ {
"name": "@dvgis/dc-core", "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.", "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", "repository": "https://github.com/dvgis/dc-sdk.git",
"homepage": "https://www.dvgis.cn", "homepage": "https://www.dvgis.cn",
"license": "Apache 2.0", "license": "Apache 2.0",
"main": "dist/dc.core.min.js", "main": "dist/dc.core.min.js",
"peerDependencies": { "peerDependencies": {
"@dvgis/dc-base": "^2.7.0"
"@dvgis/dc-base": "^2.8.0"
}, },
"files": [ "files": [
"dist" "dist"

+ 2
- 2
packages/mapv/package.json 查看文件

{ {
"name": "@dvgis/dc-mapv", "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.", "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", "repository": "https://github.com/dvgis/dc-sdk.git",
"homepage": "https://www.dvgis.cn", "homepage": "https://www.dvgis.cn",
"license": "Apache 2.0", "license": "Apache 2.0",
"main": "dist/dc.mapv.js", "main": "dist/dc.mapv.js",
"peerDependencies": { "peerDependencies": {
"@dvgis/dc-base": "^2.7.0"
"@dvgis/dc-base": "^2.8.0"
}, },
"files": [ "files": [
"dist" "dist"

+ 1
- 1
packages/sdk/package.json 查看文件

{ {
"name": "@dvgis/dc-sdk", "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.", "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", "repository": "https://github.com/dvgis/dc-sdk.git",
"homepage": "https://www.dvgis.cn", "homepage": "https://www.dvgis.cn",

Loading…
取消
儲存