Browse Source

1. 修改 ViewerOption 调用错误,2.修改覆盖物圆无法实例化的错误

tags/1.6.1
Caven Chen 5 years ago
parent
commit
bbf5ee72de

+ 8
- 0
CHANGE.md View File

# 更新 # 更新


## 1.6.1

### 2020-5-19

> 1. 添加鼠标事件对覆盖物的验证
> 2. 修改 ViewerOption 调用错误
> 3. 修改覆盖物圆无法实例化的错误

## 1.6.0 ## 1.6.0


### 2020-5-18 ### 2020-5-18

+ 1
- 1
package.json View File

{ {
"name": "@dvgis/dc-sdk", "name": "@dvgis/dc-sdk",
"version": "1.6.0",
"version": "1.6.1",
"description": " The SDK is a secondary development based on the open source project Cesium, which optimizes some operations of Cesium and enables developers to quickly develop 3D applications through the framework.", "description": " The SDK is a secondary development based on the open source project Cesium, which optimizes some operations of Cesium and enables developers to quickly develop 3D applications through the framework.",
"main": "index.js", "main": "index.js",
"repository": "https://github.com/Digital-Visual/dc-sdk.git", "repository": "https://github.com/Digital-Visual/dc-sdk.git",

+ 2
- 2
src/base/index.js View File

* @Author: Caven * @Author: Caven
* @Date: 2020-04-22 09:44:30 * @Date: 2020-04-22 09:44:30
* @Last Modified by: Caven * @Last Modified by: Caven
* @Last Modified time: 2020-05-18 19:33:07
* @Last Modified time: 2020-05-19 22:02:26
*/ */


import { initMixin, initUse } from './global-api' import { initMixin, initUse } from './global-api'
Author: 'Caven Chen', Author: 'Caven Chen',
GitHub: 'https://github.com/Digital-Visual', GitHub: 'https://github.com/Digital-Visual',
Home: 'https://www.dvgis.cn', Home: 'https://www.dvgis.cn',
Version: '1.6.0',
Version: '1.6.1',
Namespace: {}, Namespace: {},
Initialized: false Initialized: false
} }

+ 3
- 3
src/core/Loader.js View File

* @Author: Caven * @Author: Caven
* @Date: 2019-12-27 17:18:52 * @Date: 2019-12-27 17:18:52
* @Last Modified by: Caven * @Last Modified by: Caven
* @Last Modified time: 2020-05-15 09:01:23
* @Last Modified time: 2020-05-19 22:05:23
*/ */


import ImageryLayerFactory from './imagery/ImageryLayerFactory' import ImageryLayerFactory from './imagery/ImageryLayerFactory'


import { import {
Billboard, Billboard,
Cricle,
Circle,
DivIcon, DivIcon,
Label, Label,
Point, Point,
TopoJsonLayer, TopoJsonLayer,
VectorLayer, VectorLayer,
Billboard, Billboard,
Cricle,
Circle,
DivIcon, DivIcon,
Label, Label,
Point, Point,

+ 1
- 1
src/core/option/ViewerOption.js View File

* @Author: Caven * @Author: Caven
* @Date: 2019-12-30 09:24:37 * @Date: 2019-12-30 09:24:37
* @Last Modified by: Caven * @Last Modified by: Caven
* @Last Modified time: 2020-05-19 21:57:48
* @Last Modified time: 2020-05-19 22:03:12
*/ */


const { Cesium } = DC.Namespace const { Cesium } = DC.Namespace

src/core/overlay/base/Cricle.js → src/core/overlay/base/Circle.js View File

* @Author: Caven * @Author: Caven
* @Date: 2020-01-31 18:57:02 * @Date: 2020-01-31 18:57:02
* @Last Modified by: Caven * @Last Modified by: Caven
* @Last Modified time: 2020-05-11 21:54:41
* @Last Modified time: 2020-05-19 22:05:48
*/ */


import { Util } from '../../utils' import { Util } from '../../utils'

+ 2
- 2
src/core/overlay/index.js View File

* @Author: Caven * @Author: Caven
* @Date: 2020-01-06 15:04:15 * @Date: 2020-01-06 15:04:15
* @Last Modified by: Caven * @Last Modified by: Caven
* @Last Modified time: 2020-05-10 10:40:15
* @Last Modified time: 2020-05-19 22:05:56
*/ */
export { default as OverlayType } from './OverlayType' export { default as OverlayType } from './OverlayType'
export { default as Overlay } from './Overlay' export { default as Overlay } from './Overlay'
export { default as Billboard } from './base/Billboard' export { default as Billboard } from './base/Billboard'
export { default as Cricle } from './base/Cricle'
export { default as Circle } from './base/Circle'
export { default as DivIcon } from './base/DivIcon' export { default as DivIcon } from './base/DivIcon'
export { default as Label } from './base/Label' export { default as Label } from './base/Label'
export { default as Point } from './base/Point' export { default as Point } from './base/Point'

Loading…
Cancel
Save