zhihao-ui 1.3.15 → 1.3.16

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.
@@ -45,7 +45,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
45
45
  remove: (...rest: any[]) => any;
46
46
  renderTrack: (...rest: any[]) => any;
47
47
  setCenter: (...rest: any[]) => any;
48
- closeTrack: (...rest: any[]) => any;
48
+ closeTrack: () => any;
49
49
  playTrack: (...rest: any[]) => any;
50
50
  };
51
51
  port: {
@@ -72,9 +72,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
72
72
  reset: () => any;
73
73
  };
74
74
  utils: {
75
- getCalculateExtent: () => any;
76
- convertSixHundredThousandToLatLng: () => any;
77
- calculateCirclePoints: () => any;
75
+ getCalculateExtent: (...reset: any[]) => any;
76
+ convertSixHundredThousandToLatLng: (...reset: any[]) => any;
77
+ calculateCirclePoints: (center: [number, number], radiusInKilometers: number) => any;
78
78
  };
79
79
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
80
80
  zoom: number;
@@ -77,7 +77,7 @@ export declare const ZhMap: {
77
77
  remove: (...rest: any[]) => any;
78
78
  renderTrack: (...rest: any[]) => any;
79
79
  setCenter: (...rest: any[]) => any;
80
- closeTrack: (...rest: any[]) => any;
80
+ closeTrack: () => any;
81
81
  playTrack: (...rest: any[]) => any;
82
82
  };
83
83
  port: {
@@ -104,9 +104,9 @@ export declare const ZhMap: {
104
104
  reset: () => any;
105
105
  };
106
106
  utils: {
107
- getCalculateExtent: () => any;
108
- convertSixHundredThousandToLatLng: () => any;
109
- calculateCirclePoints: () => any;
107
+ getCalculateExtent: (...reset: any[]) => any;
108
+ convertSixHundredThousandToLatLng: (...reset: any[]) => any;
109
+ calculateCirclePoints: (center: [number, number], radiusInKilometers: number) => any;
110
110
  };
111
111
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
112
112
  center: import('ol/coordinate').Coordinate;
@@ -204,7 +204,7 @@ export declare const ZhMap: {
204
204
  remove: (...rest: any[]) => any;
205
205
  renderTrack: (...rest: any[]) => any;
206
206
  setCenter: (...rest: any[]) => any;
207
- closeTrack: (...rest: any[]) => any;
207
+ closeTrack: () => any;
208
208
  playTrack: (...rest: any[]) => any;
209
209
  };
210
210
  port: {
@@ -231,9 +231,9 @@ export declare const ZhMap: {
231
231
  reset: () => any;
232
232
  };
233
233
  utils: {
234
- getCalculateExtent: () => any;
235
- convertSixHundredThousandToLatLng: () => any;
236
- calculateCirclePoints: () => any;
234
+ getCalculateExtent: (...reset: any[]) => any;
235
+ convertSixHundredThousandToLatLng: (...reset: any[]) => any;
236
+ calculateCirclePoints: (center: [number, number], radiusInKilometers: number) => any;
237
237
  };
238
238
  }, {}, {}, {}, {
239
239
  center: import('ol/coordinate').Coordinate;
@@ -328,7 +328,7 @@ export declare const ZhMap: {
328
328
  remove: (...rest: any[]) => any;
329
329
  renderTrack: (...rest: any[]) => any;
330
330
  setCenter: (...rest: any[]) => any;
331
- closeTrack: (...rest: any[]) => any;
331
+ closeTrack: () => any;
332
332
  playTrack: (...rest: any[]) => any;
333
333
  };
334
334
  port: {
@@ -355,9 +355,9 @@ export declare const ZhMap: {
355
355
  reset: () => any;
356
356
  };
357
357
  utils: {
358
- getCalculateExtent: () => any;
359
- convertSixHundredThousandToLatLng: () => any;
360
- calculateCirclePoints: () => any;
358
+ getCalculateExtent: (...reset: any[]) => any;
359
+ convertSixHundredThousandToLatLng: (...reset: any[]) => any;
360
+ calculateCirclePoints: (center: [number, number], radiusInKilometers: number) => any;
361
361
  };
362
362
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
363
363
  center: import('ol/coordinate').Coordinate;
@@ -1,2 +1,4 @@
1
- export declare const disableDoubleClickZoom: () => void;
2
- export declare const enableDoubleClickZoom: () => void;
1
+ import { Map } from 'ol';
2
+
3
+ export declare const disableDoubleClickZoom: (mapInstance: Map) => void;
4
+ export declare const enableDoubleClickZoom: (mapInstance: Map) => void;