Ver código fonte

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

tags/1.6.1
Caven Chen 5 anos atrás
pai
commit
bbf5ee72de

+ 8
- 0
CHANGE.md Ver arquivo

@@ -1,5 +1,13 @@
# 更新

## 1.6.1

### 2020-5-19

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

## 1.6.0

### 2020-5-18

+ 1
- 1
package.json Ver arquivo

@@ -1,6 +1,6 @@
{
"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.",
"main": "index.js",
"repository": "https://github.com/Digital-Visual/dc-sdk.git",

+ 2
- 2
src/base/index.js Ver arquivo

@@ -2,7 +2,7 @@
* @Author: Caven
* @Date: 2020-04-22 09:44:30
* @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'
@@ -11,7 +11,7 @@ let DC = {
Author: 'Caven Chen',
GitHub: 'https://github.com/Digital-Visual',
Home: 'https://www.dvgis.cn',
Version: '1.6.0',
Version: '1.6.1',
Namespace: {},
Initialized: false
}

+ 3
- 3
src/core/Loader.js Ver arquivo

@@ -2,7 +2,7 @@
* @Author: Caven
* @Date: 2019-12-27 17:18:52
* @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'
@@ -19,7 +19,7 @@ import {

import {
Billboard,
Cricle,
Circle,
DivIcon,
Label,
Point,
@@ -52,7 +52,7 @@ const core = {
TopoJsonLayer,
VectorLayer,
Billboard,
Cricle,
Circle,
DivIcon,
Label,
Point,

+ 1
- 1
src/core/option/ViewerOption.js Ver arquivo

@@ -2,7 +2,7 @@
* @Author: Caven
* @Date: 2019-12-30 09:24:37
* @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

src/core/overlay/base/Cricle.js → src/core/overlay/base/Circle.js Ver arquivo

@@ -2,7 +2,7 @@
* @Author: Caven
* @Date: 2020-01-31 18:57:02
* @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'

+ 2
- 2
src/core/overlay/index.js Ver arquivo

@@ -2,12 +2,12 @@
* @Author: Caven
* @Date: 2020-01-06 15:04:15
* @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 Overlay } from './Overlay'
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 Label } from './base/Label'
export { default as Point } from './base/Point'

Carregando…
Cancelar
Salvar