vis-core 0.28.38 → 0.28.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/editor/command/SetValue.d.ts +2 -2
- package/dist/getVisConfig.d.ts +17 -15
- package/dist/index.d.ts +1 -1
- package/dist/index.js +15 -15
- package/dist/index.module.js +412 -361
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,9 +5,9 @@ export class SetValue extends Command {
|
|
|
5
5
|
attributeName: any;
|
|
6
6
|
oldValue: any;
|
|
7
7
|
newValue: any;
|
|
8
|
-
execute(): void
|
|
8
|
+
execute(): Promise<void>;
|
|
9
9
|
fixObj(): void;
|
|
10
|
-
undo(): void
|
|
10
|
+
undo(): Promise<void>;
|
|
11
11
|
update(cmd: any): void;
|
|
12
12
|
fromJSON(json: any): void;
|
|
13
13
|
}
|
package/dist/getVisConfig.d.ts
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}>;
|
|
15
|
-
export declare const getCityConfig: (adcode: number, base?: any) => Promise<{
|
|
1
|
+
/**
|
|
2
|
+
* 获取地图配置
|
|
3
|
+
* @param adcode 区域代码
|
|
4
|
+
* @param base 基础URL
|
|
5
|
+
* @param prevConfig 之前的配置
|
|
6
|
+
* @param imgArr 图像数组
|
|
7
|
+
*/
|
|
8
|
+
export declare const getMapConfig: (adcode: number, base?: string, prevConfig?: any, imgArr?: string[]) => Promise<any>;
|
|
9
|
+
/**
|
|
10
|
+
* 获取城市配置
|
|
11
|
+
* @param adcode 区域代码
|
|
12
|
+
*/
|
|
13
|
+
export declare const getCityConfig: (adcode: number) => Promise<{
|
|
16
14
|
center: number[];
|
|
17
15
|
adcode: number;
|
|
18
16
|
jsonName: string;
|
|
19
17
|
}>;
|
|
18
|
+
/**
|
|
19
|
+
* 移除摄像机历史记录
|
|
20
|
+
* @param u 历史记录数组
|
|
21
|
+
*/
|
|
20
22
|
export declare const removeCameraHistory: (u: any) => any;
|
package/dist/index.d.ts
CHANGED