@gis_victory/gismap 2.0.53 → 2.0.55
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/gismap.css +1 -1
- package/dist/index.d.ts +11 -5
- package/dist/index.es.js +12 -12
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -294,8 +294,10 @@ reset: () => void;
|
|
|
294
294
|
} | undefined;
|
|
295
295
|
readonly queryLayerManager: {
|
|
296
296
|
bringToTop: () => void;
|
|
297
|
-
setFeatures: (features:
|
|
298
|
-
addFeatures: (features:
|
|
297
|
+
setFeatures: (features: any[], wktField?: string) => void;
|
|
298
|
+
addFeatures: (features: any[], wktField?: string) => void;
|
|
299
|
+
getFeatures: () => GeoJSON.Feature[];
|
|
300
|
+
getWktStrings: () => string[];
|
|
299
301
|
clear: () => void;
|
|
300
302
|
getPointLayerId: () => string;
|
|
301
303
|
getLineLayerId: () => string;
|
|
@@ -4261,8 +4263,8 @@ default: () => {};
|
|
|
4261
4263
|
}>> & Readonly<{}>, {
|
|
4262
4264
|
data: MapSearchItem[];
|
|
4263
4265
|
round: boolean;
|
|
4264
|
-
func: Function;
|
|
4265
4266
|
tianditu: TiandituQuery;
|
|
4267
|
+
func: Function;
|
|
4266
4268
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
4267
4269
|
|
|
4268
4270
|
/**
|
|
@@ -6215,6 +6217,8 @@ declare class MeasureManager {
|
|
|
6215
6217
|
private hideTooltip;
|
|
6216
6218
|
private removeTooltip;
|
|
6217
6219
|
private finishMeasure;
|
|
6220
|
+
private recordMeasureResult;
|
|
6221
|
+
private clearMeasureLayer;
|
|
6218
6222
|
/**
|
|
6219
6223
|
* 计算线段距离(使用 Haversine 公式,单位:米)
|
|
6220
6224
|
*/
|
|
@@ -6491,8 +6495,10 @@ export declare class QueryLayerManager extends BaseManager {
|
|
|
6491
6495
|
private setupAutoBringToTop;
|
|
6492
6496
|
private onOtherLayerAdded;
|
|
6493
6497
|
bringToTop(): void;
|
|
6494
|
-
setFeatures(features:
|
|
6495
|
-
addFeatures(features:
|
|
6498
|
+
setFeatures(features: any[], wktField?: string): void;
|
|
6499
|
+
addFeatures(features: any[], wktField?: string): void;
|
|
6500
|
+
getFeatures(): GeoJSON.Feature[];
|
|
6501
|
+
getWktStrings(): string[];
|
|
6496
6502
|
clear(): void;
|
|
6497
6503
|
getPointLayerId(): string;
|
|
6498
6504
|
getLineLayerId(): string;
|