@geogirafe/lib-geoportal 1.2.0-dev.2657510436 → 1.2.0-dev.2657953927
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/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.2.0-dev.
|
|
1
|
+
{"version":"1.2.0-dev.2657953927", "build":"2657953927", "date":"07/07/2026"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import AbstractSearchClient from './abstractsearchclient.js';
|
|
1
2
|
import IGirafeContext from '../context/icontext.js';
|
|
2
3
|
import GirafeSingleton from '../../base/GirafeSingleton.js';
|
|
3
4
|
import Feature from 'ol/Feature.js';
|
|
@@ -8,14 +9,14 @@ export type SearchProviderConfig = {
|
|
|
8
9
|
[key: string]: unknown;
|
|
9
10
|
};
|
|
10
11
|
declare class SearchManager extends GirafeSingleton {
|
|
11
|
-
|
|
12
|
+
protected readonly clients: Map<string, AbstractSearchClient>;
|
|
12
13
|
private abortController;
|
|
13
14
|
private defaultSrid;
|
|
14
15
|
private defaultMaxExtent?;
|
|
15
16
|
readonly minSearchTermLength = 3;
|
|
16
17
|
constructor(context: IGirafeContext);
|
|
17
18
|
initializeSingleton(): void;
|
|
18
|
-
|
|
19
|
+
protected createClient(providerConfig: SearchProviderConfig): void;
|
|
19
20
|
abortSearch(): void;
|
|
20
21
|
/**
|
|
21
22
|
* Performs a search operation with all available clients based on the provided term and returns results
|