@gis_victory/gismap 2.0.54 → 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 +9 -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
|
/**
|
|
@@ -6493,8 +6495,10 @@ export declare class QueryLayerManager extends BaseManager {
|
|
|
6493
6495
|
private setupAutoBringToTop;
|
|
6494
6496
|
private onOtherLayerAdded;
|
|
6495
6497
|
bringToTop(): void;
|
|
6496
|
-
setFeatures(features:
|
|
6497
|
-
addFeatures(features:
|
|
6498
|
+
setFeatures(features: any[], wktField?: string): void;
|
|
6499
|
+
addFeatures(features: any[], wktField?: string): void;
|
|
6500
|
+
getFeatures(): GeoJSON.Feature[];
|
|
6501
|
+
getWktStrings(): string[];
|
|
6498
6502
|
clear(): void;
|
|
6499
6503
|
getPointLayerId(): string;
|
|
6500
6504
|
getLineLayerId(): string;
|