vis-core 0.30.0-beta.3 → 0.30.0-beta.31
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/getVisConfig.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +398 -301
- package/dist/index.module.js +26455 -27647
- package/dist/version.d.ts +1 -1
- package/dist/vis/all/json/index.d.ts +10 -0
- package/dist/vis/all/objects/Arc/index.d.ts +4 -4
- package/dist/vis/base/index.d.ts +5 -1
- package/dist/vis/city/index.d.ts +4 -7
- package/dist/vis/city/objects/building/index.d.ts +1 -3
- package/dist/vis/city/objects/road/index.d.ts +1 -3
- package/dist/vis/earth/index.d.ts +1 -1
- package/dist/vis/map/index.d.ts +30 -2
- package/package.json +4 -6
package/dist/getVisConfig.d.ts
CHANGED
|
@@ -10,11 +10,11 @@ export declare const getMapConfig: (adcode: number, base?: string, prevConfig?:
|
|
|
10
10
|
* 获取城市配置
|
|
11
11
|
* @param adcode 区域代码
|
|
12
12
|
*/
|
|
13
|
-
export declare const getCityConfig: (adcode: number) =>
|
|
13
|
+
export declare const getCityConfig: (adcode: number) => {
|
|
14
14
|
center: number[];
|
|
15
15
|
adcode: number;
|
|
16
16
|
jsonName: string;
|
|
17
|
-
}
|
|
17
|
+
};
|
|
18
18
|
/**
|
|
19
19
|
* 移除摄像机历史记录
|
|
20
20
|
* @param u 历史记录数组
|
package/dist/index.d.ts
CHANGED