@igo2/integration 20.2.0 → 21.0.0-next.10
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-integration.mjs +584 -735
- package/fesm2022/igo2-integration.mjs.map +1 -1
- package/package.json +12 -11
- package/{index.d.ts → types/igo2-integration.d.ts} +108 -132
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { OnInit, OnDestroy, ModuleWithProviders } from '@angular/core';
|
|
3
|
-
import { IgoMap, LayerListControlsOptions, Catalog, CatalogItem, CatalogItemState, StopsStore, StopsFeatureStore, RoutesFeatureStore, StepsFeatureStore, FeatureStore, FeatureWithDraw,
|
|
3
|
+
import { IgoMap, LayerListControlsOptions, LayerId, Catalog, CatalogItem, CatalogItemState, StopsStore, StopsFeatureStore, RoutesFeatureStore, StepsFeatureStore, FeatureStore, FeatureWithDraw, DrawControl, VectorLayer, AnyLayer, ExportOptions, ProjectionsLimitationsOptions, Feature, LayerViewerOptions, Layer, FeatureWithMeasure, SearchResult, Research, SpatialFilterType, SpatialFilterItemType, SpatialFilterQueryType, SpatialFilterThematic, MeasureLengthUnit, EnvironmentOptions as EnvironmentOptions$4, IOfflineOptions, WfsWorkspace, FeatureWorkspace, ConfigurableStylesOptions, FeatureMotion } from '@igo2/geo';
|
|
4
4
|
import * as _igo2_common_entity from '@igo2/common/entity';
|
|
5
5
|
import { EntityStore, EntityTableComponent, EntityTableTemplate, EntityRecord, EntityState } from '@igo2/common/entity';
|
|
6
6
|
import * as rxjs from 'rxjs';
|
|
@@ -43,7 +43,7 @@ declare class ContextManagerToolComponent {
|
|
|
43
43
|
private mediaService;
|
|
44
44
|
readonly toolToOpenOnContextChange: i0.InputSignal<string>;
|
|
45
45
|
get map(): IgoMap;
|
|
46
|
-
isDesktop: i0.Signal<boolean>;
|
|
46
|
+
isDesktop: i0.Signal<boolean | undefined>;
|
|
47
47
|
editContext(): void;
|
|
48
48
|
managePermissions(): void;
|
|
49
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<ContextManagerToolComponent, never>;
|
|
@@ -74,17 +74,17 @@ declare class IgoAppContextModule {
|
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
interface ListExport {
|
|
77
|
-
id:
|
|
77
|
+
id: LayerId;
|
|
78
78
|
rank: string;
|
|
79
79
|
layerTitle: string;
|
|
80
80
|
layerGroup: string;
|
|
81
81
|
catalog: string;
|
|
82
82
|
provider: string;
|
|
83
|
-
url: string;
|
|
84
|
-
layerName: string;
|
|
83
|
+
url: string | undefined;
|
|
84
|
+
layerName: string | undefined;
|
|
85
85
|
context: string;
|
|
86
86
|
metadataAbstract: string;
|
|
87
|
-
metadataUrl: string;
|
|
87
|
+
metadataUrl: string | undefined;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
/**
|
|
@@ -97,7 +97,7 @@ declare class CatalogLibraryToolComponent implements OnInit, OnDestroy {
|
|
|
97
97
|
private toolState;
|
|
98
98
|
private storageService;
|
|
99
99
|
private languageService;
|
|
100
|
-
private generatelist
|
|
100
|
+
private generatelist$$?;
|
|
101
101
|
/**
|
|
102
102
|
* Store that contains the catalogs
|
|
103
103
|
* @internal
|
|
@@ -115,7 +115,7 @@ declare class CatalogLibraryToolComponent implements OnInit, OnDestroy {
|
|
|
115
115
|
* List of predefined catalogs
|
|
116
116
|
*/
|
|
117
117
|
readonly predefinedCatalogs: i0.InputSignal<Catalog[]>;
|
|
118
|
-
set selectedCatalogId(id:
|
|
118
|
+
set selectedCatalogId(id: string | null);
|
|
119
119
|
get currentTool(): string;
|
|
120
120
|
get lastTool(): string;
|
|
121
121
|
/**
|
|
@@ -182,12 +182,12 @@ declare class CatalogBrowserToolComponent implements OnInit, OnDestroy {
|
|
|
182
182
|
private catalogState;
|
|
183
183
|
private mapState;
|
|
184
184
|
private authService;
|
|
185
|
-
catalog
|
|
185
|
+
catalog?: Catalog;
|
|
186
186
|
/**
|
|
187
187
|
* Store that contains the catalog items
|
|
188
188
|
* @internal
|
|
189
189
|
*/
|
|
190
|
-
store$: BehaviorSubject<EntityStore<CatalogItem, CatalogItemState
|
|
190
|
+
store$: BehaviorSubject<EntityStore<CatalogItem, CatalogItemState> | undefined>;
|
|
191
191
|
/**
|
|
192
192
|
* Subscription to the selected catalog
|
|
193
193
|
*/
|
|
@@ -247,7 +247,7 @@ declare class ContextState {
|
|
|
247
247
|
/**
|
|
248
248
|
* Observable of the active context
|
|
249
249
|
*/
|
|
250
|
-
context$: BehaviorSubject<DetailedContext>;
|
|
250
|
+
context$: BehaviorSubject<DetailedContext | undefined>;
|
|
251
251
|
constructor();
|
|
252
252
|
/**
|
|
253
253
|
* Set the active context
|
|
@@ -275,7 +275,7 @@ declare class DirectionsToolComponent implements OnInit {
|
|
|
275
275
|
private storageService;
|
|
276
276
|
contextState: ContextState;
|
|
277
277
|
private authService;
|
|
278
|
-
currentContextUri
|
|
278
|
+
currentContextUri?: string;
|
|
279
279
|
/**
|
|
280
280
|
* stops
|
|
281
281
|
* @internal
|
|
@@ -334,8 +334,8 @@ declare class DrawingToolComponent {
|
|
|
334
334
|
get layersID(): LayerId[];
|
|
335
335
|
get drawControls(): [LayerId, DrawControl][];
|
|
336
336
|
set drawControls(dc: [LayerId, DrawControl][]);
|
|
337
|
-
get activeDrawingLayer(): VectorLayer;
|
|
338
|
-
set activeDrawingLayer(value: VectorLayer);
|
|
337
|
+
get activeDrawingLayer(): VectorLayer | undefined;
|
|
338
|
+
set activeDrawingLayer(value: VectorLayer | undefined);
|
|
339
339
|
addLayersID(layerID: LayerId): void;
|
|
340
340
|
addDrawControls(dc: [LayerId, DrawControl][]): void;
|
|
341
341
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrawingToolComponent, never>;
|
|
@@ -360,20 +360,16 @@ declare class IgoAppDrawModule {
|
|
|
360
360
|
static ɵinj: i0.ɵɵInjectorDeclaration<IgoAppDrawModule>;
|
|
361
361
|
}
|
|
362
362
|
|
|
363
|
-
declare class WorkspaceButtonComponent implements OnInit
|
|
363
|
+
declare class WorkspaceButtonComponent implements OnInit {
|
|
364
364
|
private workspaceState;
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
set layer(value: AnyLayer);
|
|
369
|
-
get layer(): AnyLayer;
|
|
370
|
-
private _layer;
|
|
365
|
+
private destroyRef;
|
|
366
|
+
hasWorkspace: i0.WritableSignal<boolean>;
|
|
367
|
+
readonly layer: i0.InputSignal<AnyLayer | undefined>;
|
|
371
368
|
readonly color: i0.InputSignal<string>;
|
|
372
369
|
ngOnInit(): void;
|
|
373
|
-
ngOnDestroy(): void;
|
|
374
370
|
activateWorkspace(): void;
|
|
375
371
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceButtonComponent, never>;
|
|
376
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceButtonComponent, "igo-workspace-button", never, { "layer": { "alias": "layer"; "required": false; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
372
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkspaceButtonComponent, "igo-workspace-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
377
373
|
}
|
|
378
374
|
|
|
379
375
|
/**
|
|
@@ -399,7 +395,7 @@ declare enum ImportExportMode {
|
|
|
399
395
|
declare class ImportExportState {
|
|
400
396
|
readonly importExportType$: BehaviorSubject<ImportExportType>;
|
|
401
397
|
readonly selectedMode$: BehaviorSubject<ImportExportMode>;
|
|
402
|
-
readonly exportOptions$: BehaviorSubject<ExportOptions>;
|
|
398
|
+
readonly exportOptions$: BehaviorSubject<ExportOptions | undefined>;
|
|
403
399
|
setImportExportType(type: ImportExportType): void;
|
|
404
400
|
setMode(mode: ImportExportMode): void;
|
|
405
401
|
setsExportOptions(exportOptions: ExportOptions): void;
|
|
@@ -412,7 +408,7 @@ declare class ImportExportToolComponent implements OnInit {
|
|
|
412
408
|
importExportState: ImportExportState;
|
|
413
409
|
private workspaceState;
|
|
414
410
|
contextState: ContextState;
|
|
415
|
-
readonly projectionsLimitations: i0.InputSignal<ProjectionsLimitationsOptions>;
|
|
411
|
+
readonly projectionsLimitations: i0.InputSignal<ProjectionsLimitationsOptions | undefined>;
|
|
416
412
|
readonly selectFirstProj: i0.InputSignal<boolean>;
|
|
417
413
|
/**
|
|
418
414
|
* Map to measure on
|
|
@@ -427,7 +423,9 @@ declare class ImportExportToolComponent implements OnInit {
|
|
|
427
423
|
private selectMode;
|
|
428
424
|
modeChanged(mode: ImportExportMode): void;
|
|
429
425
|
exportOptionsChange(exportOptions: ExportOptions): void;
|
|
430
|
-
importExportTypeChange(event:
|
|
426
|
+
importExportTypeChange(event: {
|
|
427
|
+
value: ImportExportType;
|
|
428
|
+
}): void;
|
|
431
429
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImportExportToolComponent, never>;
|
|
432
430
|
static ɵcmp: i0.ɵɵComponentDeclaration<ImportExportToolComponent, "igo-import-export-tool", never, { "projectionsLimitations": { "alias": "projectionsLimitations"; "required": false; "isSignal": true; }; "selectFirstProj": { "alias": "selectFirstProj"; "required": false; "isSignal": true; }; "importExportType": { "alias": "importExportType"; "required": false; "isSignal": true; }; "importExportShowBothType": { "alias": "importExportShowBothType"; "required": false; "isSignal": true; }; }, { "importExportType": "importExportTypeChange"; }, never, never, true, never>;
|
|
433
431
|
}
|
|
@@ -450,8 +448,8 @@ declare class MapState {
|
|
|
450
448
|
private projectionService;
|
|
451
449
|
private storageService;
|
|
452
450
|
private configService;
|
|
453
|
-
get showAllLegendsValue(): boolean;
|
|
454
|
-
set showAllLegendsValue(value: boolean);
|
|
451
|
+
get showAllLegendsValue(): boolean | undefined;
|
|
452
|
+
set showAllLegendsValue(value: boolean | undefined);
|
|
455
453
|
private _legendToolShowAll;
|
|
456
454
|
/**
|
|
457
455
|
* Active map
|
|
@@ -467,8 +465,8 @@ declare class AdvancedMapToolComponent {
|
|
|
467
465
|
mapState: MapState;
|
|
468
466
|
get tracking$(): rxjs.BehaviorSubject<boolean>;
|
|
469
467
|
get followPosition$(): rxjs.BehaviorSubject<boolean>;
|
|
470
|
-
toggleTracking(value:
|
|
471
|
-
toggleFollow(value:
|
|
468
|
+
toggleTracking(value: boolean): void;
|
|
469
|
+
toggleFollow(value: boolean): void;
|
|
472
470
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdvancedMapToolComponent, never>;
|
|
473
471
|
static ɵcmp: i0.ɵɵComponentDeclaration<AdvancedMapToolComponent, "igo-advanced-map-tool", never, {}, {}, never, never, true, never>;
|
|
474
472
|
}
|
|
@@ -485,7 +483,7 @@ declare class MapProximityState {
|
|
|
485
483
|
proximitylocationType$: BehaviorSubject<string>;
|
|
486
484
|
proximityFeatureStore: FeatureStore<Feature>;
|
|
487
485
|
private subs$$;
|
|
488
|
-
currentPositionCoordinate$: BehaviorSubject<Coordinate>;
|
|
486
|
+
currentPositionCoordinate$: BehaviorSubject<Coordinate | undefined>;
|
|
489
487
|
get map(): IgoMap;
|
|
490
488
|
constructor();
|
|
491
489
|
subscribeProximityMonitor(): void;
|
|
@@ -495,7 +493,7 @@ declare class MapProximityState {
|
|
|
495
493
|
*/
|
|
496
494
|
private addFeatureToStore;
|
|
497
495
|
getQueryTitle(feature: Feature, layer: AnyLayer): string | undefined;
|
|
498
|
-
getLabelMatch(feature: Feature, labelMatch:
|
|
496
|
+
getLabelMatch(feature: Feature, labelMatch: string): string;
|
|
499
497
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapProximityState, never>;
|
|
500
498
|
static ɵprov: i0.ɵɵInjectableDeclaration<MapProximityState>;
|
|
501
499
|
}
|
|
@@ -507,7 +505,7 @@ declare class MapProximityToolComponent implements OnInit, OnDestroy {
|
|
|
507
505
|
private languageService;
|
|
508
506
|
private messageService;
|
|
509
507
|
private subs$$;
|
|
510
|
-
readonly table: i0.Signal<EntityTableComponent>;
|
|
508
|
+
readonly table: i0.Signal<EntityTableComponent | undefined>;
|
|
511
509
|
get maxDistance(): number;
|
|
512
510
|
set maxDistance(value: number);
|
|
513
511
|
get map(): IgoMap;
|
|
@@ -540,7 +538,7 @@ declare class MapToolComponent implements OnInit {
|
|
|
540
538
|
private configService;
|
|
541
539
|
mediaService: MediaService;
|
|
542
540
|
private cdr;
|
|
543
|
-
isDesktop
|
|
541
|
+
isDesktop?: boolean;
|
|
544
542
|
readonly toggleLegendOnVisibilityChange: i0.InputSignal<boolean>;
|
|
545
543
|
readonly expandLegendOfVisibleLayers: i0.InputSignal<boolean>;
|
|
546
544
|
readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
|
|
@@ -566,12 +564,12 @@ declare class MapToolComponent implements OnInit {
|
|
|
566
564
|
*/
|
|
567
565
|
declare class LayerListToolState {
|
|
568
566
|
readonly keyword$: BehaviorSubject<string>;
|
|
569
|
-
readonly sortAlpha$: BehaviorSubject<boolean>;
|
|
570
|
-
readonly onlyVisible$: BehaviorSubject<boolean>;
|
|
571
|
-
readonly selectedTab$: BehaviorSubject<number>;
|
|
567
|
+
readonly sortAlpha$: BehaviorSubject<boolean | undefined>;
|
|
568
|
+
readonly onlyVisible$: BehaviorSubject<boolean | undefined>;
|
|
569
|
+
readonly selectedTab$: BehaviorSubject<number | undefined>;
|
|
572
570
|
setKeyword(keyword: string): void;
|
|
573
|
-
setSortAlpha(sort: boolean): void;
|
|
574
|
-
setOnlyVisible(onlyVisible: boolean): void;
|
|
571
|
+
setSortAlpha(sort: boolean | undefined): void;
|
|
572
|
+
setOnlyVisible(onlyVisible: boolean | undefined): void;
|
|
575
573
|
setSelectedTab(tab: number): void;
|
|
576
574
|
getLayerListControls(): LayerListControlsOptions;
|
|
577
575
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerListToolState, never>;
|
|
@@ -593,21 +591,18 @@ declare class MapToolsComponent implements OnInit, OnDestroy {
|
|
|
593
591
|
isDesktop: boolean;
|
|
594
592
|
layers$: BehaviorSubject<AnyLayer[]>;
|
|
595
593
|
showAllLegendsValue$: BehaviorSubject<boolean>;
|
|
596
|
-
private resolution
|
|
597
|
-
private visibleOrInRangeLayers
|
|
598
|
-
delayedShowEmptyMapContent: boolean;
|
|
594
|
+
private resolution$$?;
|
|
595
|
+
private visibleOrInRangeLayers$$?;
|
|
599
596
|
readonly allowShowAllLegends: i0.InputSignal<boolean>;
|
|
600
597
|
readonly showAllLegendsValue: i0.InputSignal<boolean>;
|
|
601
598
|
readonly toggleLegendOnVisibilityChange: i0.InputSignal<boolean>;
|
|
602
599
|
readonly expandLegendOfVisibleLayers: i0.InputSignal<boolean>;
|
|
603
600
|
readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
|
|
604
|
-
readonly selectedTabAtOpening: i0.InputSignal<string>;
|
|
601
|
+
readonly selectedTabAtOpening: i0.InputSignal<string | undefined>;
|
|
605
602
|
readonly ogcButton: i0.InputSignal<boolean>;
|
|
606
603
|
readonly timeButton: i0.InputSignal<boolean>;
|
|
607
604
|
readonly layerAdditionAllowed: i0.InputSignal<boolean>;
|
|
608
|
-
|
|
609
|
-
set layerListControls(value: LayerListControlsOptions);
|
|
610
|
-
private _layerListControls;
|
|
605
|
+
readonly layerListControls: i0.InputSignalWithTransform<LayerListControlsOptions, LayerListControlsOptions>;
|
|
611
606
|
get map(): IgoMap;
|
|
612
607
|
readonly queryBadge: i0.InputSignal<boolean>;
|
|
613
608
|
get visibleOrInRangeLayers$(): Observable<AnyLayer[]>;
|
|
@@ -623,7 +618,7 @@ declare class MapToolsComponent implements OnInit, OnDestroy {
|
|
|
623
618
|
constructor();
|
|
624
619
|
ngOnInit(): void;
|
|
625
620
|
ngOnDestroy(): void;
|
|
626
|
-
onShowAllLegends(event:
|
|
621
|
+
onShowAllLegends(event: boolean): void;
|
|
627
622
|
private selectedTab;
|
|
628
623
|
tabChanged(tab: MatTabChangeEvent): void;
|
|
629
624
|
onLayerListChange(appliedFilters: LayerListControlsOptions): void;
|
|
@@ -634,13 +629,14 @@ declare class MapToolsComponent implements OnInit, OnDestroy {
|
|
|
634
629
|
searchEmit(): void;
|
|
635
630
|
catalogEmit(): void;
|
|
636
631
|
contextEmit(): void;
|
|
637
|
-
isTimeFilterButton(layer:
|
|
638
|
-
isOGCFilterButton(layer:
|
|
632
|
+
isTimeFilterButton(layer: AnyLayer): boolean;
|
|
633
|
+
isOGCFilterButton(layer: AnyLayer): boolean;
|
|
639
634
|
isExportButton(layer: Layer): boolean;
|
|
640
635
|
isStyleEditButton(layer: Layer): boolean;
|
|
641
636
|
private handleMedia;
|
|
637
|
+
private transformLayerListControls;
|
|
642
638
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapToolsComponent, never>;
|
|
643
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapToolsComponent, "igo-map-tools", never, { "allowShowAllLegends": { "alias": "allowShowAllLegends"; "required": false; "isSignal": true; }; "showAllLegendsValue": { "alias": "showAllLegendsValue"; "required": false; "isSignal": true; }; "toggleLegendOnVisibilityChange": { "alias": "toggleLegendOnVisibilityChange"; "required": false; "isSignal": true; }; "expandLegendOfVisibleLayers": { "alias": "expandLegendOfVisibleLayers"; "required": false; "isSignal": true; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; "isSignal": true; }; "selectedTabAtOpening": { "alias": "selectedTabAtOpening"; "required": false; "isSignal": true; }; "ogcButton": { "alias": "ogcButton"; "required": false; "isSignal": true; }; "timeButton": { "alias": "timeButton"; "required": false; "isSignal": true; }; "layerAdditionAllowed": { "alias": "layerAdditionAllowed"; "required": false; "isSignal": true; }; "layerListControls": { "alias": "layerListControls"; "required": false; }; "queryBadge": { "alias": "queryBadge"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
639
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapToolsComponent, "igo-map-tools", never, { "allowShowAllLegends": { "alias": "allowShowAllLegends"; "required": false; "isSignal": true; }; "showAllLegendsValue": { "alias": "showAllLegendsValue"; "required": false; "isSignal": true; }; "toggleLegendOnVisibilityChange": { "alias": "toggleLegendOnVisibilityChange"; "required": false; "isSignal": true; }; "expandLegendOfVisibleLayers": { "alias": "expandLegendOfVisibleLayers"; "required": false; "isSignal": true; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; "isSignal": true; }; "selectedTabAtOpening": { "alias": "selectedTabAtOpening"; "required": false; "isSignal": true; }; "ogcButton": { "alias": "ogcButton"; "required": false; "isSignal": true; }; "timeButton": { "alias": "timeButton"; "required": false; "isSignal": true; }; "layerAdditionAllowed": { "alias": "layerAdditionAllowed"; "required": false; "isSignal": true; }; "layerListControls": { "alias": "layerListControls"; "required": false; "isSignal": true; }; "queryBadge": { "alias": "queryBadge"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
644
640
|
}
|
|
645
641
|
|
|
646
642
|
declare class MapDetailsToolComponent implements OnInit {
|
|
@@ -690,8 +686,8 @@ declare class MapLegendToolComponent implements OnInit, OnDestroy {
|
|
|
690
686
|
layers$: BehaviorSubject<AnyLayer[]>;
|
|
691
687
|
showAllLegendsValue$: BehaviorSubject<boolean>;
|
|
692
688
|
change$: ReplaySubject<void>;
|
|
693
|
-
private resolution
|
|
694
|
-
private visibleOrInRangeLayers
|
|
689
|
+
private resolution$$?;
|
|
690
|
+
private visibleOrInRangeLayers$$?;
|
|
695
691
|
readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
|
|
696
692
|
readonly layerAdditionAllowed: i0.InputSignal<boolean>;
|
|
697
693
|
readonly allowShowAllLegends: i0.InputSignal<boolean>;
|
|
@@ -705,7 +701,7 @@ declare class MapLegendToolComponent implements OnInit, OnDestroy {
|
|
|
705
701
|
get catalogToolInToolbar(): boolean;
|
|
706
702
|
get contextToolInToolbar(): boolean;
|
|
707
703
|
ngOnInit(): void;
|
|
708
|
-
onShowAllLegends(event:
|
|
704
|
+
onShowAllLegends(event: boolean): void;
|
|
709
705
|
showAllLegend(): boolean;
|
|
710
706
|
ngOnDestroy(): void;
|
|
711
707
|
searchEmit(): void;
|
|
@@ -783,8 +779,8 @@ declare class IgoAppPrintModule {
|
|
|
783
779
|
declare class SearchBarBindingDirective implements OnInit, OnDestroy {
|
|
784
780
|
private component;
|
|
785
781
|
private searchState;
|
|
786
|
-
get searchTerm(): string;
|
|
787
|
-
get searchType(): string;
|
|
782
|
+
get searchTerm(): string | undefined;
|
|
783
|
+
get searchType(): string | undefined;
|
|
788
784
|
private searchTerm$$;
|
|
789
785
|
private searchType$$;
|
|
790
786
|
private searchDisabled$$;
|
|
@@ -803,7 +799,7 @@ declare class ToolState {
|
|
|
803
799
|
private toolService;
|
|
804
800
|
private importExportState;
|
|
805
801
|
get toolbox(): Toolbox;
|
|
806
|
-
openSidenav$: BehaviorSubject<boolean>;
|
|
802
|
+
openSidenav$: BehaviorSubject<boolean | undefined>;
|
|
807
803
|
toolToActivateFromOptions(toolToActivate: {
|
|
808
804
|
tool: string;
|
|
809
805
|
options: ExportOptions;
|
|
@@ -829,19 +825,17 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
|
|
|
829
825
|
* Determine the top panel default state
|
|
830
826
|
*/
|
|
831
827
|
readonly topPanelStateDefault: i0.InputSignal<string>;
|
|
832
|
-
private
|
|
828
|
+
private searchResultsOverlayAll$$;
|
|
833
829
|
saveSearchResultInLayer: boolean;
|
|
834
|
-
private
|
|
835
|
-
private
|
|
836
|
-
private
|
|
837
|
-
private
|
|
838
|
-
private focusedResult$;
|
|
830
|
+
private searchResultsOverlayFocused;
|
|
831
|
+
private searchResultsOverlaySelected;
|
|
832
|
+
private searchResultsOverlayAll;
|
|
833
|
+
private getRoute$$?;
|
|
839
834
|
isSelectedResultOutOfView$: BehaviorSubject<boolean>;
|
|
840
835
|
private isSelectedResultOutOfView$$;
|
|
841
|
-
private abstractFocusedResult;
|
|
842
|
-
private abstractSelectedResult;
|
|
843
836
|
private destroyRef;
|
|
844
837
|
debouncedEmpty: i0.WritableSignal<boolean>;
|
|
838
|
+
private searchResult;
|
|
845
839
|
/**
|
|
846
840
|
* Store holding the search results
|
|
847
841
|
* @internal
|
|
@@ -852,23 +846,19 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
|
|
|
852
846
|
* @internal
|
|
853
847
|
*/
|
|
854
848
|
get map(): IgoMap;
|
|
855
|
-
get featureTitle(): string;
|
|
856
|
-
feature: i0.WritableSignal<Feature<Record<string, any
|
|
849
|
+
get featureTitle(): string | undefined;
|
|
850
|
+
feature: i0.WritableSignal<Feature<Record<string, any>> | undefined>;
|
|
857
851
|
term: string;
|
|
858
852
|
private searchTerm$$;
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
private topPanelState$$;
|
|
862
|
-
set topPanelState(value: FlexibleState);
|
|
863
|
-
get topPanelState(): FlexibleState;
|
|
853
|
+
readonly topPanelState: i0.InputSignal<FlexibleState | undefined>;
|
|
854
|
+
topPanelStateValue: i0.WritableSignal<FlexibleState>;
|
|
864
855
|
get termSplitter(): string;
|
|
865
856
|
private format;
|
|
866
857
|
get stores(): FeatureStore<Feature>[];
|
|
867
858
|
constructor();
|
|
868
859
|
ngOnInit(): void;
|
|
860
|
+
handleShowAllResults(): void;
|
|
869
861
|
private monitorResultOutOfView;
|
|
870
|
-
private buildResultEmphasis;
|
|
871
|
-
private clearFeatureEmphasis;
|
|
872
862
|
ngOnDestroy(): void;
|
|
873
863
|
/**
|
|
874
864
|
* Try to add a feature to the map when it's being focused
|
|
@@ -888,7 +878,7 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
|
|
|
888
878
|
results: SearchResult[];
|
|
889
879
|
}): void;
|
|
890
880
|
computeElementRef(): any[];
|
|
891
|
-
adjustTopPanel(elemSource:
|
|
881
|
+
adjustTopPanel(elemSource: HTMLElement, elem: HTMLElement): void;
|
|
892
882
|
toggleTopPanel(event?: MouseEvent): void;
|
|
893
883
|
zoomToFeatureExtent(): void;
|
|
894
884
|
/**
|
|
@@ -896,11 +886,11 @@ declare class SearchResultsToolComponent implements OnInit, OnDestroy {
|
|
|
896
886
|
* @param result A search result that could be a feature
|
|
897
887
|
* @param motion A FeatureMotion to trigger when adding the searchresult to the map search overlay
|
|
898
888
|
*/
|
|
899
|
-
private
|
|
900
|
-
isScrolledIntoView(elemSource:
|
|
889
|
+
private addResultToOverlay;
|
|
890
|
+
isScrolledIntoView(elemSource: HTMLElement, elem: HTMLElement): boolean;
|
|
901
891
|
getRoute(): void;
|
|
902
892
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultsToolComponent, never>;
|
|
903
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultsToolComponent, "igo-search-results-tool", never, { "showIcons": { "alias": "showIcons"; "required": false; "isSignal": true; }; "topPanelStateDefault": { "alias": "topPanelStateDefault"; "required": false; "isSignal": true; }; "topPanelState": { "alias": "topPanelState"; "required": false; }; }, {}, never, never, true, never>;
|
|
893
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultsToolComponent, "igo-search-results-tool", never, { "showIcons": { "alias": "showIcons"; "required": false; "isSignal": true; }; "topPanelStateDefault": { "alias": "topPanelStateDefault"; "required": false; "isSignal": true; }; "topPanelState": { "alias": "topPanelState"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
904
894
|
}
|
|
905
895
|
|
|
906
896
|
/**
|
|
@@ -920,7 +910,7 @@ declare class OgcFilterToolComponent {
|
|
|
920
910
|
declare class ActiveOgcFilterToolComponent {
|
|
921
911
|
mapState: MapState;
|
|
922
912
|
get map(): IgoMap;
|
|
923
|
-
get layer(): Layer;
|
|
913
|
+
get layer(): Layer | undefined;
|
|
924
914
|
animate: string;
|
|
925
915
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveOgcFilterToolComponent, never>;
|
|
926
916
|
static ɵcmp: i0.ɵɵComponentDeclaration<ActiveOgcFilterToolComponent, "igo-active-ogc-filter-tool", never, {}, {}, never, never, true, never>;
|
|
@@ -934,7 +924,7 @@ declare class TimeFilterToolComponent {
|
|
|
934
924
|
declare class ActiveTimeFilterToolComponent {
|
|
935
925
|
mapState: MapState;
|
|
936
926
|
get map(): IgoMap;
|
|
937
|
-
get layer(): Layer;
|
|
927
|
+
get layer(): Layer | undefined;
|
|
938
928
|
animate: string;
|
|
939
929
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveTimeFilterToolComponent, never>;
|
|
940
930
|
static ɵcmp: i0.ɵɵComponentDeclaration<ActiveTimeFilterToolComponent, "igo-active-time-filter-tool", never, {}, {}, never, never, true, never>;
|
|
@@ -954,32 +944,32 @@ declare class SpatialFilterToolComponent implements OnInit, OnDestroy {
|
|
|
954
944
|
private workspaceState;
|
|
955
945
|
private cdRef;
|
|
956
946
|
get map(): IgoMap;
|
|
957
|
-
readonly type: i0.ModelSignal<SpatialFilterType>;
|
|
947
|
+
readonly type: i0.ModelSignal<SpatialFilterType | undefined>;
|
|
958
948
|
readonly itemType: i0.ModelSignal<SpatialFilterItemType>;
|
|
959
|
-
readonly freehandDrawIsActive: i0.ModelSignal<boolean>;
|
|
949
|
+
readonly freehandDrawIsActive: i0.ModelSignal<boolean | undefined>;
|
|
960
950
|
layers: AnyLayer[];
|
|
961
951
|
activeLayers: AnyLayer[];
|
|
962
|
-
queryType
|
|
963
|
-
thematics
|
|
952
|
+
queryType?: SpatialFilterQueryType;
|
|
953
|
+
thematics?: SpatialFilterThematic[];
|
|
964
954
|
buffer: number;
|
|
965
955
|
iterator: number;
|
|
966
|
-
selectedFeature$: BehaviorSubject<Feature<Record<string, any
|
|
956
|
+
selectedFeature$: BehaviorSubject<Feature<Record<string, any>> | undefined>;
|
|
967
957
|
store: EntityStore<Feature>;
|
|
968
958
|
spatialListStore: EntityStore<Feature>;
|
|
969
959
|
loading: boolean;
|
|
970
960
|
thematicLength: number;
|
|
971
961
|
measureUnit: MeasureLengthUnit;
|
|
972
|
-
defaultStyle
|
|
962
|
+
defaultStyle?: olstyle.Style | ((feature: unknown, resolution: unknown) => olstyle.Style);
|
|
973
963
|
zones: Feature[];
|
|
974
964
|
private unsubscribe$;
|
|
975
|
-
private activePredefinedLayerZones
|
|
976
|
-
private activeDrawLayerZones
|
|
965
|
+
private activePredefinedLayerZones?;
|
|
966
|
+
private activeDrawLayerZones?;
|
|
977
967
|
ngOnInit(): void;
|
|
978
968
|
ngOnDestroy(): void;
|
|
979
969
|
getOutputType(event: SpatialFilterType): void;
|
|
980
970
|
getOutputQueryType(event: SpatialFilterQueryType): void;
|
|
981
971
|
activateExportTool(): void;
|
|
982
|
-
activateWorkspace(record?:
|
|
972
|
+
activateWorkspace(record?: Record<string, unknown>): void;
|
|
983
973
|
private selectWorkspaceEntity;
|
|
984
974
|
private loadFilterList;
|
|
985
975
|
getOutputToggleSearch(): void;
|
|
@@ -1028,29 +1018,20 @@ declare class AboutToolComponent implements OnInit {
|
|
|
1028
1018
|
auth: AuthService<any>;
|
|
1029
1019
|
private http;
|
|
1030
1020
|
private cdRef;
|
|
1031
|
-
private languageService;
|
|
1032
1021
|
private userService;
|
|
1033
1022
|
private configOptions;
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
private
|
|
1039
|
-
discoverTitleInLocale$: Observable<string>;
|
|
1040
|
-
get discoverTitleInLocale(): string;
|
|
1041
|
-
set discoverTitleInLocale(value: string);
|
|
1042
|
-
readonly trainingGuideURLs: i0.ModelSignal<string[]>;
|
|
1043
|
-
effectiveVersion: string;
|
|
1044
|
-
private _html;
|
|
1045
|
-
private _headerHtml;
|
|
1046
|
-
private baseUrlGuide;
|
|
1023
|
+
readonly headerHtml: i0.InputSignalWithTransform<string, string | string[]>;
|
|
1024
|
+
readonly html: i0.InputSignalWithTransform<string, string | string[]>;
|
|
1025
|
+
readonly trainingGuideURLs: i0.ModelSignal<string[] | undefined>;
|
|
1026
|
+
effectiveVersion?: string;
|
|
1027
|
+
private baseUrlGuide?;
|
|
1047
1028
|
loading: boolean;
|
|
1048
1029
|
constructor();
|
|
1049
1030
|
ngOnInit(): void;
|
|
1050
|
-
openGuide(guide?:
|
|
1031
|
+
openGuide(guide?: string): void;
|
|
1051
1032
|
formatFileName(name: string): string;
|
|
1052
1033
|
static ɵfac: i0.ɵɵFactoryDeclaration<AboutToolComponent, never>;
|
|
1053
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AboutToolComponent, "igo-about-tool", never, { "headerHtml": { "alias": "headerHtml"; "required": false; }; "html": { "alias": "html"; "required": false;
|
|
1034
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AboutToolComponent, "igo-about-tool", never, { "headerHtml": { "alias": "headerHtml"; "required": false; "isSignal": true; }; "html": { "alias": "html"; "required": false; "isSignal": true; }; "trainingGuideURLs": { "alias": "trainingGuideURLs"; "required": false; "isSignal": true; }; }, { "trainingGuideURLs": "trainingGuideURLsChange"; }, never, never, true, never>;
|
|
1054
1035
|
}
|
|
1055
1036
|
|
|
1056
1037
|
/**
|
|
@@ -1078,16 +1059,16 @@ declare class DataIssueReporterToolComponent implements OnInit, OnDestroy {
|
|
|
1078
1059
|
/**
|
|
1079
1060
|
* Url to report the data issue. Use the Post protocol to send the form.
|
|
1080
1061
|
*/
|
|
1081
|
-
readonly url: i0.InputSignal<string>;
|
|
1062
|
+
readonly url: i0.InputSignal<string | undefined>;
|
|
1082
1063
|
/**
|
|
1083
1064
|
* Map to link to the form
|
|
1084
1065
|
* @internal
|
|
1085
1066
|
*/
|
|
1086
1067
|
get map(): IgoMap;
|
|
1087
|
-
form$: BehaviorSubject<Form>;
|
|
1088
|
-
data$: BehaviorSubject<Record<string,
|
|
1068
|
+
form$: BehaviorSubject<Form | undefined>;
|
|
1069
|
+
data$: BehaviorSubject<Record<string, unknown> | undefined>;
|
|
1089
1070
|
submitDisabled: boolean;
|
|
1090
|
-
private valueChanges
|
|
1071
|
+
private valueChanges$$?;
|
|
1091
1072
|
ngOnInit(): void;
|
|
1092
1073
|
ngOnDestroy(): void;
|
|
1093
1074
|
clearForm(): void;
|
|
@@ -1153,7 +1134,7 @@ declare class CatalogState {
|
|
|
1153
1134
|
* @param catalog Catalog
|
|
1154
1135
|
* @returns Store that contains the catalog items
|
|
1155
1136
|
*/
|
|
1156
|
-
getCatalogItemsStore(catalog: Catalog): EntityStore<CatalogItem
|
|
1137
|
+
getCatalogItemsStore(catalog: Catalog): EntityStore<CatalogItem> | undefined;
|
|
1157
1138
|
/**
|
|
1158
1139
|
* Bind a catalog items store to a catalog
|
|
1159
1140
|
* @param catalog Catalog
|
|
@@ -1201,7 +1182,7 @@ declare class DrawState {
|
|
|
1201
1182
|
stores: FeatureStore<FeatureWithDraw>[];
|
|
1202
1183
|
layersID: LayerId[];
|
|
1203
1184
|
drawControls: [LayerId, DrawControl][];
|
|
1204
|
-
activeDrawingLayer
|
|
1185
|
+
activeDrawingLayer?: VectorLayer;
|
|
1205
1186
|
constructor();
|
|
1206
1187
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrawState, never>;
|
|
1207
1188
|
static ɵprov: i0.ɵɵInjectableDeclaration<DrawState>;
|
|
@@ -1213,7 +1194,6 @@ interface EnvironmentOptions extends BaseEnvironmentOptions {
|
|
|
1213
1194
|
}
|
|
1214
1195
|
interface IntegrationEnvironmentOptions {
|
|
1215
1196
|
app?: AppOptions;
|
|
1216
|
-
hasFeatureEmphasisOnSelection?: boolean;
|
|
1217
1197
|
saveSearchResultInLayer?: boolean;
|
|
1218
1198
|
}
|
|
1219
1199
|
interface AppOptions {
|
|
@@ -1240,7 +1220,7 @@ declare class WfsActionsService implements OnDestroy {
|
|
|
1240
1220
|
maximize$: BehaviorSubject<boolean>;
|
|
1241
1221
|
selectOnlyCheckCondition$: BehaviorSubject<boolean>;
|
|
1242
1222
|
zoomAuto$: BehaviorSubject<boolean>;
|
|
1243
|
-
private storageChange
|
|
1223
|
+
private storageChange$$?;
|
|
1244
1224
|
get storageService(): StorageService;
|
|
1245
1225
|
get zoomAuto(): boolean;
|
|
1246
1226
|
constructor();
|
|
@@ -1259,7 +1239,7 @@ declare class FeatureActionsService implements OnDestroy {
|
|
|
1259
1239
|
private interactiveSelectionFormWidget;
|
|
1260
1240
|
maximize$: BehaviorSubject<boolean>;
|
|
1261
1241
|
zoomAuto$: BehaviorSubject<boolean>;
|
|
1262
|
-
private storageChange
|
|
1242
|
+
private storageChange$$?;
|
|
1263
1243
|
get storageService(): StorageService;
|
|
1264
1244
|
get zoomAuto(): boolean;
|
|
1265
1245
|
constructor();
|
|
@@ -1289,19 +1269,19 @@ declare class WorkspaceState implements OnDestroy {
|
|
|
1289
1269
|
/** Subscription to the active workspace */
|
|
1290
1270
|
private activeWorkspace$$;
|
|
1291
1271
|
/** Subscription to the active workspace widget */
|
|
1292
|
-
private activeWorkspaceWidget
|
|
1272
|
+
private activeWorkspaceWidget$$?;
|
|
1293
1273
|
/** Active widget observable. Only one may be active for all available workspaces */
|
|
1294
|
-
readonly activeWorkspaceWidget$: BehaviorSubject<Widget>;
|
|
1274
|
+
readonly activeWorkspaceWidget$: BehaviorSubject<Widget | undefined>;
|
|
1295
1275
|
/**
|
|
1296
1276
|
* Observable of the active workspace
|
|
1297
1277
|
*/
|
|
1298
|
-
workspace$: BehaviorSubject<Workspace<object
|
|
1278
|
+
workspace$: BehaviorSubject<Workspace<object> | undefined>;
|
|
1299
1279
|
/**
|
|
1300
1280
|
* Store that holds all the available workspaces
|
|
1301
1281
|
*/
|
|
1302
1282
|
get store(): WorkspaceStore;
|
|
1303
1283
|
private _store;
|
|
1304
|
-
get workspaceSelection(): EntityRecord<object, EntityState>[];
|
|
1284
|
+
get workspaceSelection(): EntityRecord<object, EntityState>[] | undefined;
|
|
1305
1285
|
get workspaceSelection$(): Observable<EntityRecord<object, EntityState>[]>;
|
|
1306
1286
|
constructor();
|
|
1307
1287
|
/**
|
|
@@ -1356,9 +1336,7 @@ declare class QueryState {
|
|
|
1356
1336
|
* Store that holds the query results
|
|
1357
1337
|
*/
|
|
1358
1338
|
store: EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>;
|
|
1359
|
-
queryOverlayStyle:
|
|
1360
|
-
queryOverlayStyleSelection: CommonVectorStyleOptions;
|
|
1361
|
-
queryOverlayStyleFocus: CommonVectorStyleOptions;
|
|
1339
|
+
queryOverlayStyle: ConfigurableStylesOptions;
|
|
1362
1340
|
constructor();
|
|
1363
1341
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueryState, never>;
|
|
1364
1342
|
static ɵprov: i0.ɵɵInjectableDeclaration<QueryState>;
|
|
@@ -1381,11 +1359,8 @@ declare class SearchState {
|
|
|
1381
1359
|
private configService;
|
|
1382
1360
|
private mapState;
|
|
1383
1361
|
searchLayerStores: FeatureStore<Feature>[];
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
searchOverlayStyleFocus: CommonVectorStyleOptions;
|
|
1387
|
-
focusedOrResolution$$: Subscription;
|
|
1388
|
-
selectedOrResolution$$: Subscription;
|
|
1362
|
+
focusedOrResolution$$?: Subscription;
|
|
1363
|
+
selectedOrResolution$$?: Subscription;
|
|
1389
1364
|
/**
|
|
1390
1365
|
* Default feature motion are:
|
|
1391
1366
|
* on selection = FeatureMotion.Default and
|
|
@@ -1393,16 +1368,17 @@ declare class SearchState {
|
|
|
1393
1368
|
*/
|
|
1394
1369
|
featureMotion: SearchFeatureMotion;
|
|
1395
1370
|
readonly searchTermSplitter$: BehaviorSubject<string>;
|
|
1396
|
-
readonly searchTerm$: BehaviorSubject<string>;
|
|
1397
|
-
readonly searchType$: BehaviorSubject<string>;
|
|
1371
|
+
readonly searchTerm$: BehaviorSubject<string | undefined>;
|
|
1372
|
+
readonly searchType$: BehaviorSubject<string | undefined>;
|
|
1398
1373
|
readonly searchDisabled$: BehaviorSubject<boolean>;
|
|
1399
1374
|
readonly searchResultsGeometryEnabled$: BehaviorSubject<boolean>;
|
|
1400
|
-
readonly searchSettingsChange$: BehaviorSubject<boolean>;
|
|
1401
|
-
readonly selectedResult$: BehaviorSubject<SearchResult<Record<string, any
|
|
1375
|
+
readonly searchSettingsChange$: BehaviorSubject<boolean | undefined>;
|
|
1376
|
+
readonly selectedResult$: BehaviorSubject<SearchResult<Record<string, any>> | undefined>;
|
|
1402
1377
|
/**
|
|
1403
1378
|
* Store that holds the search results
|
|
1404
1379
|
*/
|
|
1405
1380
|
readonly store: EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>;
|
|
1381
|
+
searchOverlayStyle: ConfigurableStylesOptions;
|
|
1406
1382
|
/**
|
|
1407
1383
|
* Search types currently enabled in the search source service
|
|
1408
1384
|
*/
|
|
@@ -1422,11 +1398,11 @@ declare class SearchState {
|
|
|
1422
1398
|
deactivateCustomFilterTermStrategy(): void;
|
|
1423
1399
|
enableSearch(): void;
|
|
1424
1400
|
disableSearch(): void;
|
|
1425
|
-
setSearchTerm(searchTerm: string): void;
|
|
1426
|
-
setSearchType(searchType: string): void;
|
|
1401
|
+
setSearchTerm(searchTerm: string | undefined): void;
|
|
1402
|
+
setSearchType(searchType: string | undefined): void;
|
|
1427
1403
|
setSearchSettingsChange(): void;
|
|
1428
1404
|
setSelectedResult(result: SearchResult): void;
|
|
1429
|
-
setSearchResultsGeometryStatus(value:
|
|
1405
|
+
setSearchResultsGeometryStatus(value: boolean): void;
|
|
1430
1406
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchState, never>;
|
|
1431
1407
|
static ɵprov: i0.ɵɵInjectableDeclaration<SearchState>;
|
|
1432
1408
|
}
|