zhihao-ui 1.3.58-alpha.4 → 1.3.58-alpha.6
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/es/{BaseInfo-CD2tAAod.js → BaseInfo-DKBBAr5h.js} +1 -1
- package/dist/es/{BaseItem-DcezA7sa.js → BaseItem-Q3XdscQ-.js} +1 -1
- package/dist/es/{CascaderLoadMore-Bt031LmH.js → CascaderLoadMore-Dsb_tK-O.js} +64 -67
- package/dist/es/{DatePicker-CP0KSqBs.js → DatePicker-C1pTOs2W.js} +1 -1
- package/dist/es/{DetailHeader-DoaD0eKO.js → DetailHeader-Bbe3QzQc.js} +1 -1
- package/dist/es/{DetailSubTitle-oiPuqJg6.js → DetailSubTitle-D02cB8NQ.js} +1 -1
- package/dist/es/{DiyDataTable-Bwk_tQDp.js → DiyDataTable-Bc_wX-Ef.js} +1 -1
- package/dist/es/{EditInfoPair-BRkRrmJI.js → EditInfoPair-DUVVgScj.js} +1 -1
- package/dist/es/{FileWrapper-Bw-FhIY5.js → FileWrapper-BKWkQlPw.js} +1 -1
- package/dist/es/{Grid-Cndtkriq.js → Grid-Boo-wcAp.js} +1 -1
- package/dist/es/{InfoPair-CIuXeXV1.js → InfoPair-D4m5TSIA.js} +1 -1
- package/dist/es/Map-CAbB_F9P.js +2888 -0
- package/dist/es/{MoneyInput-DZuOujIc.js → MoneyInput-BCq23_x7.js} +1 -1
- package/dist/es/{Table-NT97DzT0.js → Table-C--wSMKv.js} +2 -2
- package/dist/es/index.js +15 -15
- package/dist/index.css +1 -1
- package/dist/types/components/Map/Map.vue.d.ts +5 -1
- package/dist/types/components/Map/function/event.d.ts +2 -1
- package/dist/types/components/Map/function/ship/style.d.ts +1 -1
- package/dist/types/components/Map/index.d.ts +15 -3
- package/dist/types/components/Map/meta/index.d.ts +2 -1
- package/dist/types/components/Map/utils/animation.d.ts +13 -0
- package/dist/types/components/Map/utils/shipOverlay.d.ts +1 -0
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.umd.cjs +38 -38
- package/package.json +2 -2
- package/dist/es/Map-BvfSse1V.js +0 -2565
|
@@ -20,7 +20,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
20
20
|
getView: () => any;
|
|
21
21
|
setCenter: (lon: number, lat: number) => any;
|
|
22
22
|
getSize: () => any;
|
|
23
|
-
getCenter: (
|
|
23
|
+
getCenter: () => any;
|
|
24
24
|
layer: {
|
|
25
25
|
setGreenTileVisible: (show: boolean) => any;
|
|
26
26
|
getGreenTileVisible: () => any;
|
|
@@ -76,6 +76,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
76
76
|
close: () => any;
|
|
77
77
|
reset: () => any;
|
|
78
78
|
};
|
|
79
|
+
pathLine: {
|
|
80
|
+
render: (...rest: any[]) => any;
|
|
81
|
+
blinking: (...rest: any[]) => any;
|
|
82
|
+
};
|
|
79
83
|
renderPolygon: {
|
|
80
84
|
createPolygon: (...rest: any[]) => any;
|
|
81
85
|
createCircle: (...rest: any[]) => any;
|
|
@@ -6,5 +6,6 @@ import { usePortManager } from './port';
|
|
|
6
6
|
import { useDrawLineManager } from './drawLine';
|
|
7
7
|
import { useDrawPolygonManager } from './drawPolygon';
|
|
8
8
|
import { useRenderPolygonManager } from './renderPolygon';
|
|
9
|
+
import { useLinePathManager } from './pathLine';
|
|
9
10
|
|
|
10
|
-
export declare const useEventManager: (mapManager: ReturnType<typeof useMapInitializer>, propsManager: PropsManager, trackManager: ReturnType<typeof useTrackManager>, shipManager: ReturnType<typeof useShipManager>, portManager: ReturnType<typeof usePortManager>, drawLineManager: ReturnType<typeof useDrawLineManager>, drawPolygonManager: ReturnType<typeof useDrawPolygonManager>, renderPolygonManager: ReturnType<typeof useRenderPolygonManager>) => void;
|
|
11
|
+
export declare const useEventManager: (mapManager: ReturnType<typeof useMapInitializer>, propsManager: PropsManager, trackManager: ReturnType<typeof useTrackManager>, shipManager: ReturnType<typeof useShipManager>, portManager: ReturnType<typeof usePortManager>, drawLineManager: ReturnType<typeof useDrawLineManager>, drawPolygonManager: ReturnType<typeof useDrawPolygonManager>, renderPolygonManager: ReturnType<typeof useRenderPolygonManager>, pathManager: ReturnType<typeof useLinePathManager>) => void;
|
|
@@ -15,7 +15,7 @@ export declare const getShipScale: (mapInstance: MapOl, shipData: ShipInfoVo, sh
|
|
|
15
15
|
*/
|
|
16
16
|
export declare const selectedStyleCache: Map<string, Style>;
|
|
17
17
|
export declare const selectedShipStyle: (mapInstance: MapOl, shipData: ShipInfoVo) => Style | undefined;
|
|
18
|
-
export declare const createLabelStyle: (mapInstance: MapOl, shipData: ShipInfoVo
|
|
18
|
+
export declare const createLabelStyle: (mapInstance: MapOl, shipData: ShipInfoVo) => void;
|
|
19
19
|
export declare const createLabelElement: (shipData: ShipInfoVo) => HTMLDivElement;
|
|
20
20
|
export declare const getRightIcons: (ship: ShipInfoVo) => string[];
|
|
21
21
|
export declare function getRandomLineDirection(): LineDirection;
|
|
@@ -52,7 +52,7 @@ export declare const ZhMap: {
|
|
|
52
52
|
getView: () => any;
|
|
53
53
|
setCenter: (lon: number, lat: number) => any;
|
|
54
54
|
getSize: () => any;
|
|
55
|
-
getCenter: (
|
|
55
|
+
getCenter: () => any;
|
|
56
56
|
layer: {
|
|
57
57
|
setGreenTileVisible: (show: boolean) => any;
|
|
58
58
|
getGreenTileVisible: () => any;
|
|
@@ -108,6 +108,10 @@ export declare const ZhMap: {
|
|
|
108
108
|
close: () => any;
|
|
109
109
|
reset: () => any;
|
|
110
110
|
};
|
|
111
|
+
pathLine: {
|
|
112
|
+
render: (...rest: any[]) => any;
|
|
113
|
+
blinking: (...rest: any[]) => any;
|
|
114
|
+
};
|
|
111
115
|
renderPolygon: {
|
|
112
116
|
createPolygon: (...rest: any[]) => any;
|
|
113
117
|
createCircle: (...rest: any[]) => any;
|
|
@@ -190,7 +194,7 @@ export declare const ZhMap: {
|
|
|
190
194
|
getView: () => any;
|
|
191
195
|
setCenter: (lon: number, lat: number) => any;
|
|
192
196
|
getSize: () => any;
|
|
193
|
-
getCenter: (
|
|
197
|
+
getCenter: () => any;
|
|
194
198
|
layer: {
|
|
195
199
|
setGreenTileVisible: (show: boolean) => any;
|
|
196
200
|
getGreenTileVisible: () => any;
|
|
@@ -246,6 +250,10 @@ export declare const ZhMap: {
|
|
|
246
250
|
close: () => any;
|
|
247
251
|
reset: () => any;
|
|
248
252
|
};
|
|
253
|
+
pathLine: {
|
|
254
|
+
render: (...rest: any[]) => any;
|
|
255
|
+
blinking: (...rest: any[]) => any;
|
|
256
|
+
};
|
|
249
257
|
renderPolygon: {
|
|
250
258
|
createPolygon: (...rest: any[]) => any;
|
|
251
259
|
createCircle: (...rest: any[]) => any;
|
|
@@ -325,7 +333,7 @@ export declare const ZhMap: {
|
|
|
325
333
|
getView: () => any;
|
|
326
334
|
setCenter: (lon: number, lat: number) => any;
|
|
327
335
|
getSize: () => any;
|
|
328
|
-
getCenter: (
|
|
336
|
+
getCenter: () => any;
|
|
329
337
|
layer: {
|
|
330
338
|
setGreenTileVisible: (show: boolean) => any;
|
|
331
339
|
getGreenTileVisible: () => any;
|
|
@@ -381,6 +389,10 @@ export declare const ZhMap: {
|
|
|
381
389
|
close: () => any;
|
|
382
390
|
reset: () => any;
|
|
383
391
|
};
|
|
392
|
+
pathLine: {
|
|
393
|
+
render: (...rest: any[]) => any;
|
|
394
|
+
blinking: (...rest: any[]) => any;
|
|
395
|
+
};
|
|
384
396
|
renderPolygon: {
|
|
385
397
|
createPolygon: (...rest: any[]) => any;
|
|
386
398
|
createCircle: (...rest: any[]) => any;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as VectorLayer } from 'ol/layer/Vector';
|
|
2
|
+
import { Overlay } from 'ol';
|
|
3
|
+
|
|
4
|
+
export declare class BlinkAnimation {
|
|
5
|
+
private animationId;
|
|
6
|
+
private interval;
|
|
7
|
+
private routeLayer;
|
|
8
|
+
private routeOverlay;
|
|
9
|
+
constructor(routeLayer: VectorLayer, overlays: Overlay[]);
|
|
10
|
+
start(): void;
|
|
11
|
+
stop(): void;
|
|
12
|
+
private toggleVisibility;
|
|
13
|
+
}
|