zhihao-ui 1.2.34 → 1.2.36
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/{Map-CWXp1qnd.js → Map-DngWgfIX.js} +908 -857
- package/dist/es/index.js +2 -2
- package/dist/index.css +1 -1
- package/dist/types/components/Map/components/copyright.vue.d.ts +3 -1
- package/dist/types/components/Map/render/canvasRender/canvasRender.d.ts +1 -0
- package/dist/types/components/Map/render/canvasRender/renderShipStyle.d.ts +1 -1
- package/dist/types/components/Map/render/renderShip.d.ts +1 -0
- package/dist/umd/index.css +1 -1
- package/dist/umd/index.umd.cjs +23 -23
- package/package.json +1 -1
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import { COPY_RIGHT_TYPE } from '../types.ts';
|
|
1
|
+
import { BaseMapType, COPY_RIGHT_TYPE } from '../types.ts';
|
|
2
2
|
|
|
3
3
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
type?: number;
|
|
5
5
|
}>, {
|
|
6
6
|
type: COPY_RIGHT_TYPE;
|
|
7
|
+
mapTile: typeof BaseMapType;
|
|
7
8
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
8
9
|
type?: number;
|
|
9
10
|
}>, {
|
|
10
11
|
type: COPY_RIGHT_TYPE;
|
|
12
|
+
mapTile: typeof BaseMapType;
|
|
11
13
|
}>>> & Readonly<{}>, {
|
|
12
14
|
type: number;
|
|
13
15
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -8,3 +8,4 @@ export declare const rotateShapeModel: (model: number[][], angle: number) => num
|
|
|
8
8
|
export declare const drawText: (ctx: CanvasRenderingContext2D, options: DrawTextOptions) => void;
|
|
9
9
|
export declare const drawPolygon: (ctx: CanvasRenderingContext2D, options: DrawPolygonOptions) => void;
|
|
10
10
|
export declare const drawLabel: (ctx: CanvasRenderingContext2D, options: DrawLabelOptions, labels: DrawLabelFeature[]) => null;
|
|
11
|
+
export declare const clearAllInterval: () => void;
|
|
@@ -3,4 +3,4 @@ import { Ref } from 'vue';
|
|
|
3
3
|
import { Map as MapType } from 'ol';
|
|
4
4
|
|
|
5
5
|
export declare const renderShipStyleSetInstance: (instance: Ref<MapType>) => Ref<MapType, MapType>;
|
|
6
|
-
export declare const setShipStyle: (selected: boolean) => Style;
|
|
6
|
+
export declare const setShipStyle: (selected: boolean, hover?: boolean) => Style;
|
|
@@ -10,6 +10,7 @@ import { Source } from 'ol/source';
|
|
|
10
10
|
|
|
11
11
|
export declare const renderShipSetInstance: (instance: Ref<MapType>) => Ref<MapType, MapType>;
|
|
12
12
|
export declare const renderShips: (list: ShipInfoVo[]) => VectorLayer<VectorSource<any>, any> | WebGLPointsLayer<VectorSource<Feature<Geometry>>> | undefined;
|
|
13
|
+
export declare const onShipsMarkerHover: () => void;
|
|
13
14
|
export declare const deleteAllShipMarkers: () => void;
|
|
14
15
|
export declare const setVisibleFeatureById: (source: Source, id: string, visible: boolean) => void;
|
|
15
16
|
export declare const findShip: (id: string, shipData?: ShipInfoVo, select?: boolean) => any;
|