@igo2/geo 21.0.0-next.21 → 21.0.0-next.23
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/fesm2022/igo2-geo.mjs +162 -107
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/package.json +4 -4
- package/types/igo2-geo.d.ts +19 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/geo",
|
|
3
|
-
"version": "21.0.0-next.
|
|
3
|
+
"version": "21.0.0-next.23",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"@angular/material": "^21.0.0",
|
|
45
45
|
"@angular/material-moment-adapter": "^21.0.0",
|
|
46
46
|
"@angular/platform-browser": "^21.0.0",
|
|
47
|
-
"@igo2/common": "^21.0.0-next.
|
|
48
|
-
"@igo2/core": "^21.0.0-next.
|
|
49
|
-
"@igo2/utils": "^21.0.0-next.
|
|
47
|
+
"@igo2/common": "^21.0.0-next.23",
|
|
48
|
+
"@igo2/core": "^21.0.0-next.23",
|
|
49
|
+
"@igo2/utils": "^21.0.0-next.23",
|
|
50
50
|
"@mat-datetimepicker/core": "^17.0.0",
|
|
51
51
|
"geostyler-legend": "^5.2.0",
|
|
52
52
|
"geostyler-openlayers-parser": "^5.7.0",
|
package/types/igo2-geo.d.ts
CHANGED
|
@@ -2094,7 +2094,7 @@ interface ILayerBase {
|
|
|
2094
2094
|
ol: BaseLayer;
|
|
2095
2095
|
id: LayerId | undefined;
|
|
2096
2096
|
isInResolutionsRange$: Observable<boolean>;
|
|
2097
|
-
visible$: Observable<boolean>;
|
|
2097
|
+
visible$: Observable<boolean | undefined>;
|
|
2098
2098
|
displayed$: Observable<boolean>;
|
|
2099
2099
|
addParent(parent?: ILayerGroup): void;
|
|
2100
2100
|
}
|
|
@@ -2143,7 +2143,7 @@ declare abstract class LayerBase<G extends ILayerGroup = ILayerGroup> implements
|
|
|
2143
2143
|
set visible(value: boolean);
|
|
2144
2144
|
get visible(): boolean;
|
|
2145
2145
|
private _visible$;
|
|
2146
|
-
readonly visible$: Observable<boolean>;
|
|
2146
|
+
readonly visible$: Observable<boolean | undefined>;
|
|
2147
2147
|
get parent(): G | undefined;
|
|
2148
2148
|
set parent(parent: G | undefined);
|
|
2149
2149
|
readonly parent$: BehaviorSubject<G | undefined>;
|
|
@@ -4520,12 +4520,12 @@ declare class FeatureStoreSearchIndexStrategy extends EntityStoreStrategy {
|
|
|
4520
4520
|
* Bind this strategy to a store and start watching for entities changes
|
|
4521
4521
|
* @param store Feature store
|
|
4522
4522
|
*/
|
|
4523
|
-
bindStore(store:
|
|
4523
|
+
bindStore(store: EntityStore): void;
|
|
4524
4524
|
/**
|
|
4525
4525
|
* Unbind this strategy from a store and stop watching for entities changes
|
|
4526
4526
|
* @param store Feature store
|
|
4527
4527
|
*/
|
|
4528
|
-
unbindStore(store:
|
|
4528
|
+
unbindStore(store: EntityStore): void;
|
|
4529
4529
|
/**
|
|
4530
4530
|
* Start watching all stores already bound to that strategy at once.
|
|
4531
4531
|
* @internal
|
|
@@ -4537,6 +4537,20 @@ declare class FeatureStoreSearchIndexStrategy extends EntityStoreStrategy {
|
|
|
4537
4537
|
*/
|
|
4538
4538
|
protected doDeactivate(): void;
|
|
4539
4539
|
private initStoreSearchIndex;
|
|
4540
|
+
private createEmptySearchDocument;
|
|
4541
|
+
private createSearchDocument;
|
|
4542
|
+
private toSearchableValue;
|
|
4543
|
+
private toFieldName;
|
|
4544
|
+
private buildSearchDocument;
|
|
4545
|
+
private collectIndexedFeatures;
|
|
4546
|
+
private resolveIndexFields;
|
|
4547
|
+
private resolveConfiguredIndexFields;
|
|
4548
|
+
private resolveInferredIndexFields;
|
|
4549
|
+
private shouldIndexField;
|
|
4550
|
+
private getDistinctValueRatio;
|
|
4551
|
+
private hasExclusiveFloatValues;
|
|
4552
|
+
private buildSearchDocuments;
|
|
4553
|
+
private rebuildSearchDocument;
|
|
4540
4554
|
/**
|
|
4541
4555
|
* Watch for a store's entities changes
|
|
4542
4556
|
* @param store Feature store
|
|
@@ -8085,7 +8099,7 @@ declare class WorkspaceSearchSource extends SearchSource implements TextSearch {
|
|
|
8085
8099
|
}
|
|
8086
8100
|
|
|
8087
8101
|
interface WorkspaceData {
|
|
8088
|
-
index:
|
|
8102
|
+
index: EntityKey;
|
|
8089
8103
|
feature: Feature;
|
|
8090
8104
|
layer: Layer;
|
|
8091
8105
|
field: string;
|
|
@@ -10666,7 +10680,6 @@ declare class DataSourceService {
|
|
|
10666
10680
|
private ogcFilterService;
|
|
10667
10681
|
private languageService;
|
|
10668
10682
|
private messageService;
|
|
10669
|
-
private xhrInterceptor;
|
|
10670
10683
|
createAsyncDataSource(options: AnyDataSourceOptions, detailedContextUri?: string): Observable<DataSource>;
|
|
10671
10684
|
private createOSMDataSource;
|
|
10672
10685
|
private createFeatureDataSource;
|