@igo2/geo 20.0.1-next.1 → 20.1.0-next.2

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/index.d.ts CHANGED
@@ -1,19 +1,19 @@
1
1
  import * as i0 from '@angular/core';
2
- import { PipeTransform, AfterViewInit, OnInit, OnDestroy, EventEmitter, AfterContentInit, ElementRef, Provider, ModuleWithProviders, QueryList, TemplateRef, AfterContentChecked, WritableSignal, InjectionToken, EnvironmentProviders } from '@angular/core';
2
+ import { PipeTransform, AfterViewInit, OnInit, OnDestroy, AfterContentInit, Provider, EventEmitter, ModuleWithProviders, ElementRef, TemplateRef, AfterContentChecked, WritableSignal, InjectionToken, EnvironmentProviders } from '@angular/core';
3
3
  import { AuthInterceptor } from '@igo2/auth';
4
4
  import * as i2 from '@igo2/core/message';
5
5
  import { Message, MessageService } from '@igo2/core/message';
6
6
  import OlLayer from 'ol/layer/Layer';
7
7
  import { Source } from 'ol/source';
8
8
  import * as rxjs from 'rxjs';
9
- import { Observable, Subscription, BehaviorSubject, Subject, ReplaySubject } from 'rxjs';
9
+ import { Observable, Subscription, BehaviorSubject, Subject } from 'rxjs';
10
10
  import olSourceCluster from 'ol/source/Cluster';
11
11
  import olSource from 'ol/source/Source';
12
12
  import olSourceVector from 'ol/source/Vector';
13
13
  import { Units } from 'ol/control/ScaleLine';
14
14
  import OlGeometry, { Type } from 'ol/geom/Geometry';
15
15
  import { Preset, Tokenizer, Encoders, Document } from 'flexsearch';
16
- import { Watcher, SubjectStatus } from '@igo2/utils';
16
+ import { SubjectStatus, Watcher, TimeFrame, resolveDate } from '@igo2/utils';
17
17
  import * as olproj from 'ol/proj';
18
18
  import { ProjectionLike, Projection as Projection$1 } from 'ol/proj';
19
19
  import * as ol from 'ol';
@@ -46,6 +46,7 @@ import { HttpClient, HttpParameterCodec } from '@angular/common/http';
46
46
  import { Extent } from 'ol/extent';
47
47
  import olProjection from 'ol/proj/Projection';
48
48
  import { UntypedFormGroup, UntypedFormControl, FormControl, ControlValueAccessor, NgControl } from '@angular/forms';
49
+ import * as _igo2_common_entity from '@igo2/common/entity';
49
50
  import { EntityStore, EntityKey, EntityStoreOptions, EntityStoreStrategyOptions, EntityStoreStrategy, EntityTableTemplate, EntityTableComponent, EntityTableColumn, EntityState, EntityTableColumnRenderer, EntityRecord, EntityTableButton, EntityStoreFilterCustomFuncStrategy } from '@igo2/common/entity';
50
51
  import { Position, Geometry, GeoJsonGeometryTypes } from 'geojson';
51
52
  import { ConfigService } from '@igo2/core/config';
@@ -60,9 +61,11 @@ import olLayerVectorTile from 'ol/layer/VectorTile';
60
61
  import olSourceVectorTile from 'ol/source/VectorTile';
61
62
  import * as _igo2_geo from '@igo2/geo';
62
63
  import { FloatLabelType, MatFormFieldAppearance } from '@angular/material/form-field';
63
- import { MatAutocompleteTrigger, MatAutocomplete } from '@angular/material/autocomplete';
64
+ import { MatAutocompleteTrigger, MatAutocomplete, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
64
65
  import { MatSelect } from '@angular/material/select';
65
66
  import { MatSlider, MatSliderChange } from '@angular/material/slider';
67
+ import { DatepickerComponent } from '@igo2/common/datepicker';
68
+ import { TimepickerComponent } from '@igo2/common/timepicker';
66
69
  import { SelectionModel } from '@angular/cdk/collections';
67
70
  import { NestedTreeControl, FlatTreeControl } from '@angular/cdk/tree';
68
71
  import { MatTreeNestedDataSource, MatTreeFlattener, MatTreeFlatDataSource } from '@angular/material/tree';
@@ -291,6 +294,7 @@ interface DataSourceOptions {
291
294
  download?: DownloadOptions;
292
295
  edition?: EditionOptions;
293
296
  relations?: RelationOptions[];
297
+ fieldNameGeometry?: string;
294
298
  }
295
299
  interface SourceFieldsOptionsParams {
296
300
  name: any;
@@ -771,7 +775,8 @@ declare class OgcFilterWriter {
771
775
  verifyMultipleEnableds(selectors: any): any;
772
776
  formatGroupAndFilter(ogcFilters: OgcFiltersOptions, selectors: any): any[];
773
777
  formatProcessedOgcFilter(processedFilter: string, layersOrTypenames: string): string;
774
- parseFilterOptionDate(value: string, defaultValue?: string): string;
778
+ private parseFilterOptionDate;
779
+ private handleBeginEnd;
775
780
  }
776
781
 
777
782
  declare enum SpatialFilterQueryType {
@@ -782,7 +787,10 @@ declare enum SpatialFilterQueryType {
782
787
  CircProv = "CircProv",
783
788
  DirReg = "DirReg",
784
789
  MRC = "MRC",
785
- RegTour = "RegTour"
790
+ RegTour = "RegTour",
791
+ RSS = "RSS",
792
+ RLS = "RLS",
793
+ CLSC = "CLSC"
786
794
  }
787
795
  declare enum SpatialFilterType {
788
796
  Predefined = "Predefined",
@@ -1300,77 +1308,6 @@ declare class MapViewController extends MapController {
1300
1308
  private onMoveEnd;
1301
1309
  }
1302
1310
 
1303
- interface LayerWatcherChange {
1304
- event: LayerWatcherEvent;
1305
- layer: Layer;
1306
- }
1307
- type LayerWatcherEvent = Pick<ObjectEvent, 'key' | 'oldValue'> & {
1308
- value: unknown;
1309
- };
1310
- declare class LayerWatcher extends Watcher {
1311
- propertyChange$: BehaviorSubject<LayerWatcherChange>;
1312
- private loaded;
1313
- private loading;
1314
- private layers;
1315
- private subscriptionsByLayerId;
1316
- private subscriptions;
1317
- constructor();
1318
- watch(): void;
1319
- unwatch(): void;
1320
- setPropertyChange(change: LayerWatcherChange): void;
1321
- watchLayer(layer: AnyLayer): void;
1322
- private _watchLayer;
1323
- private createOlEventObservable;
1324
- unwatchLayer(layer: AnyLayer): void;
1325
- private _unwatchLayer;
1326
- }
1327
-
1328
- declare abstract class MapBase {
1329
- ol: Map$1;
1330
- forcedOffline$: BehaviorSubject<boolean>;
1331
- layersAddedByClick$: BehaviorSubject<AnyLayer[]>;
1332
- status$: Subject<SubjectStatus>;
1333
- propertyChange$: Subject<LayerWatcherChange>;
1334
- overlay: Overlay;
1335
- queryResultsOverlay: Overlay;
1336
- searchResultsOverlay: Overlay;
1337
- viewController: MapViewController;
1338
- geolocationController: MapGeolocationController;
1339
- swipeEnabled$: BehaviorSubject<boolean>;
1340
- mapCenter$: BehaviorSubject<boolean>;
1341
- selectedFeatures$: BehaviorSubject<Layer[]>;
1342
- bufferDataSource: FeatureDataSource;
1343
- layerWatcher: LayerWatcher;
1344
- readonly options: MapOptions;
1345
- layerController: LayerController;
1346
- projection: string;
1347
- viewProjection: Projection$1;
1348
- projectionCode: string;
1349
- abstract setTarget(id: string): void;
1350
- abstract updateView(options: MapViewOptions): void;
1351
- abstract setView(options: MapViewOptions): void;
1352
- abstract updateControls(value: MapControlsOptions): void;
1353
- abstract getCenter(projection?: string | Projection$1): [number, number];
1354
- abstract getExtent(projection?: string | Projection$1): MapExtent;
1355
- abstract getZoom(): number;
1356
- /** @deprecated find a way to remove this method. For now we discourage to use it until we find the way to remove it */
1357
- abstract getLayerByOlUId(olUId: string): AnyLayer;
1358
- }
1359
-
1360
- declare class LayerSelectionModel {
1361
- private selection;
1362
- private descendantSelection;
1363
- get selected(): AnyLayer[];
1364
- get hasSelection(): boolean;
1365
- get isSelectionEmpty(): boolean;
1366
- clearSelection(): void;
1367
- select(...layers: AnyLayer[]): void;
1368
- deselect(...layers: AnyLayer[]): void;
1369
- isSelected: (layer: AnyLayer) => boolean;
1370
- isDescendantSelection: (layer: AnyLayer) => boolean;
1371
- private getDescendants;
1372
- }
1373
-
1374
1311
  type AnyPropertyOptions = ZindexPropertyOptions | BasePropertyOptions;
1375
1312
  interface ZindexPropertyOptions extends BasePropertyOptions {
1376
1313
  initialOrder: AnyLayer[];
@@ -1379,14 +1316,14 @@ interface BasePropertyOptions {
1379
1316
  layers: Layer[];
1380
1317
  }
1381
1318
  interface LayersLink {
1382
- linkId: string;
1319
+ linkId: LayerId;
1383
1320
  /** Default value is true */
1384
1321
  showInMiniBaseMap?: boolean;
1385
1322
  links?: LayersLinkProperties[];
1386
1323
  }
1387
1324
  interface LayersLinkProperties {
1388
1325
  bidirectionnal?: boolean;
1389
- linkedIds: string[];
1326
+ linkedIds: LayerId[];
1390
1327
  syncedDelete: boolean;
1391
1328
  properties: LinkedProperties[];
1392
1329
  }
@@ -1421,8 +1358,9 @@ interface LayerOptions extends LayerOptionsBase {
1421
1358
  linkedLayers?: LayersLink;
1422
1359
  showButtonZoomToExtent?: boolean;
1423
1360
  }
1361
+ type LayerId = string | number;
1424
1362
  interface LayerOptionsBase {
1425
- id?: string | number;
1363
+ id?: LayerId;
1426
1364
  /**
1427
1365
  * An unique identifier calculated client side
1428
1366
  * The name prop provide a way to have a unique identifier between all layers
@@ -1436,14 +1374,14 @@ interface LayerOptionsBase {
1436
1374
  minResolution?: number;
1437
1375
  maxResolution?: number;
1438
1376
  showInLayerList?: boolean;
1439
- parentId?: string;
1377
+ parentId?: LayerId;
1440
1378
  }
1441
1379
  interface LayerSecurityOptions {
1442
1380
  profils?: string[];
1443
1381
  }
1444
1382
  interface GeoWorkspaceOptions {
1445
- srcId?: string;
1446
- workspaceId?: string;
1383
+ srcId?: LayerId;
1384
+ workspaceId?: LayerId;
1447
1385
  minResolution?: number;
1448
1386
  maxResolution?: number;
1449
1387
  enabled?: boolean;
@@ -1487,8 +1425,9 @@ declare abstract class LayerBase {
1487
1425
  * return false by default.
1488
1426
  */
1489
1427
  get isIgoInternalLayer(): boolean;
1490
- get id(): string;
1491
- get parentId(): string;
1428
+ get id(): LayerId;
1429
+ set id(value: LayerId);
1430
+ get parentId(): LayerId | undefined;
1492
1431
  get alias(): string;
1493
1432
  get title(): string;
1494
1433
  set title(title: string);
@@ -1780,6 +1719,108 @@ declare class LayerGroup extends LayerGroupBase {
1780
1719
  private _getDescendantsLevel;
1781
1720
  }
1782
1721
 
1722
+ declare class LayerService {
1723
+ private http;
1724
+ private styleService;
1725
+ private dataSourceService;
1726
+ private messageService;
1727
+ private geoNetworkService;
1728
+ private authInterceptor;
1729
+ unavailableLayers: AnyLayerItemOptions[];
1730
+ createLayers(layersOption: AnyLayerOptions[], contextUri?: string): Observable<(AnyLayer | undefined)[]>;
1731
+ createLayer(layerOptions: AnyLayerItemOptions): Layer;
1732
+ createAsyncLayer(options: AnyLayerItemOptions, detailedContextUri?: string): Observable<Layer | undefined>;
1733
+ createAsyncGroup(options: LayerGroupOptions, detailedContextUri?: string): Observable<LayerGroup>;
1734
+ private createGroup;
1735
+ private createImageLayer;
1736
+ private createTileLayer;
1737
+ private createVectorLayer;
1738
+ private handleLegacyStyles;
1739
+ private createVectorTileLayer;
1740
+ private applyMapboxStyle;
1741
+ private getStuff;
1742
+ private getAbsoluteUrl;
1743
+ createAsyncIdbLayers(contextUri?: string): Observable<Layer[]>;
1744
+ deleteUnavailableLayers(anyLayerOptions: AnyLayerItemOptions): void;
1745
+ sourceOptionsWithParams(sourceOptions: AnyDataSourceOptions): sourceOptions is AnyDataSourceOptionsWithParams;
1746
+ sourceOptionsWithLayer(sourceOptions: AnyDataSourceOptions): sourceOptions is ArcGISRestDataSourceOptions | WMTSDataSourceOptions;
1747
+ static ɵfac: i0.ɵɵFactoryDeclaration<LayerService, never>;
1748
+ static ɵprov: i0.ɵɵInjectableDeclaration<LayerService>;
1749
+ }
1750
+
1751
+ declare const LAYER = "Layer";
1752
+
1753
+ interface LayerWatcherChange {
1754
+ event: LayerWatcherEvent;
1755
+ layer: Layer;
1756
+ }
1757
+ type LayerWatcherEvent = Pick<ObjectEvent, 'key' | 'oldValue'> & {
1758
+ value: unknown;
1759
+ };
1760
+ declare class LayerWatcher extends Watcher {
1761
+ propertyChange$: BehaviorSubject<LayerWatcherChange>;
1762
+ private loaded;
1763
+ private loading;
1764
+ private layers;
1765
+ private subscriptionsByLayerId;
1766
+ private subscriptions;
1767
+ constructor();
1768
+ watch(): void;
1769
+ unwatch(): void;
1770
+ setPropertyChange(change: LayerWatcherChange): void;
1771
+ watchLayer(layer: AnyLayer): void;
1772
+ private _watchLayer;
1773
+ private createOlEventObservable;
1774
+ unwatchLayer(layer: AnyLayer): void;
1775
+ private _unwatchLayer;
1776
+ }
1777
+
1778
+ declare abstract class MapBase {
1779
+ ol: Map$1;
1780
+ forcedOffline$: BehaviorSubject<boolean>;
1781
+ layersAddedByClick$: BehaviorSubject<AnyLayer[]>;
1782
+ status$: Subject<SubjectStatus>;
1783
+ propertyChange$: Subject<LayerWatcherChange>;
1784
+ overlay: Overlay;
1785
+ queryResultsOverlay: Overlay;
1786
+ searchResultsOverlay: Overlay;
1787
+ viewController: MapViewController;
1788
+ geolocationController: MapGeolocationController;
1789
+ swipeEnabled$: BehaviorSubject<boolean>;
1790
+ mapCenter$: BehaviorSubject<boolean>;
1791
+ selectedFeatures$: BehaviorSubject<Layer[]>;
1792
+ bufferDataSource: FeatureDataSource;
1793
+ layerWatcher: LayerWatcher;
1794
+ readonly options: MapOptions;
1795
+ layerController: LayerController;
1796
+ projection: string;
1797
+ viewProjection: Projection$1;
1798
+ projectionCode: string;
1799
+ abstract setTarget(id: string): void;
1800
+ abstract updateView(options: MapViewOptions): void;
1801
+ abstract setView(options: MapViewOptions): void;
1802
+ abstract updateControls(value: MapControlsOptions): void;
1803
+ abstract getCenter(projection?: string | Projection$1): [number, number];
1804
+ abstract getExtent(projection?: string | Projection$1): MapExtent;
1805
+ abstract getZoom(): number;
1806
+ /** @deprecated find a way to remove this method. For now we discourage to use it until we find the way to remove it */
1807
+ abstract getLayerByOlUId(olUId: string): AnyLayer;
1808
+ }
1809
+
1810
+ declare class LayerSelectionModel {
1811
+ private selection;
1812
+ private descendantSelection;
1813
+ get selected(): AnyLayer[];
1814
+ get hasSelection(): boolean;
1815
+ get isSelectionEmpty(): boolean;
1816
+ clearSelection(): void;
1817
+ select(...layers: AnyLayer[]): void;
1818
+ deselect(...layers: AnyLayer[]): void;
1819
+ isSelected: (layer: AnyLayer) => boolean;
1820
+ isDescendantSelection: (layer: AnyLayer) => boolean;
1821
+ private getDescendants;
1822
+ }
1823
+
1783
1824
  /**
1784
1825
  * We got four kind of layers
1785
1826
  * TreeLayer: all layers to show in the layer manager
@@ -1825,8 +1866,9 @@ declare class LayerController extends LayerSelectionModel {
1825
1866
  lower(...layers: AnyLayer[]): void;
1826
1867
  /** Reset all except SystemLayer */
1827
1868
  reset(): void;
1828
- getById(id: string): AnyLayer;
1829
- getBySourceId(id: string): AnyLayer;
1869
+ getById(id: LayerId): AnyLayer;
1870
+ getByTitle(title: string): AnyLayer;
1871
+ getBySourceId(id: LayerId): AnyLayer;
1830
1872
  getPosition(layer: AnyLayer, type?: 'below' | 'above'): number[];
1831
1873
  getLayerRecipient(layer: AnyLayer): AnyLayer[];
1832
1874
  /**
@@ -2207,11 +2249,11 @@ declare class PointerPositionDirective implements OnInit, OnDestroy {
2207
2249
  /**
2208
2250
  * Delay before emitting an event
2209
2251
  */
2210
- pointerPositionDelay: number;
2252
+ readonly pointerPositionDelay: i0.InputSignal<number>;
2211
2253
  /**
2212
2254
  * Event emitted when the pointer move, delayed by pointerMoveDelay
2213
2255
  */
2214
- pointerPositionCoord: EventEmitter<[number, number]>;
2256
+ readonly pointerPositionCoord: i0.OutputEmitterRef<[number, number]>;
2215
2257
  /**
2216
2258
  * IGO map
2217
2259
  * @internal
@@ -2250,7 +2292,7 @@ declare class PointerPositionDirective implements OnInit, OnDestroy {
2250
2292
  */
2251
2293
  private onPointerEvent;
2252
2294
  static ɵfac: i0.ɵɵFactoryDeclaration<PointerPositionDirective, never>;
2253
- static ɵdir: i0.ɵɵDirectiveDeclaration<PointerPositionDirective, "[igoPointerPosition]", never, { "pointerPositionDelay": { "alias": "pointerPositionDelay"; "required": false; }; }, { "pointerPositionCoord": "pointerPositionCoord"; }, never, never, true, never>;
2295
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PointerPositionDirective, "[igoPointerPosition]", never, { "pointerPositionDelay": { "alias": "pointerPositionDelay"; "required": false; "isSignal": true; }; }, { "pointerPositionCoord": "pointerPositionCoord"; }, never, never, true, never>;
2254
2296
  }
2255
2297
 
2256
2298
  /**
@@ -2349,11 +2391,11 @@ declare class HoverFeatureDirective implements OnInit, OnDestroy {
2349
2391
  /**
2350
2392
  * The delay where the mouse must be motionless before trigger the reverse search
2351
2393
  */
2352
- igoHoverFeatureDelay: number;
2394
+ readonly igoHoverFeatureDelay: i0.InputSignal<number>;
2353
2395
  /**
2354
2396
  * If the user has enabled or not the directive
2355
2397
  */
2356
- igoHoverFeatureEnabled: boolean;
2398
+ readonly igoHoverFeatureEnabled: i0.InputSignal<boolean>;
2357
2399
  mouseout(): void;
2358
2400
  /**
2359
2401
  * IGO map
@@ -2430,7 +2472,7 @@ declare class HoverFeatureDirective implements OnInit, OnDestroy {
2430
2472
  */
2431
2473
  private clearLayer;
2432
2474
  static ɵfac: i0.ɵɵFactoryDeclaration<HoverFeatureDirective, never>;
2433
- static ɵdir: i0.ɵɵDirectiveDeclaration<HoverFeatureDirective, "[igoHoverFeature]", never, { "igoHoverFeatureDelay": { "alias": "igoHoverFeatureDelay"; "required": false; }; "igoHoverFeatureEnabled": { "alias": "igoHoverFeatureEnabled"; "required": false; }; }, {}, never, never, true, never>;
2475
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HoverFeatureDirective, "[igoHoverFeature]", never, { "igoHoverFeatureDelay": { "alias": "igoHoverFeatureDelay"; "required": false; "isSignal": true; }; "igoHoverFeatureEnabled": { "alias": "igoHoverFeatureEnabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2434
2476
  }
2435
2477
 
2436
2478
  /**
@@ -2484,7 +2526,7 @@ declare function getAllChildLayersByProperty(layers: AnyLayer[], layer: Layer, k
2484
2526
  declare function getRootParentByDeletion(layer: Layer, layers: AnyLayer[]): Layer;
2485
2527
  declare function getAllChildLayersByDeletion(layers: Layer[], layer: Layer, knownChildLayers: Layer[]): Layer[];
2486
2528
  declare function getLinkedLayersOptions(layer: Layer): _igo2_geo.LayersLink;
2487
- declare function findLayerByLinkId(layers: Layer[], id: string): Layer;
2529
+ declare function findLayerByLinkId(layers: Layer[], id: LayerId): Layer;
2488
2530
  declare function getLayersByDeletion(layers: Layer[], links: LayersLinkProperties[]): Layer[];
2489
2531
  declare function handleLayerPropertyChange(layers: AnyLayer[], change: LayerWatcherChange, viewController: MapViewController): void;
2490
2532
 
@@ -2665,17 +2707,41 @@ declare class SpatialFilterService {
2665
2707
  MRC: string;
2666
2708
  Mun: string;
2667
2709
  RegTour: string;
2710
+ RSS: string;
2711
+ RLS: string;
2712
+ CLSC: string;
2713
+ tours: string;
2668
2714
  bornes: string;
2669
2715
  hydro: string;
2670
2716
  routes: string;
2717
+ matricule: string;
2718
+ aggloMun: string;
2719
+ adresses: string;
2720
+ unites: string;
2671
2721
  };
2672
2722
  constructor();
2673
2723
  getKeyByValue(object: any, value: any): string;
2674
2724
  loadFilterList(type: SpatialFilterQueryType): Observable<Feature[]>;
2675
2725
  loadThematicsList(): Observable<SpatialFilterThematic[]>;
2676
- loadFilterItem(feature: any, itemType: SpatialFilterItemType, type?: SpatialFilterQueryType, thematic?: SpatialFilterThematic, buffer?: number): Observable<Feature<Record<string, any>>[]>;
2726
+ loadFilterItems(features: Feature[], itemType: SpatialFilterItemType, options: {
2727
+ type: SpatialFilterQueryType;
2728
+ thematics: SpatialFilterThematic[];
2729
+ buffer?: number;
2730
+ }): Observable<Feature<Record<string, any>>[]>;
2677
2731
  loadItemById(feature: Feature, type: SpatialFilterQueryType): Observable<Feature>;
2678
2732
  loadBufferGeometry(feature: Feature, filterType: SpatialFilterType, buffer?: number, type?: SpatialFilterQueryType): Observable<Feature>;
2733
+ private getHttpParams;
2734
+ private doGet;
2735
+ private doPost;
2736
+ private buildMetaForAddress;
2737
+ private buildMetaForThematic;
2738
+ private loadPredefinedFilterItems;
2739
+ private loadDrawFilterItems;
2740
+ loadBuffersGeometry(features: Feature[], options: {
2741
+ filterType: SpatialFilterType;
2742
+ buffer?: number;
2743
+ type?: SpatialFilterQueryType;
2744
+ }): Observable<Feature[]>;
2679
2745
  static ɵfac: i0.ɵɵFactoryDeclaration<SpatialFilterService, never>;
2680
2746
  static ɵprov: i0.ɵɵInjectableDeclaration<SpatialFilterService>;
2681
2747
  }
@@ -2684,30 +2750,30 @@ declare class MapBrowserComponent implements OnInit, AfterViewInit, OnDestroy {
2684
2750
  private activityService;
2685
2751
  private activityId;
2686
2752
  private status$$;
2687
- map: IgoMap;
2688
- get view(): MapViewOptions;
2689
- set view(value: MapViewOptions);
2690
- private _view;
2753
+ readonly map: i0.InputSignal<IgoMap>;
2754
+ readonly view: i0.ModelSignal<MapViewOptions>;
2691
2755
  get controls(): MapControlsOptions;
2692
2756
  set controls(value: MapControlsOptions);
2693
2757
  private _controls;
2694
2758
  id: string;
2759
+ constructor();
2695
2760
  ngOnInit(): void;
2696
2761
  ngAfterViewInit(): void;
2697
2762
  ngOnDestroy(): void;
2763
+ setView(view: MapViewOptions): void;
2698
2764
  private handleStatusChange;
2699
2765
  static ɵfac: i0.ɵɵFactoryDeclaration<MapBrowserComponent, never>;
2700
- static ɵcmp: i0.ɵɵComponentDeclaration<MapBrowserComponent, "igo-map-browser", never, { "map": { "alias": "map"; "required": false; }; "view": { "alias": "view"; "required": false; }; }, {}, never, ["*"], true, never>;
2766
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapBrowserComponent, "igo-map-browser", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "view": { "alias": "view"; "required": false; "isSignal": true; }; }, { "view": "viewChange"; }, never, ["*"], true, never>;
2701
2767
  }
2702
2768
 
2703
2769
  declare class ZoomButtonComponent {
2704
- map: IgoMap;
2705
- color: string;
2770
+ readonly map: i0.InputSignal<IgoMap>;
2771
+ readonly color: i0.InputSignal<string>;
2706
2772
  get zoom(): number;
2707
2773
  get minZoom(): number;
2708
2774
  get maxZoom(): number;
2709
2775
  static ɵfac: i0.ɵɵFactoryDeclaration<ZoomButtonComponent, never>;
2710
- static ɵcmp: i0.ɵɵComponentDeclaration<ZoomButtonComponent, "igo-zoom-button", never, { "map": { "alias": "map"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
2776
+ static ɵcmp: i0.ɵɵComponentDeclaration<ZoomButtonComponent, "igo-zoom-button", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2711
2777
  }
2712
2778
 
2713
2779
  declare class MenuButtonComponent {
@@ -2715,7 +2781,7 @@ declare class MenuButtonComponent {
2715
2781
  get sidenavOpened(): boolean;
2716
2782
  set sidenavOpened(value: boolean);
2717
2783
  private _sidenavOpenend;
2718
- openSidenav: EventEmitter<any>;
2784
+ readonly openSidenav: i0.OutputEmitterRef<void>;
2719
2785
  useThemeColor: boolean;
2720
2786
  menuButtonClass: any;
2721
2787
  constructor();
@@ -2744,11 +2810,11 @@ declare class GeolocateButtonComponent implements AfterContentInit, OnDestroy {
2744
2810
 
2745
2811
  declare class HomeExtentButtonComponent {
2746
2812
  configService: ConfigService<any>;
2747
- map: IgoMap;
2748
- color: string;
2749
- extentOverride?: MapExtent;
2750
- centerOverride?: [number, number];
2751
- zoomOverride?: number;
2813
+ readonly map: i0.InputSignal<IgoMap>;
2814
+ readonly color: i0.InputSignal<string>;
2815
+ readonly extentOverride: i0.InputSignal<MapExtent>;
2816
+ readonly centerOverride: i0.InputSignal<[number, number]>;
2817
+ readonly zoomOverride: i0.InputSignal<number>;
2752
2818
  private homeExtentButtonExtent;
2753
2819
  private homeExtentButtonCenter;
2754
2820
  private homeExtentButtonZoom;
@@ -2756,7 +2822,7 @@ declare class HomeExtentButtonComponent {
2756
2822
  computeHomeExtent(): void;
2757
2823
  onToggleClick(): void;
2758
2824
  static ɵfac: i0.ɵɵFactoryDeclaration<HomeExtentButtonComponent, never>;
2759
- static ɵcmp: i0.ɵɵComponentDeclaration<HomeExtentButtonComponent, "igo-home-extent-button", never, { "map": { "alias": "map"; "required": false; }; "color": { "alias": "color"; "required": false; }; "extentOverride": { "alias": "extentOverride"; "required": false; }; "centerOverride": { "alias": "centerOverride"; "required": false; }; "zoomOverride": { "alias": "zoomOverride"; "required": false; }; }, {}, never, never, true, never>;
2825
+ static ɵcmp: i0.ɵɵComponentDeclaration<HomeExtentButtonComponent, "igo-home-extent-button", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "extentOverride": { "alias": "extentOverride"; "required": false; "isSignal": true; }; "centerOverride": { "alias": "centerOverride"; "required": false; "isSignal": true; }; "zoomOverride": { "alias": "zoomOverride"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2760
2826
  }
2761
2827
 
2762
2828
  interface HomeExtentButtonOptions {
@@ -2767,19 +2833,19 @@ interface HomeExtentButtonOptions {
2767
2833
 
2768
2834
  declare class OfflineButtonComponent implements OnInit {
2769
2835
  btnStyle: string;
2770
- map: IgoMap;
2771
- color: string;
2772
- enabled: boolean;
2836
+ readonly map: i0.InputSignal<IgoMap>;
2837
+ readonly color: i0.InputSignal<string>;
2838
+ enabled: i0.ModelSignal<boolean>;
2773
2839
  ngOnInit(): void;
2774
2840
  onClick(): void;
2775
2841
  private handleButtonStyle;
2776
2842
  static ɵfac: i0.ɵɵFactoryDeclaration<OfflineButtonComponent, never>;
2777
- static ɵcmp: i0.ɵɵComponentDeclaration<OfflineButtonComponent, "igo-offline-button", never, { "map": { "alias": "map"; "required": false; }; "color": { "alias": "color"; "required": false; }; "enabled": { "alias": "enabled"; "required": false; }; }, {}, never, never, true, never>;
2843
+ static ɵcmp: i0.ɵɵComponentDeclaration<OfflineButtonComponent, "igo-offline-button", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "enabled": { "alias": "enabled"; "required": false; "isSignal": true; }; }, { "enabled": "enabledChange"; }, never, never, true, never>;
2778
2844
  }
2779
2845
 
2780
2846
  declare class WakeLockButtonComponent {
2781
2847
  private storageService;
2782
- color: string;
2848
+ readonly color: i0.InputSignal<string>;
2783
2849
  get enabled(): boolean;
2784
2850
  set enabled(value: boolean);
2785
2851
  private noSleep;
@@ -2799,44 +2865,13 @@ declare class WakeLockButtonComponent {
2799
2865
  private disableWakeLock;
2800
2866
  toggleWakeLock(): void;
2801
2867
  static ɵfac: i0.ɵɵFactoryDeclaration<WakeLockButtonComponent, never>;
2802
- static ɵcmp: i0.ɵɵComponentDeclaration<WakeLockButtonComponent, "igo-wake-lock-button", never, { "color": { "alias": "color"; "required": false; }; "enabled": { "alias": "enabled"; "required": false; }; }, {}, never, never, true, never>;
2868
+ static ɵcmp: i0.ɵɵComponentDeclaration<WakeLockButtonComponent, "igo-wake-lock-button", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "enabled": { "alias": "enabled"; "required": false; }; }, {}, never, never, true, never>;
2803
2869
  }
2804
2870
 
2805
- declare class LayerService {
2806
- private http;
2807
- private styleService;
2808
- private dataSourceService;
2809
- private messageService;
2810
- private geoNetworkService;
2811
- private authInterceptor;
2812
- unavailableLayers: AnyLayerItemOptions[];
2813
- createLayers(layersOption: AnyLayerOptions[], contextUri?: string): Observable<(AnyLayer | undefined)[]>;
2814
- createLayer(layerOptions: AnyLayerItemOptions): Layer;
2815
- createAsyncLayer(options: AnyLayerItemOptions, detailedContextUri?: string): Observable<Layer | undefined>;
2816
- createAsyncGroup(options: LayerGroupOptions, detailedContextUri?: string): Observable<LayerGroup>;
2817
- private createGroup;
2818
- private createImageLayer;
2819
- private createTileLayer;
2820
- private createVectorLayer;
2821
- private handleLegacyStyles;
2822
- private createVectorTileLayer;
2823
- private applyMapboxStyle;
2824
- private getStuff;
2825
- private getAbsoluteUrl;
2826
- createAsyncIdbLayers(contextUri?: string): Observable<Layer[]>;
2827
- deleteUnavailableLayers(anyLayerOptions: AnyLayerItemOptions): void;
2828
- sourceOptionsWithParams(sourceOptions: AnyDataSourceOptions): sourceOptions is AnyDataSourceOptionsWithParams;
2829
- sourceOptionsWithLayer(sourceOptions: AnyDataSourceOptions): sourceOptions is ArcGISRestDataSourceOptions | WMTSDataSourceOptions;
2830
- static ɵfac: i0.ɵɵFactoryDeclaration<LayerService, never>;
2831
- static ɵprov: i0.ɵɵInjectableDeclaration<LayerService>;
2832
- }
2833
-
2834
- declare const LAYER = "Layer";
2835
-
2836
2871
  declare class BaseLayersSwitcherComponent implements AfterViewInit, OnDestroy {
2837
2872
  private mediaService;
2838
- map: IgoMap;
2839
- useStaticIcon: boolean;
2873
+ readonly map: i0.InputSignal<IgoMap>;
2874
+ readonly useStaticIcon: i0.ModelSignal<boolean>;
2840
2875
  _baseLayers: Layer[];
2841
2876
  expand: boolean;
2842
2877
  showButton: boolean;
@@ -2848,28 +2883,25 @@ declare class BaseLayersSwitcherComponent implements AfterViewInit, OnDestroy {
2848
2883
  collapseOrExpand(): void;
2849
2884
  get baseLayers(): Layer[];
2850
2885
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseLayersSwitcherComponent, never>;
2851
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseLayersSwitcherComponent, "igo-baselayers-switcher", never, { "map": { "alias": "map"; "required": false; }; "useStaticIcon": { "alias": "useStaticIcon"; "required": false; }; }, {}, never, never, true, never>;
2886
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseLayersSwitcherComponent, "igo-baselayers-switcher", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "useStaticIcon": { "alias": "useStaticIcon"; "required": false; "isSignal": true; }; }, { "useStaticIcon": "useStaticIconChange"; }, never, never, true, never>;
2852
2887
  }
2853
2888
 
2854
2889
  declare class MiniBaseMapComponent implements AfterViewInit {
2855
2890
  private layerService;
2856
2891
  private appRef;
2857
- map: IgoMap;
2858
- disabled: boolean;
2859
- title: string;
2860
- get display(): boolean;
2861
- set display(value: boolean);
2862
- private _display;
2863
- get baseLayer(): Layer;
2864
- set baseLayer(value: Layer);
2865
- private _baseLayer;
2892
+ readonly map: i0.InputSignal<IgoMap>;
2893
+ readonly disabled: i0.InputSignal<boolean>;
2894
+ readonly title: i0.InputSignal<string>;
2895
+ readonly display: i0.InputSignal<boolean>;
2896
+ readonly baseLayer: i0.InputSignal<Layer>;
2866
2897
  basemap: IgoMap;
2898
+ constructor();
2867
2899
  ngAfterViewInit(): void;
2868
2900
  changeBaseLayer(baseLayer: Layer): void;
2869
2901
  private handleBaseLayerChanged;
2870
2902
  private handleLinkedBaseLayer;
2871
2903
  static ɵfac: i0.ɵɵFactoryDeclaration<MiniBaseMapComponent, never>;
2872
- static ɵcmp: i0.ɵɵComponentDeclaration<MiniBaseMapComponent, "igo-mini-basemap", never, { "map": { "alias": "map"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; "display": { "alias": "display"; "required": false; }; "baseLayer": { "alias": "baseLayer"; "required": false; }; }, {}, never, never, true, never>;
2904
+ static ɵcmp: i0.ɵɵComponentDeclaration<MiniBaseMapComponent, "igo-mini-basemap", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "display": { "alias": "display"; "required": false; "isSignal": true; }; "baseLayer": { "alias": "baseLayer"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2873
2905
  }
2874
2906
 
2875
2907
  declare class RotationButtonComponent implements AfterContentInit {
@@ -2879,12 +2911,12 @@ declare class RotationButtonComponent implements AfterContentInit {
2879
2911
  readonly currentStyle$: BehaviorSubject<{
2880
2912
  transform: string;
2881
2913
  }>;
2882
- map: IgoMap;
2883
- showIfNoRotation: boolean;
2884
- color: string;
2914
+ readonly map: i0.InputSignal<IgoMap>;
2915
+ readonly showIfNoRotation: i0.InputSignal<boolean>;
2916
+ readonly color: i0.InputSignal<string>;
2885
2917
  ngAfterContentInit(): void;
2886
2918
  static ɵfac: i0.ɵɵFactoryDeclaration<RotationButtonComponent, never>;
2887
- static ɵcmp: i0.ɵɵComponentDeclaration<RotationButtonComponent, "igo-rotation-button", never, { "map": { "alias": "map"; "required": false; }; "showIfNoRotation": { "alias": "showIfNoRotation"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
2919
+ static ɵcmp: i0.ɵɵComponentDeclaration<RotationButtonComponent, "igo-rotation-button", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "showIfNoRotation": { "alias": "showIfNoRotation"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2888
2920
  }
2889
2921
 
2890
2922
  /**
@@ -2894,7 +2926,7 @@ declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
2894
2926
  /**
2895
2927
  * Get an active map
2896
2928
  */
2897
- map: IgoMap;
2929
+ readonly map: i0.InputSignal<IgoMap>;
2898
2930
  /**
2899
2931
  * The list of layers for swipe
2900
2932
  */
@@ -2978,7 +3010,7 @@ declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
2978
3010
  */
2979
3011
  private letZoom;
2980
3012
  static ɵfac: i0.ɵɵFactoryDeclaration<SwipeControlComponent, never>;
2981
- static ɵcmp: i0.ɵɵComponentDeclaration<SwipeControlComponent, "igo-swipe-control", never, { "map": { "alias": "map"; "required": false; }; }, {}, never, never, true, never>;
3013
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwipeControlComponent, "igo-swipe-control", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2982
3014
  }
2983
3015
 
2984
3016
  /**
@@ -2988,7 +3020,7 @@ declare class MapCenterComponent implements AfterViewInit, OnDestroy {
2988
3020
  /**
2989
3021
  * Get an active map
2990
3022
  */
2991
- map: IgoMap;
3023
+ readonly map: i0.InputSignal<IgoMap>;
2992
3024
  /**
2993
3025
  * Listener of toggle from advanced-map-tool
2994
3026
  */
@@ -3006,28 +3038,26 @@ declare class MapCenterComponent implements AfterViewInit, OnDestroy {
3006
3038
  */
3007
3039
  private letZoom;
3008
3040
  static ɵfac: i0.ɵɵFactoryDeclaration<MapCenterComponent, never>;
3009
- static ɵcmp: i0.ɵɵComponentDeclaration<MapCenterComponent, "igo-map-center", never, { "map": { "alias": "map"; "required": false; }; }, {}, never, never, true, never>;
3041
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapCenterComponent, "igo-map-center", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3010
3042
  }
3011
3043
 
3012
3044
  declare class InfoSectionComponent {
3013
- infoContent: string;
3045
+ readonly infoContent: i0.InputSignal<string>;
3014
3046
  static ɵfac: i0.ɵɵFactoryDeclaration<InfoSectionComponent, never>;
3015
- static ɵcmp: i0.ɵɵComponentDeclaration<InfoSectionComponent, "igo-info-section", never, { "infoContent": { "alias": "infoContent"; "required": false; }; }, {}, never, never, true, never>;
3047
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoSectionComponent, "igo-info-section", never, { "infoContent": { "alias": "infoContent"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3016
3048
  }
3017
3049
 
3018
- declare class OgcFilterButtonComponent implements OnInit {
3019
- options: OgcFilterableDataSourceOptions;
3020
- get badge(): any;
3021
- get layer(): Layer;
3022
- set layer(value: Layer);
3023
- private _layer;
3024
- map: MapBase;
3025
- color: string;
3026
- header: boolean;
3050
+ declare class OgcFilterButtonComponent {
3051
+ readonly layer: i0.InputSignal<Layer>;
3052
+ readonly options: i0.Signal<OgcFilterableDataSourceOptions>;
3053
+ readonly map: i0.InputSignal<MapBase>;
3054
+ readonly color: i0.InputSignal<string>;
3055
+ readonly header: i0.InputSignal<boolean>;
3027
3056
  ogcFilterCollapse: boolean;
3028
- ngOnInit(): void;
3057
+ readonly badge: i0.Signal<string | number>;
3058
+ getBadge(): string | number;
3029
3059
  static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterButtonComponent, never>;
3030
- static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterButtonComponent, "igo-ogc-filter-button", never, { "layer": { "alias": "layer"; "required": false; }; "map": { "alias": "map"; "required": false; }; "color": { "alias": "color"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, never, true, never>;
3060
+ static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterButtonComponent, "igo-ogc-filter-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3031
3061
  }
3032
3062
 
3033
3063
  declare class OgcFilterFormComponent implements OnInit {
@@ -3047,14 +3077,14 @@ declare class OgcFilterFormComponent implements OnInit {
3047
3077
  currentFilterIsSpatial$: BehaviorSubject<boolean>;
3048
3078
  defaultStepMillisecond: number;
3049
3079
  inputClearable: string;
3050
- refreshFilters: () => void;
3051
- datasource: OgcFilterableDataSource;
3052
- map: MapBase;
3053
- currentFilter: any;
3080
+ readonly refreshFilters: i0.InputSignal<() => void>;
3081
+ readonly datasource: i0.InputSignal<OgcFilterableDataSource>;
3082
+ readonly map: i0.InputSignal<MapBase>;
3083
+ readonly currentFilter: i0.InputSignal<any>;
3054
3084
  set snrc(value: any);
3055
3085
  get snrc(): any;
3056
3086
  private _snrc;
3057
- floatLabel: FloatLabelType;
3087
+ readonly floatLabel: i0.InputSignal<FloatLabelType>;
3058
3088
  get activeFilters(): _igo2_geo.OgcInterfaceFilterOptions[];
3059
3089
  get allowedOperators(): {};
3060
3090
  constructor();
@@ -3070,6 +3100,7 @@ declare class OgcFilterFormComponent implements OnInit {
3070
3100
  deleteFilter(): void;
3071
3101
  changeLogical(logical: string): void;
3072
3102
  changeOperator(operator: string): void;
3103
+ clearSNRC(): void;
3073
3104
  changeField(field: string): void;
3074
3105
  changeCaseSensitive(matchCase: any): void;
3075
3106
  changeProperty(value: any, pos?: number, refreshFilter?: boolean): void;
@@ -3082,7 +3113,7 @@ declare class OgcFilterFormComponent implements OnInit {
3082
3113
  private currentFilterIsSpatial;
3083
3114
  isTemporalOperator(): boolean;
3084
3115
  static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterFormComponent, never>;
3085
- static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterFormComponent, "igo-ogc-filter-form", never, { "refreshFilters": { "alias": "refreshFilters"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "map": { "alias": "map"; "required": false; }; "currentFilter": { "alias": "currentFilter"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; }, {}, never, never, true, never>;
3116
+ static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterFormComponent, "igo-ogc-filter-form", never, { "refreshFilters": { "alias": "refreshFilters"; "required": false; "isSignal": true; }; "datasource": { "alias": "datasource"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "currentFilter": { "alias": "currentFilter"; "required": false; "isSignal": true; }; "floatLabel": { "alias": "floatLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3086
3117
  }
3087
3118
 
3088
3119
  declare class OgcFilterSelectionComponent implements OnInit {
@@ -3091,14 +3122,14 @@ declare class OgcFilterSelectionComponent implements OnInit {
3091
3122
  private domService;
3092
3123
  private configService;
3093
3124
  private cdRef;
3094
- sel: MatSelect;
3095
- matAutocomplete: MatAutocompleteTrigger;
3096
- refreshFilters: () => void;
3097
- datasource: OgcFilterableDataSource;
3098
- map: MapBase;
3099
- checkboxesIndex: number;
3100
- radioButtonsIndex: number;
3101
- baseIndex: number;
3125
+ readonly sel: i0.Signal<MatSelect>;
3126
+ readonly matAutocomplete: i0.Signal<MatAutocompleteTrigger>;
3127
+ readonly refreshFilters: i0.InputSignal<() => void>;
3128
+ readonly datasource: i0.InputSignal<OgcFilterableDataSource>;
3129
+ readonly map: i0.InputSignal<MapBase>;
3130
+ checkboxesIndex: i0.ModelSignal<number>;
3131
+ radioButtonsIndex: i0.ModelSignal<number>;
3132
+ baseIndex: i0.ModelSignal<number>;
3102
3133
  get currentFilter(): any;
3103
3134
  set currentFilter(value: any);
3104
3135
  private _currentFilter;
@@ -3170,7 +3201,7 @@ declare class OgcFilterSelectionComponent implements OnInit {
3170
3201
  changeProperty(value: any, pos?: number, refreshFilter?: boolean): void;
3171
3202
  detectProperty(pos?: number): string;
3172
3203
  static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterSelectionComponent, never>;
3173
- static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterSelectionComponent, "igo-ogc-filter-selection", never, { "refreshFilters": { "alias": "refreshFilters"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "map": { "alias": "map"; "required": false; }; "checkboxesIndex": { "alias": "checkboxesIndex"; "required": false; }; "radioButtonsIndex": { "alias": "radioButtonsIndex"; "required": false; }; "baseIndex": { "alias": "baseIndex"; "required": false; }; "currentFilter": { "alias": "currentFilter"; "required": false; }; }, {}, never, never, true, never>;
3204
+ static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterSelectionComponent, "igo-ogc-filter-selection", never, { "refreshFilters": { "alias": "refreshFilters"; "required": false; "isSignal": true; }; "datasource": { "alias": "datasource"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "checkboxesIndex": { "alias": "checkboxesIndex"; "required": false; "isSignal": true; }; "radioButtonsIndex": { "alias": "radioButtonsIndex"; "required": false; "isSignal": true; }; "baseIndex": { "alias": "baseIndex"; "required": false; "isSignal": true; }; "currentFilter": { "alias": "currentFilter"; "required": false; }; }, { "checkboxesIndex": "checkboxesIndexChange"; "radioButtonsIndex": "radioButtonsIndexChange"; "baseIndex": "baseIndexChange"; }, never, never, true, never>;
3174
3205
  }
3175
3206
 
3176
3207
  declare class OGCFilterTimeService {
@@ -3192,18 +3223,14 @@ declare class OGCFilterTimeService {
3192
3223
 
3193
3224
  declare class OgcFilterTimeSliderComponent implements OnInit {
3194
3225
  ogcFilterTimeService: OGCFilterTimeService;
3195
- currentFilter: any;
3196
- begin: any;
3197
- max: any;
3198
- datasource: any;
3199
- changeProperty: EventEmitter<{
3200
- value: any;
3201
- pos: number;
3202
- refreshFilter: boolean;
3203
- }>;
3204
- slider: MatSlider;
3226
+ readonly currentFilter: i0.InputSignal<any>;
3227
+ readonly begin: i0.InputSignal<any>;
3228
+ readonly max: i0.InputSignal<any>;
3229
+ readonly datasource: i0.InputSignal<any>;
3230
+ readonly changeProperty: i0.OutputEmitterRef<any>;
3231
+ readonly slider: i0.Signal<MatSlider>;
3205
3232
  interval: any;
3206
- sliderValue: number;
3233
+ sliderValue: i0.WritableSignal<number>;
3207
3234
  calculatedStep: number;
3208
3235
  readonly _defaultDisplayFormat: string;
3209
3236
  readonly _defaultSliderInterval: number;
@@ -3216,41 +3243,27 @@ declare class OgcFilterTimeSliderComponent implements OnInit {
3216
3243
  get stepMillisecond(): number;
3217
3244
  constructor();
3218
3245
  ngOnInit(): void;
3219
- sliderDisplayWith(value: any): string;
3246
+ sliderDisplayWith: (value: any) => string;
3220
3247
  playFilter(): void;
3221
3248
  stopFilter(): void;
3222
3249
  resetFilter(): void;
3223
3250
  handleSliderInput(matSliderChange: any): void;
3224
3251
  calculateStep(): void;
3225
3252
  static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterTimeSliderComponent, never>;
3226
- static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterTimeSliderComponent, "igo-ogc-filter-time-slider", never, { "currentFilter": { "alias": "currentFilter"; "required": false; }; "begin": { "alias": "begin"; "required": false; }; "max": { "alias": "max"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; }, { "changeProperty": "changeProperty"; }, never, never, true, never>;
3253
+ static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterTimeSliderComponent, "igo-ogc-filter-time-slider", never, { "currentFilter": { "alias": "currentFilter"; "required": false; "isSignal": true; }; "begin": { "alias": "begin"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "datasource": { "alias": "datasource"; "required": false; "isSignal": true; }; }, { "changeProperty": "changeProperty"; }, never, never, true, never>;
3227
3254
  }
3228
3255
 
3229
3256
  declare class OgcFilterTimeComponent implements OnInit {
3230
3257
  ogcFilterTimeService: OGCFilterTimeService;
3231
- datasource: OgcFilterableDataSource;
3232
- currentFilter: any;
3233
- changeProperty: EventEmitter<{
3234
- value: string;
3235
- pos: number;
3236
- refreshFilter: boolean;
3237
- }>;
3238
- beginHours: number[];
3239
- endHours: number[];
3240
- beginMinutes: number[];
3241
- endMinutes: number[];
3242
- beginHourFormControl: UntypedFormControl;
3243
- beginMinuteFormControl: UntypedFormControl;
3244
- endHourFormControl: UntypedFormControl;
3245
- endMinuteFormControl: UntypedFormControl;
3246
- _beginValue: Date;
3247
- _endValue: Date;
3258
+ readonly datasource: i0.InputSignal<OgcFilterableDataSource>;
3259
+ readonly currentFilter: i0.InputSignal<any>;
3260
+ readonly changeProperty: i0.OutputEmitterRef<any>;
3248
3261
  readonly _defaultMin: string;
3249
3262
  readonly _defaultMax: string;
3250
3263
  readonly _defaultDisplayFormat: string;
3251
3264
  readonly _defaultSliderModeEnabled: boolean;
3252
3265
  ogcFilterOperator: typeof OgcFilterOperator;
3253
- sliderMode: boolean;
3266
+ sliderMode: i0.WritableSignal<boolean>;
3254
3267
  readonly defaultStepMillisecond = 60000;
3255
3268
  options: OgcFilterableDataSourceOptions;
3256
3269
  onlyYearBegin: number;
@@ -3258,66 +3271,64 @@ declare class OgcFilterTimeComponent implements OnInit {
3258
3271
  calendarTypeYear: boolean;
3259
3272
  resetIcon: string;
3260
3273
  filterStateDisable: boolean;
3261
- endDatepickerTime: ElementRef;
3262
- beginDatepickerTime: ElementRef;
3263
- beginTime: HTMLInputElement;
3264
- endTime: HTMLInputElement;
3274
+ readonly beginDatepicker: i0.Signal<DatepickerComponent>;
3275
+ readonly endDatepicker: i0.Signal<DatepickerComponent>;
3276
+ readonly beginTime: i0.Signal<TimepickerComponent>;
3277
+ readonly endTime: i0.Signal<TimepickerComponent>;
3265
3278
  private filterOriginConfig;
3266
3279
  get step(): string;
3267
3280
  get stepMilliseconds(): number;
3268
- set beginValue(begin: Date);
3269
- get beginValue(): Date;
3270
- set endValue(end: Date);
3271
- get endValue(): Date;
3281
+ beginValue: Date | TimeFrame;
3282
+ endValue: Date | TimeFrame;
3272
3283
  get sliderInterval(): number;
3273
3284
  get maxDate(): string;
3274
3285
  get displayFormat(): string;
3275
3286
  filterBeginFunction: any;
3276
3287
  filterEndFunction: any;
3288
+ resolveDate: typeof resolveDate;
3277
3289
  ngOnInit(): void;
3278
- parseFilter(filter: any): Date;
3279
- changeTemporalProperty(value: string | Date, position?: any, refreshFilter?: boolean): void;
3280
- handleDate(value: any): Date;
3281
- calendarType(): "year" | "date" | "datetime";
3282
- isCalendarYearMode(): boolean;
3283
- yearOnlyInputChange(changeEvent: any, datePicker?: any, property?: string): void;
3284
- yearSelected(year: any, datePicker?: any, property?: string, refreshFilter?: boolean): void;
3285
- monthSelected(month: any, datePicker?: any, property?: string, refreshFilter?: boolean): void;
3286
- calendarView(): 'month' | 'year' | 'multi-year';
3287
- dateFilter(type: string, date: string): void;
3288
- getDateTime(date: any, pos: any): Date;
3289
- handleMinuteIncrement(): number;
3290
- handleHourIncrement(): number;
3291
- fullBeginHoursArray(checkEndValue?: any): void;
3292
- fullEndHoursArray(checkEndValue?: any): void;
3293
- fullBeginMinutesArray(checkEndValue?: any): void;
3294
- fullEndMinutesArray(checkEndValue?: any): void;
3295
- updateHoursMinutesArray(): void;
3296
- private updateValues;
3297
- restrictedToStep(): boolean;
3298
- handleMin(): any;
3299
- handleMax(): any;
3290
+ changeTemporalProperty(value: Date | TimeFrame, position: number, refreshFilter?: boolean): void;
3291
+ handleDate(value: string): Date;
3292
+ calendarType(): 'year' | 'month' | 'date' | 'datetime';
3293
+ yearSelected(year: Date | TimeFrame, property?: string, refreshFilter?: boolean): void;
3294
+ monthSelected(month: Date | TimeFrame, property?: 'begin' | 'end', refreshFilter?: boolean): void;
3295
+ calendarView(): "year" | "month" | "multi-year";
3300
3296
  changePropertyByPass(event: any): void;
3301
3297
  modeChange(event: any): void;
3302
- setFilterStateDisable(): void;
3303
- getDateFromStringWithoutTime(stringDate: string): Date;
3304
3298
  resetFilter(): void;
3305
3299
  toggleFilterState(): void;
3306
- private isValidDate;
3300
+ sameDate(): boolean;
3301
+ updateTime(event: {
3302
+ hour: number;
3303
+ minute: number;
3304
+ }, position: number): void;
3305
+ dateNotTimeFrame(value: Date | TimeFrame | undefined, fallbackDate: string): boolean;
3306
+ restrictedToStep(): boolean;
3307
+ private isCalendarYearMode;
3308
+ private initDateValues;
3309
+ private parseFilter;
3310
+ private dateFilter;
3311
+ private getDateTime;
3312
+ private updateValues;
3313
+ private handleMin;
3314
+ private handleMax;
3315
+ private setFilterStateDisable;
3316
+ private getDateFromStringWithoutTime;
3317
+ private parseDateToComparable;
3307
3318
  static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterTimeComponent, never>;
3308
- static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterTimeComponent, "igo-ogc-filter-time", never, { "datasource": { "alias": "datasource"; "required": false; }; "currentFilter": { "alias": "currentFilter"; "required": false; }; }, { "changeProperty": "changeProperty"; }, never, never, true, never>;
3319
+ static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterTimeComponent, "igo-ogc-filter-time", never, { "datasource": { "alias": "datasource"; "required": false; "isSignal": true; }; "currentFilter": { "alias": "currentFilter"; "required": false; "isSignal": true; }; }, { "changeProperty": "changeProperty"; }, never, never, true, never>;
3309
3320
  }
3310
3321
 
3311
3322
  declare class OgcFilterableFormComponent {
3312
- datasource: OgcFilterableDataSource;
3313
- map: MapBase;
3314
- refreshFilters: () => void;
3323
+ readonly datasource: i0.InputSignal<OgcFilterableDataSource>;
3324
+ readonly map: i0.InputSignal<MapBase>;
3325
+ readonly refreshFilters: i0.InputSignal<() => void>;
3315
3326
  get refreshFunc(): () => void;
3316
3327
  get advancedOgcFilters(): boolean;
3317
3328
  get currentFilter(): any;
3318
3329
  color: string;
3319
3330
  static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterableFormComponent, never>;
3320
- static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableFormComponent, "igo-ogc-filterable-form", never, { "datasource": { "alias": "datasource"; "required": false; }; "map": { "alias": "map"; "required": false; }; "refreshFilters": { "alias": "refreshFilters"; "required": false; }; }, {}, never, never, true, never>;
3331
+ static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableFormComponent, "igo-ogc-filterable-form", never, { "datasource": { "alias": "datasource"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "refreshFilters": { "alias": "refreshFilters"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3321
3332
  }
3322
3333
 
3323
3334
  declare class OgcFilterableItemComponent implements OnInit, OnDestroy {
@@ -3333,12 +3344,13 @@ declare class OgcFilterableItemComponent implements OnInit, OnDestroy {
3333
3344
  inResolutionRange$: BehaviorSubject<boolean>;
3334
3345
  private resolution$$;
3335
3346
  private ogcFilterWriter;
3336
- layer: Layer;
3337
- map: MapBase;
3338
- header: boolean;
3347
+ readonly layer: i0.InputSignal<Layer>;
3348
+ readonly map: i0.InputSignal<MapBase>;
3349
+ readonly header: i0.InputSignal<boolean>;
3339
3350
  get refreshFunc(): any;
3340
3351
  get datasource(): OgcFilterableDataSource;
3341
3352
  constructor();
3353
+ toggleLayerVisibility(): void;
3342
3354
  ngOnInit(): void;
3343
3355
  ngOnDestroy(): void;
3344
3356
  addFilterToSequence(): void;
@@ -3352,7 +3364,7 @@ declare class OgcFilterableItemComponent implements OnInit, OnDestroy {
3352
3364
  toggleLegendOnClick(): void;
3353
3365
  toggleFiltersCollapsed(): void;
3354
3366
  static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterableItemComponent, never>;
3355
- static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableItemComponent, "igo-ogc-filterable-item", never, { "layer": { "alias": "layer"; "required": false; }; "map": { "alias": "map"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, never, true, never>;
3367
+ static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableItemComponent, "igo-ogc-filterable-item", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3356
3368
  }
3357
3369
 
3358
3370
  declare class OgcFilterableListBindingDirective implements OnInit, OnDestroy {
@@ -3367,10 +3379,11 @@ declare class OgcFilterableListBindingDirective implements OnInit, OnDestroy {
3367
3379
  }
3368
3380
 
3369
3381
  declare class OgcFilterableListComponent {
3370
- layers: AnyLayer[];
3371
- map: MapBase;
3382
+ readonly layers: i0.ModelSignal<AnyLayer[]>;
3383
+ readonly map: i0.InputSignal<MapBase>;
3384
+ setLayers(layers: AnyLayer[]): void;
3372
3385
  static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterableListComponent, never>;
3373
- static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableListComponent, "igo-ogc-filterable-list", never, { "layers": { "alias": "layers"; "required": false; }; "map": { "alias": "map"; "required": false; }; }, {}, never, never, true, never>;
3386
+ static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableListComponent, "igo-ogc-filterable-list", never, { "layers": { "alias": "layers"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; }, { "layers": "layersChange"; }, never, never, true, never>;
3374
3387
  }
3375
3388
 
3376
3389
  declare enum GeometryType {
@@ -4344,18 +4357,13 @@ declare class FeatureFormComponent {
4344
4357
  /**
4345
4358
  * Form
4346
4359
  */
4347
- form: Form;
4348
- /**
4349
- * Feature to update
4350
- */
4351
- set feature(value: Feature | undefined);
4352
- get feature(): Feature | undefined;
4353
- readonly feature$: BehaviorSubject<Feature<Record<string, any>>>;
4360
+ readonly form: i0.InputSignal<Form>;
4361
+ readonly feature: i0.InputSignal<Feature<Record<string, any>>>;
4354
4362
  /**
4355
4363
  * Event emitted when the form is submitted
4356
4364
  */
4357
- submitForm: EventEmitter<Feature<Record<string, any>>>;
4358
- igoForm: FormComponent;
4365
+ readonly submitForm: i0.OutputEmitterRef<Feature<Record<string, any>>>;
4366
+ readonly igoForm: i0.Signal<FormComponent>;
4359
4367
  /**
4360
4368
  * Transform the form data to a feature and emit an event
4361
4369
  * @param event Form submit event
@@ -4370,7 +4378,7 @@ declare class FeatureFormComponent {
4370
4378
  */
4371
4379
  private formDataToFeature;
4372
4380
  static ɵfac: i0.ɵɵFactoryDeclaration<FeatureFormComponent, never>;
4373
- static ɵcmp: i0.ɵɵComponentDeclaration<FeatureFormComponent, "igo-feature-form", never, { "form": { "alias": "form"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; }, { "submitForm": "submitForm"; }, never, ["*", "[formButtons]"], true, never>;
4381
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeatureFormComponent, "igo-feature-form", never, { "form": { "alias": "form"; "required": false; "isSignal": true; }; "feature": { "alias": "feature"; "required": false; "isSignal": true; }; }, { "submitForm": "submitForm"; }, never, ["*", "[formButtons]"], true, never>;
4374
4382
  }
4375
4383
 
4376
4384
  interface SearchSourceOptions {
@@ -4534,17 +4542,13 @@ declare class FeatureDetailsComponent implements OnInit, OnDestroy {
4534
4542
  private state;
4535
4543
  private unsubscribe$;
4536
4544
  ready: boolean;
4537
- get source(): SearchSource;
4538
- set source(value: SearchSource);
4539
- map: IgoMap;
4540
- toolbox: Toolbox;
4541
- get feature(): Feature;
4542
- set feature(value: Feature);
4543
- private _feature;
4544
- private _source;
4545
- routeEvent: EventEmitter<boolean>;
4546
- selectFeature: EventEmitter<boolean>;
4547
- htmlDisplayEvent: EventEmitter<boolean>;
4545
+ readonly source: i0.InputSignal<SearchSource>;
4546
+ readonly map: i0.InputSignal<IgoMap>;
4547
+ readonly toolbox: i0.InputSignal<Toolbox>;
4548
+ readonly feature: i0.InputSignal<Feature<Record<string, any>>>;
4549
+ readonly routeEvent: i0.OutputEmitterRef<boolean>;
4550
+ readonly selectFeature: i0.OutputEmitterRef<boolean>;
4551
+ readonly htmlDisplayEvent: i0.OutputEmitterRef<boolean>;
4548
4552
  /**
4549
4553
  * @internal
4550
4554
  */
@@ -4572,15 +4576,15 @@ declare class FeatureDetailsComponent implements OnInit, OnDestroy {
4572
4576
  */
4573
4577
  copyTextToClipboard(value: string): void;
4574
4578
  static ɵfac: i0.ɵɵFactoryDeclaration<FeatureDetailsComponent, never>;
4575
- static ɵcmp: i0.ɵɵComponentDeclaration<FeatureDetailsComponent, "igo-feature-details", never, { "source": { "alias": "source"; "required": false; }; "map": { "alias": "map"; "required": false; }; "toolbox": { "alias": "toolbox"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; }, { "routeEvent": "routeEvent"; "selectFeature": "selectFeature"; "htmlDisplayEvent": "htmlDisplayEvent"; }, never, never, true, never>;
4579
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeatureDetailsComponent, "igo-feature-details", never, { "source": { "alias": "source"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "toolbox": { "alias": "toolbox"; "required": false; "isSignal": true; }; "feature": { "alias": "feature"; "required": false; "isSignal": true; }; }, { "routeEvent": "routeEvent"; "selectFeature": "selectFeature"; "htmlDisplayEvent": "htmlDisplayEvent"; }, never, never, true, never>;
4576
4580
  }
4577
4581
 
4578
4582
  declare class FeatureDetailsDirective implements OnInit {
4579
4583
  private el;
4580
4584
  private component;
4581
- get feature(): _igo2_geo.Feature<Record<string, any>>;
4585
+ get feature(): i0.InputSignal<_igo2_geo.Feature<Record<string, any>>>;
4582
4586
  feature$: BehaviorSubject<any>;
4583
- routingEvent: EventEmitter<void>;
4587
+ readonly routingEvent: i0.OutputEmitterRef<void>;
4584
4588
  setFeature(): void;
4585
4589
  constructor();
4586
4590
  ngOnInit(): void;
@@ -4637,19 +4641,13 @@ declare class DrawComponent implements OnInit, OnDestroy {
4637
4641
  */
4638
4642
  tableTemplate: EntityTableTemplate;
4639
4643
  geometryType: typeof GeometryType;
4640
- map: IgoMap;
4641
- get stores(): FeatureStore<FeatureWithDraw>[];
4642
- set stores(value: FeatureStore<FeatureWithDraw>[]);
4643
- private _stores;
4644
- get drawControls(): [string, DrawControl][];
4645
- set drawControls(value: [string, DrawControl][]);
4646
- private _drawControls;
4647
- get activeDrawingLayer(): VectorLayer;
4648
- set activeDrawingLayer(value: VectorLayer);
4649
- private _activeDrawingLayer;
4650
- activeLayerChange: EventEmitter<VectorLayer>;
4651
- drawControlsEvent: EventEmitter<[string, DrawControl][]>;
4652
- layersIDEvent: EventEmitter<string>;
4644
+ readonly map: i0.InputSignal<IgoMap>;
4645
+ readonly stores: i0.ModelSignal<FeatureStore<FeatureWithDraw>[]>;
4646
+ readonly drawControls: i0.ModelSignal<[LayerId, DrawControl][]>;
4647
+ readonly activeDrawingLayer: i0.ModelSignal<VectorLayer>;
4648
+ readonly activeLayerChange: i0.OutputEmitterRef<VectorLayer>;
4649
+ readonly drawControlsEvent: i0.OutputEmitterRef<[LayerId, DrawControl][]>;
4650
+ readonly layersIDEvent: i0.OutputEmitterRef<LayerId>;
4653
4651
  fillColor: string;
4654
4652
  strokeColor: string;
4655
4653
  strokeWidth: number;
@@ -4687,7 +4685,7 @@ declare class DrawComponent implements OnInit, OnDestroy {
4687
4685
  private numberOfDrawings;
4688
4686
  isCreatingNewLayer: boolean;
4689
4687
  private currGeometryType;
4690
- select: any;
4688
+ readonly select: i0.Signal<MatSelect>;
4691
4689
  constructor();
4692
4690
  ngOnInit(): void;
4693
4691
  /**
@@ -4845,7 +4843,7 @@ declare class DrawComponent implements OnInit, OnDestroy {
4845
4843
  private elementStyle;
4846
4844
  private getRadius;
4847
4845
  static ɵfac: i0.ɵɵFactoryDeclaration<DrawComponent, never>;
4848
- static ɵcmp: i0.ɵɵComponentDeclaration<DrawComponent, "igo-draw", never, { "map": { "alias": "map"; "required": false; }; "stores": { "alias": "stores"; "required": false; }; "drawControls": { "alias": "drawControls"; "required": false; }; "activeDrawingLayer": { "alias": "activeDrawingLayer"; "required": false; }; }, { "activeLayerChange": "activeLayerChange"; "drawControlsEvent": "drawControlsEvent"; "layersIDEvent": "layersIDEvent"; "fillColor": "fillColor"; "strokeColor": "strokeColor"; "strokeWidth": "strokeWidth"; "fontSize": "fontSize"; "fontStyle": "fontStyle"; }, never, never, true, never>;
4846
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrawComponent, "igo-draw", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "stores": { "alias": "stores"; "required": false; "isSignal": true; }; "drawControls": { "alias": "drawControls"; "required": false; "isSignal": true; }; "activeDrawingLayer": { "alias": "activeDrawingLayer"; "required": false; "isSignal": true; }; }, { "stores": "storesChange"; "drawControls": "drawControlsChange"; "activeDrawingLayer": "activeDrawingLayerChange"; "activeLayerChange": "activeLayerChange"; "drawControlsEvent": "drawControlsEvent"; "layersIDEvent": "layersIDEvent"; }, never, never, true, never>;
4849
4847
  }
4850
4848
 
4851
4849
  interface GeometryFormFieldInputs extends FormFieldInputs {
@@ -5213,11 +5211,11 @@ declare class MeasurerComponent implements OnInit, OnDestroy {
5213
5211
  /**
5214
5212
  * The map to measure on
5215
5213
  */
5216
- map: IgoMap;
5214
+ readonly map: i0.InputSignal<IgoMap>;
5217
5215
  /**
5218
5216
  * The measures store
5219
5217
  */
5220
- store: FeatureStore<FeatureWithMeasure>;
5218
+ readonly store: i0.InputSignal<FeatureStore<FeatureWithMeasure>>;
5221
5219
  /**
5222
5220
  * Measure type
5223
5221
  * @internal
@@ -5229,8 +5227,8 @@ declare class MeasurerComponent implements OnInit, OnDestroy {
5229
5227
  * The minimum length a segment must have to display a tooltip.
5230
5228
  * It also applies to area tooltips.
5231
5229
  */
5232
- minSegmentLength: number;
5233
- table: EntityTableComponent;
5230
+ readonly minSegmentLength: i0.InputSignal<number>;
5231
+ readonly table: i0.Signal<EntityTableComponent>;
5234
5232
  /**
5235
5233
  * Wheter one of the draw control is active
5236
5234
  * @internal
@@ -5450,7 +5448,7 @@ declare class MeasurerComponent implements OnInit, OnDestroy {
5450
5448
  private saveCurrentUnits;
5451
5449
  private getSavedUnits;
5452
5450
  static ɵfac: i0.ɵɵFactoryDeclaration<MeasurerComponent, never>;
5453
- static ɵcmp: i0.ɵɵComponentDeclaration<MeasurerComponent, "igo-measurer", never, { "map": { "alias": "map"; "required": false; }; "store": { "alias": "store"; "required": false; }; "activeMeasureType": { "alias": "activeMeasureType"; "required": false; }; "minSegmentLength": { "alias": "minSegmentLength"; "required": false; }; }, {}, never, never, true, never>;
5451
+ static ɵcmp: i0.ɵɵComponentDeclaration<MeasurerComponent, "igo-measurer", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; "activeMeasureType": { "alias": "activeMeasureType"; "required": false; }; "minSegmentLength": { "alias": "minSegmentLength"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5454
5452
  }
5455
5453
 
5456
5454
  declare const MEASURER_DIRECTIVES: (typeof MeasureFormatPipe | typeof MeasurerComponent)[];
@@ -5468,7 +5466,7 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
5468
5466
  set type(type: SpatialFilterType);
5469
5467
  private _type;
5470
5468
  queryType: SpatialFilterQueryType;
5471
- zone: Feature;
5469
+ zones: Feature[];
5472
5470
  loading: any;
5473
5471
  get store(): EntityStore<Feature>;
5474
5472
  set store(store: EntityStore<Feature>);
@@ -5488,7 +5486,7 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
5488
5486
  thematicChange: EventEmitter<SpatialFilterThematic[]>;
5489
5487
  drawZoneEvent: EventEmitter<Feature<Record<string, any>>>;
5490
5488
  bufferEvent: EventEmitter<number>;
5491
- zoneWithBufferChange: EventEmitter<Feature<Record<string, any>>>;
5489
+ zonesWithBufferChange: EventEmitter<Feature<Record<string, any>>[]>;
5492
5490
  measureUnitChange: EventEmitter<MeasureLengthUnit>;
5493
5491
  radiusEvent: EventEmitter<number>;
5494
5492
  freehandControl: EventEmitter<boolean>;
@@ -5498,7 +5496,6 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
5498
5496
  export: EventEmitter<any>;
5499
5497
  openWorkspace: EventEmitter<any>;
5500
5498
  entityChange: EventEmitter<any>;
5501
- itemType: SpatialFilterItemType[];
5502
5499
  selectedItemType: SpatialFilterItemType;
5503
5500
  selectedSourceAddress: any;
5504
5501
  treeControl: NestedTreeControl<SpatialFilterThematic>;
@@ -5526,7 +5523,7 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
5526
5523
  drawControlIsActive: boolean;
5527
5524
  freehandDrawIsActive: boolean;
5528
5525
  drawStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
5529
- drawZone: any;
5526
+ drawZone: Feature;
5530
5527
  overlayStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
5531
5528
  PointStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
5532
5529
  PolyStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
@@ -5594,54 +5591,68 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
5594
5591
  toggleVisibleList(): void;
5595
5592
  private createTableTemplate;
5596
5593
  static ɵfac: i0.ɵɵFactoryDeclaration<SpatialFilterItemComponent, never>;
5597
- static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterItemComponent, "igo-spatial-filter-item", never, { "map": { "alias": "map"; "required": false; }; "type": { "alias": "type"; "required": false; }; "queryType": { "alias": "queryType"; "required": false; }; "zone": { "alias": "zone"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "store": { "alias": "store"; "required": false; }; "layers": { "alias": "layers"; "required": false; }; "allLayers": { "alias": "allLayers"; "required": false; }; "thematicLength": { "alias": "thematicLength"; "required": false; }; }, { "toggleSearch": "toggleSearch"; "itemTypeChange": "itemTypeChange"; "thematicChange": "thematicChange"; "drawZoneEvent": "drawZoneEvent"; "bufferEvent": "bufferEvent"; "zoneWithBufferChange": "zoneWithBufferChange"; "measureUnitChange": "measureUnitChange"; "radiusEvent": "radiusEvent"; "freehandControl": "freehandControl"; "predefinedRadius": "predefinedRadius"; "clearButtonEvent": "clearButtonEvent"; "clearSearchEvent": "clearSearchEvent"; "export": "export"; "openWorkspace": "openWorkspace"; "entityChange": "entityChange"; }, never, never, true, never>;
5594
+ static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterItemComponent, "igo-spatial-filter-item", never, { "map": { "alias": "map"; "required": true; }; "type": { "alias": "type"; "required": false; }; "queryType": { "alias": "queryType"; "required": false; }; "zones": { "alias": "zones"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "store": { "alias": "store"; "required": true; }; "layers": { "alias": "layers"; "required": false; }; "allLayers": { "alias": "allLayers"; "required": false; }; "thematicLength": { "alias": "thematicLength"; "required": false; }; }, { "toggleSearch": "toggleSearch"; "itemTypeChange": "itemTypeChange"; "thematicChange": "thematicChange"; "drawZoneEvent": "drawZoneEvent"; "bufferEvent": "bufferEvent"; "zonesWithBufferChange": "zonesWithBufferChange"; "measureUnitChange": "measureUnitChange"; "radiusEvent": "radiusEvent"; "freehandControl": "freehandControl"; "predefinedRadius": "predefinedRadius"; "clearButtonEvent": "clearButtonEvent"; "clearSearchEvent": "clearSearchEvent"; "export": "export"; "openWorkspace": "openWorkspace"; "entityChange": "entityChange"; }, never, never, true, never>;
5598
5595
  }
5599
5596
 
5600
5597
  declare class SpatialFilterListComponent implements OnInit, OnDestroy {
5601
5598
  private spatialFilterService;
5602
5599
  private messageService;
5603
- store: EntityStore<Feature>;
5600
+ private cdRef;
5601
+ readonly store: i0.InputSignal<EntityStore<Feature<Record<string, any>>, _igo2_common_entity.EntityState>>;
5604
5602
  get queryType(): SpatialFilterQueryType;
5605
5603
  set queryType(queryType: SpatialFilterQueryType);
5606
5604
  private _queryType;
5607
- get zone(): any;
5608
- set zone(value: any);
5609
- private _zone;
5610
- layers: AnyLayer[];
5611
- zoneWithBuffer: any;
5612
- selectedZone: any;
5605
+ readonly bufferChange: i0.OutputEmitterRef<number>;
5606
+ readonly measureUnitChange: i0.OutputEmitterRef<MeasureLengthUnit>;
5607
+ readonly addZone: i0.OutputEmitterRef<Feature<Record<string, any>>>;
5608
+ readonly removeZone: i0.OutputEmitterRef<Feature<Record<string, any>>>;
5609
+ readonly zonesWithBufferChange: i0.OutputEmitterRef<Feature<Record<string, any>>[]>;
5613
5610
  measureUnit: MeasureLengthUnit;
5614
5611
  formControl: UntypedFormControl;
5615
5612
  bufferFormControl: UntypedFormControl;
5613
+ selectedZones: Feature[];
5614
+ private zonesWithBuffer;
5615
+ private formValueChanges$$;
5616
+ private bufferValueChanges$$;
5617
+ inFlightIds: Set<string | number>;
5618
+ autocomplete: i0.Signal<MatAutocomplete>;
5619
+ autocompleteTrigger: i0.Signal<MatAutocompleteTrigger>;
5616
5620
  /**
5617
5621
  * Available measure units for the measure type given
5618
5622
  * @internal
5619
5623
  */
5620
5624
  get measureUnits(): string[];
5621
- zoneChange: EventEmitter<Feature<Record<string, any>>>;
5622
- zoneWithBufferChange: EventEmitter<Feature<Record<string, any>>>;
5623
- bufferChange: EventEmitter<number>;
5624
- measureUnitChange: EventEmitter<MeasureLengthUnit>;
5625
- formValueChanges$$: Subscription;
5626
- bufferValueChanges$$: Subscription;
5625
+ filteredEntities$: Observable<Feature[]>;
5627
5626
  ngOnInit(): void;
5628
5627
  ngOnDestroy(): void;
5629
5628
  displayFn(feature?: Feature): string | undefined;
5630
- onZoneChange(feature: any): void;
5631
5629
  /**
5632
5630
  * Set the measure unit
5633
5631
  * @internal
5634
5632
  */
5635
5633
  onMeasureUnitChange(unit: MeasureLengthUnit): void;
5634
+ /**
5635
+ * multiple selection of zones
5636
+ */
5637
+ select(event: MatAutocompleteSelectedEvent): void;
5638
+ remove(feature: Feature): void;
5639
+ isSelected(entity: Feature): boolean;
5640
+ private applyBuffer;
5641
+ private updateBuffer;
5642
+ private normalizeBuffer;
5643
+ private resetBufferWithWarning;
5644
+ private normalizeString;
5645
+ private resetInputAndPanel;
5646
+ private clearAutocompleteSelection;
5647
+ private repositionAutocomplete;
5636
5648
  static ɵfac: i0.ɵɵFactoryDeclaration<SpatialFilterListComponent, never>;
5637
- static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterListComponent, "igo-spatial-filter-list", never, { "store": { "alias": "store"; "required": false; }; "queryType": { "alias": "queryType"; "required": false; }; "zone": { "alias": "zone"; "required": false; }; "layers": { "alias": "layers"; "required": false; }; }, { "zoneChange": "zoneChange"; "zoneWithBufferChange": "zoneWithBufferChange"; "bufferChange": "bufferChange"; "measureUnitChange": "measureUnitChange"; }, never, never, true, never>;
5649
+ static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterListComponent, "igo-spatial-filter-list", never, { "store": { "alias": "store"; "required": true; "isSignal": true; }; "queryType": { "alias": "queryType"; "required": true; }; }, { "bufferChange": "bufferChange"; "measureUnitChange": "measureUnitChange"; "addZone": "addZone"; "removeZone": "removeZone"; "zonesWithBufferChange": "zonesWithBufferChange"; }, never, never, true, never>;
5638
5650
  }
5639
5651
 
5640
5652
  /**
5641
5653
  * Spatial Filter Type
5642
5654
  */
5643
5655
  declare class SpatialFilterTypeComponent implements OnInit {
5644
- store: EntityStore<Feature>;
5645
5656
  queryType: string[];
5646
5657
  selectedTypeIndex: UntypedFormControl;
5647
5658
  /**
@@ -5650,41 +5661,41 @@ declare class SpatialFilterTypeComponent implements OnInit {
5650
5661
  */
5651
5662
  spatialType: typeof SpatialFilterType;
5652
5663
  activeDrawType: SpatialFilterType;
5653
- selectedQueryType: SpatialFilterQueryType;
5654
- zone: Feature;
5655
- layers: AnyLayer[];
5664
+ readonly store: i0.InputSignal<EntityStore<Feature<Record<string, any>>, _igo2_common_entity.EntityState>>;
5665
+ selectedQueryType: i0.ModelSignal<SpatialFilterQueryType>;
5666
+ readonly zones: i0.InputSignal<Feature<Record<string, any>>[]>;
5667
+ readonly layers: i0.InputSignal<AnyLayer[]>;
5656
5668
  type: SpatialFilterType;
5657
- eventType: EventEmitter<SpatialFilterType>;
5658
- eventQueryType: EventEmitter<SpatialFilterQueryType>;
5659
- zoneChange: EventEmitter<Feature<Record<string, any>>>;
5660
- zoneWithBufferChange: EventEmitter<Feature<Record<string, any>>>;
5661
- bufferChange: EventEmitter<number>;
5662
- measureUnitChange: EventEmitter<MeasureLengthUnit>;
5669
+ readonly eventType: i0.OutputEmitterRef<SpatialFilterType>;
5670
+ readonly eventQueryType: i0.OutputEmitterRef<SpatialFilterQueryType>;
5671
+ readonly bufferChange: i0.OutputEmitterRef<number>;
5672
+ readonly measureUnitChange: i0.OutputEmitterRef<MeasureLengthUnit>;
5673
+ readonly addZone: i0.OutputEmitterRef<Feature<Record<string, any>>>;
5674
+ readonly removeZone: i0.OutputEmitterRef<Feature<Record<string, any>>>;
5675
+ readonly zonesWithBufferChange: i0.OutputEmitterRef<Feature<Record<string, any>>[]>;
5663
5676
  ngOnInit(): void;
5664
5677
  onTypeChange(): void;
5665
5678
  onDrawTypeChange(spatialType: SpatialFilterType): void;
5666
5679
  onSelectionChange(): void;
5667
5680
  static ɵfac: i0.ɵɵFactoryDeclaration<SpatialFilterTypeComponent, never>;
5668
- static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterTypeComponent, "igo-spatial-filter-type", never, { "store": { "alias": "store"; "required": false; }; "selectedQueryType": { "alias": "selectedQueryType"; "required": false; }; "zone": { "alias": "zone"; "required": false; }; "layers": { "alias": "layers"; "required": false; }; }, { "eventType": "eventType"; "eventQueryType": "eventQueryType"; "zoneChange": "zoneChange"; "zoneWithBufferChange": "zoneWithBufferChange"; "bufferChange": "bufferChange"; "measureUnitChange": "measureUnitChange"; }, never, never, true, never>;
5681
+ static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterTypeComponent, "igo-spatial-filter-type", never, { "store": { "alias": "store"; "required": false; "isSignal": true; }; "selectedQueryType": { "alias": "selectedQueryType"; "required": false; "isSignal": true; }; "zones": { "alias": "zones"; "required": false; "isSignal": true; }; "layers": { "alias": "layers"; "required": false; "isSignal": true; }; }, { "selectedQueryType": "selectedQueryTypeChange"; "eventType": "eventType"; "eventQueryType": "eventQueryType"; "bufferChange": "bufferChange"; "measureUnitChange": "measureUnitChange"; "addZone": "addZone"; "removeZone": "removeZone"; "zonesWithBufferChange": "zonesWithBufferChange"; }, never, never, true, never>;
5669
5682
  }
5670
5683
 
5671
- declare class TimeFilterButtonComponent implements OnInit {
5672
- options: TimeFilterableDataSourceOptions;
5673
- get badge(): number;
5674
- get layer(): Layer;
5675
- set layer(value: Layer);
5676
- private _layer;
5677
- map: IgoMap;
5678
- color: string;
5679
- header: boolean;
5684
+ declare class TimeFilterButtonComponent {
5685
+ readonly layer: i0.InputSignal<Layer>;
5686
+ readonly options: i0.Signal<TimeFilterableDataSourceOptions>;
5687
+ readonly map: i0.InputSignal<IgoMap>;
5688
+ readonly color: i0.InputSignal<string>;
5689
+ readonly header: i0.InputSignal<boolean>;
5680
5690
  timeFilterCollapse: boolean;
5681
- ngOnInit(): void;
5691
+ get badge(): number;
5682
5692
  static ɵfac: i0.ɵɵFactoryDeclaration<TimeFilterButtonComponent, never>;
5683
- static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterButtonComponent, "igo-time-filter-button", never, { "layer": { "alias": "layer"; "required": false; }; "map": { "alias": "map"; "required": false; }; "color": { "alias": "color"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, never, true, never>;
5693
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterButtonComponent, "igo-time-filter-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5684
5694
  }
5685
5695
 
5686
5696
  declare class TimeFilterFormComponent implements OnInit {
5687
5697
  private dateAdapter;
5698
+ private cdRef;
5688
5699
  color: ThemePalette;
5689
5700
  date: Date;
5690
5701
  startDate: Date;
@@ -5700,12 +5711,14 @@ declare class TimeFilterFormComponent implements OnInit {
5700
5711
  interval: number;
5701
5712
  playIcon: string;
5702
5713
  resetIcon: string;
5703
- layer: Layer;
5704
- options: TimeFilterOptions;
5705
- set currentValue(value: string);
5706
- dateChange: EventEmitter<Date | [Date, Date]>;
5707
- yearChange: EventEmitter<string | [string, string]>;
5708
- mySlider: any;
5714
+ readonly enabled: i0.WritableSignal<boolean>;
5715
+ readonly layer: i0.InputSignal<Layer>;
5716
+ readonly options: i0.InputSignal<TimeFilterOptions>;
5717
+ readonly currentValue: i0.InputSignal<string>;
5718
+ readonly rangeDate: i0.Signal<Date[]>;
5719
+ readonly dateChange: i0.OutputEmitterRef<Date | [Date, Date]>;
5720
+ readonly yearChange: i0.OutputEmitterRef<string | [string, string]>;
5721
+ readonly mySlider: i0.Signal<MatSlider>;
5709
5722
  get type(): TimeFilterType;
5710
5723
  get isRange(): boolean;
5711
5724
  get style(): TimeFilterStyle;
@@ -5732,6 +5745,8 @@ declare class TimeFilterFormComponent implements OnInit {
5732
5745
  findThumbLabel(test: any[]): any;
5733
5746
  toggleFilterState(): void;
5734
5747
  resetFilter(): void;
5748
+ private emitDateOrYear;
5749
+ play(): void;
5735
5750
  playFilter(): void;
5736
5751
  playYear(): void;
5737
5752
  stopFilter(): void;
@@ -5757,7 +5772,7 @@ declare class TimeFilterFormComponent implements OnInit {
5757
5772
  */
5758
5773
  getStepDefinition(step: any): number;
5759
5774
  static ɵfac: i0.ɵɵFactoryDeclaration<TimeFilterFormComponent, never>;
5760
- static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterFormComponent, "igo-time-filter-form", never, { "layer": { "alias": "layer"; "required": false; }; "options": { "alias": "options"; "required": false; }; "currentValue": { "alias": "currentValue"; "required": false; }; }, { "dateChange": "dateChange"; "yearChange": "yearChange"; }, never, never, true, never>;
5775
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterFormComponent, "igo-time-filter-form", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "currentValue": { "alias": "currentValue"; "required": false; "isSignal": true; }; }, { "dateChange": "dateChange"; "yearChange": "yearChange"; }, never, never, true, never>;
5761
5776
  }
5762
5777
 
5763
5778
  declare class TimeFilterItemComponent implements OnInit, OnDestroy {
@@ -5767,20 +5782,21 @@ declare class TimeFilterItemComponent implements OnInit, OnDestroy {
5767
5782
  inResolutionRange$: BehaviorSubject<boolean>;
5768
5783
  private resolution$$;
5769
5784
  filtersCollapsed: boolean;
5770
- header: boolean;
5771
- layer: Layer;
5785
+ readonly header: i0.InputSignal<boolean>;
5786
+ readonly layer: i0.InputSignal<Layer>;
5772
5787
  get datasource(): TimeFilterableDataSource;
5773
5788
  ngOnInit(): void;
5774
5789
  ngOnDestroy(): void;
5775
- handleYearChange(year: string | [string, string]): void;
5790
+ handleYearChange(year: string | [string, string] | undefined): void;
5776
5791
  handleDateChange(date: Date | [Date, Date]): void;
5777
5792
  private reformDate;
5778
5793
  private toggleLegend;
5779
5794
  toggleLegendOnClick(): void;
5780
5795
  setVisible(): void;
5796
+ toggleLayerVisibility(): void;
5781
5797
  toggleFiltersCollapsed(): void;
5782
5798
  static ɵfac: i0.ɵɵFactoryDeclaration<TimeFilterItemComponent, never>;
5783
- static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterItemComponent, "igo-time-filter-item", never, { "header": { "alias": "header"; "required": false; }; "layer": { "alias": "layer"; "required": false; }; }, {}, never, never, true, never>;
5799
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterItemComponent, "igo-time-filter-item", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; "layer": { "alias": "layer"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5784
5800
  }
5785
5801
 
5786
5802
  declare class TimeFilterListBindingDirective implements OnInit, OnDestroy {
@@ -5795,9 +5811,9 @@ declare class TimeFilterListBindingDirective implements OnInit, OnDestroy {
5795
5811
  }
5796
5812
 
5797
5813
  declare class TimeFilterListComponent {
5798
- layers: AnyLayer[];
5814
+ readonly layers: i0.ModelSignal<AnyLayer[]>;
5799
5815
  static ɵfac: i0.ɵɵFactoryDeclaration<TimeFilterListComponent, never>;
5800
- static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterListComponent, "igo-time-filter-list", never, { "layers": { "alias": "layers"; "required": false; }; }, {}, never, never, true, never>;
5816
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterListComponent, "igo-time-filter-list", never, { "layers": { "alias": "layers"; "required": false; "isSignal": true; }; }, { "layers": "layersChange"; }, never, never, true, never>;
5801
5817
  }
5802
5818
 
5803
5819
  declare const FILTER_DIRECTIVES: readonly [typeof FilterableDataSourcePipe, typeof TimeFilterButtonComponent, typeof TimeFilterFormComponent, typeof TimeFilterItemComponent, typeof TimeFilterListComponent, typeof TimeFilterListBindingDirective, typeof OgcFilterFormComponent, typeof OgcFilterButtonComponent, typeof OgcFilterSelectionComponent, typeof OgcFilterableFormComponent, typeof OgcFilterableItemComponent, typeof OgcFilterableListComponent, typeof OgcFilterableListBindingDirective, typeof SpatialFilterTypeComponent, typeof SpatialFilterListComponent, typeof SpatialFilterItemComponent, typeof OgcFilterTimeComponent, typeof OgcFilterTimeSliderComponent];
@@ -5909,6 +5925,9 @@ declare class OGCFilterService {
5909
5925
  setOgcWFSFiltersOptions(options: WFSDataSourceOptions): void;
5910
5926
  setOgcWMSFiltersOptions(wmsDatasource: OgcFilterableDataSource): void;
5911
5927
  private mergeInterfaceFilters;
5928
+ private buildStandardOgcFilters;
5929
+ private resetOgcFilters;
5930
+ private buildAdvancedOgcFilters;
5912
5931
  static ɵfac: i0.ɵɵFactoryDeclaration<OGCFilterService, never>;
5913
5932
  static ɵprov: i0.ɵɵInjectableDeclaration<OGCFilterService>;
5914
5933
  }
@@ -5994,7 +6013,6 @@ declare abstract class Layer extends LayerBase {
5994
6013
  link?: Linked;
5995
6014
  linkMaster?: Linked;
5996
6015
  private resolution$$;
5997
- get id(): string;
5998
6016
  get visible(): boolean;
5999
6017
  set visible(value: boolean);
6000
6018
  get maxResolution(): number;
@@ -6020,14 +6038,14 @@ declare abstract class Layer extends LayerBase {
6020
6038
  type AnyLayer = Layer | LayerGroup;
6021
6039
 
6022
6040
  declare class LayerGroupComponent implements OnInit {
6023
- layer: LayerGroup;
6024
- viewerOptions: LayerViewerOptions;
6025
- selected: boolean;
6026
- selectionDisabled: boolean;
6027
- action: EventEmitter<AnyLayer>;
6028
- visibilityChange: EventEmitter<Event>;
6029
- expand: EventEmitter<void>;
6030
- selectChange: EventEmitter<boolean>;
6041
+ readonly layer: i0.InputSignal<LayerGroup>;
6042
+ readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
6043
+ readonly selected: i0.InputSignal<boolean>;
6044
+ readonly selectionDisabled: i0.InputSignal<boolean>;
6045
+ readonly action: i0.OutputEmitterRef<AnyLayer>;
6046
+ readonly visibilityChange: i0.OutputEmitterRef<Event>;
6047
+ readonly expand: i0.OutputEmitterRef<void>;
6048
+ readonly selectChange: i0.OutputEmitterRef<boolean>;
6031
6049
  isDisabled: boolean;
6032
6050
  get title(): string;
6033
6051
  get collapsed(): boolean;
@@ -6041,27 +6059,27 @@ declare class LayerGroupComponent implements OnInit {
6041
6059
  handleExpand(): void;
6042
6060
  handleSelect(event: MatCheckboxChange): void;
6043
6061
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerGroupComponent, never>;
6044
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerGroupComponent, "igo-layer-group", never, { "layer": { "alias": "layer"; "required": false; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "selectionDisabled": { "alias": "selectionDisabled"; "required": false; }; }, { "action": "action"; "visibilityChange": "visibilityChange"; "expand": "expand"; "selectChange": "selectChange"; }, never, ["*"], true, never>;
6062
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerGroupComponent, "igo-layer-group", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "selectionDisabled": { "alias": "selectionDisabled"; "required": false; "isSignal": true; }; }, { "action": "action"; "visibilityChange": "visibilityChange"; "expand": "expand"; "selectChange": "selectChange"; }, never, ["*"], true, never>;
6045
6063
  }
6046
6064
 
6047
6065
  declare class LayerItemComponent implements OnInit, OnDestroy {
6048
6066
  private networkService;
6049
- showLegend$: BehaviorSubject<boolean>;
6050
- inResolutionRange$: BehaviorSubject<boolean>;
6051
- queryBadgeHidden$: BehaviorSubject<boolean>;
6067
+ showLegend: i0.WritableSignal<boolean>;
6068
+ inResolutionRange: boolean;
6069
+ queryBadgeHidden: i0.WritableSignal<boolean>;
6052
6070
  tooltipText: string;
6053
6071
  state: ConnectionState;
6054
6072
  private resolution$$;
6055
6073
  private network$$;
6056
- layer: Layer;
6074
+ readonly layer: i0.InputSignal<Layer>;
6057
6075
  /** Pass the visibility to trigger change detection */
6058
- visible: boolean;
6059
- selected: boolean;
6060
- selectionDisabled: boolean;
6061
- viewerOptions: LayerViewerOptions;
6062
- action: EventEmitter<Layer>;
6063
- selectChange: EventEmitter<boolean>;
6064
- visibilityChange: EventEmitter<Event>;
6076
+ readonly visible: i0.InputSignal<boolean>;
6077
+ readonly selected: i0.InputSignal<boolean>;
6078
+ readonly selectionDisabled: i0.InputSignal<boolean>;
6079
+ readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
6080
+ readonly action: i0.OutputEmitterRef<Layer>;
6081
+ readonly selectChange: i0.OutputEmitterRef<boolean>;
6082
+ readonly visibilityChange: i0.OutputEmitterRef<Event>;
6065
6083
  isDisabled: boolean;
6066
6084
  get opacity(): number;
6067
6085
  set opacity(opacity: number);
@@ -6077,7 +6095,7 @@ declare class LayerItemComponent implements OnInit, OnDestroy {
6077
6095
  toggleLayerTool(): void;
6078
6096
  handleSelect(event: MatCheckboxChange): void;
6079
6097
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerItemComponent, never>;
6080
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerItemComponent, "igo-layer-item", never, { "layer": { "alias": "layer"; "required": true; }; "visible": { "alias": "visible"; "required": true; }; "selected": { "alias": "selected"; "required": false; }; "selectionDisabled": { "alias": "selectionDisabled"; "required": false; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; }; }, { "action": "action"; "selectChange": "selectChange"; "visibilityChange": "visibilityChange"; }, never, ["*"], true, never>;
6098
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerItemComponent, "igo-layer-item", never, { "layer": { "alias": "layer"; "required": true; "isSignal": true; }; "visible": { "alias": "visible"; "required": true; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "selectionDisabled": { "alias": "selectionDisabled"; "required": false; "isSignal": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; "isSignal": true; }; }, { "action": "action"; "selectChange": "selectChange"; "visibilityChange": "visibilityChange"; }, never, ["*"], true, never>;
6081
6099
  }
6082
6100
 
6083
6101
  declare class LayerLegendItemComponent implements OnInit, OnDestroy {
@@ -6087,14 +6105,14 @@ declare class LayerLegendItemComponent implements OnInit, OnDestroy {
6087
6105
  state: ConnectionState;
6088
6106
  private resolution$$;
6089
6107
  private network$$;
6090
- layer: Layer;
6091
- updateLegendOnResolutionChange: boolean;
6108
+ readonly layer: i0.InputSignal<Layer>;
6109
+ readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
6092
6110
  ngOnInit(): void;
6093
6111
  ngOnDestroy(): void;
6094
6112
  computeTooltip(): string;
6095
6113
  private onResolutionChange;
6096
6114
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerLegendItemComponent, never>;
6097
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendItemComponent, "igo-layer-legend-item", never, { "layer": { "alias": "layer"; "required": false; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; }; }, {}, never, never, true, never>;
6115
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendItemComponent, "igo-layer-legend-item", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6098
6116
  }
6099
6117
 
6100
6118
  declare class ImageWatcher extends Watcher {
@@ -6164,29 +6182,27 @@ declare class VectorWatcher extends Watcher {
6164
6182
  private handleLoadEnd;
6165
6183
  }
6166
6184
 
6167
- declare class LayerLegendListComponent implements OnInit, OnDestroy {
6185
+ declare class LayerLegendListComponent {
6168
6186
  orderable: boolean;
6169
- hasVisibleOrInRangeLayers$: BehaviorSubject<boolean>;
6170
- hasVisibleAndNotInRangeLayers$: BehaviorSubject<boolean>;
6171
- layersInUi$: BehaviorSubject<AnyLayer[]>;
6172
- layers$: BehaviorSubject<AnyLayer[]>;
6187
+ hasVisibleOrInRangeLayers: i0.WritableSignal<boolean>;
6188
+ hasVisibleAndNotInRangeLayers: i0.WritableSignal<boolean>;
6189
+ layersInUi: i0.WritableSignal<AnyLayer[]>;
6190
+ layersLegend: i0.WritableSignal<AnyLayer[]>;
6173
6191
  showAllLegend: boolean;
6174
- change$: ReplaySubject<void>;
6175
- private change$$;
6176
- layers: AnyLayer[];
6177
- excludeBaseLayers: boolean;
6178
- updateLegendOnResolutionChange: boolean;
6179
- allowShowAllLegends: boolean;
6180
- showAllLegendsValue: boolean;
6181
- allLegendsShown: EventEmitter<boolean>;
6192
+ readonly layers: i0.ModelSignal<AnyLayer[]>;
6193
+ readonly excludeBaseLayers: i0.InputSignal<boolean>;
6194
+ readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
6195
+ readonly allowShowAllLegends: i0.InputSignal<boolean>;
6196
+ showAllLegendsValue: i0.ModelSignal<boolean>;
6197
+ readonly allLegendsShown: i0.OutputEmitterRef<boolean>;
6182
6198
  isLayerItem: typeof isLayerItem;
6183
- ngOnInit(): void;
6184
- ngOnDestroy(): void;
6185
- private next;
6199
+ constructor();
6200
+ private handleLayersChange;
6186
6201
  private computeShownLayers;
6187
6202
  toggleShowAllLegends(toggle: boolean): void;
6203
+ setLayers(layers: AnyLayer[]): void;
6188
6204
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerLegendListComponent, never>;
6189
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendListComponent, "igo-layer-legend-list", never, { "layers": { "alias": "layers"; "required": false; }; "excludeBaseLayers": { "alias": "excludeBaseLayers"; "required": false; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; }; "allowShowAllLegends": { "alias": "allowShowAllLegends"; "required": false; }; "showAllLegendsValue": { "alias": "showAllLegendsValue"; "required": false; }; }, { "allLegendsShown": "allLegendsShown"; }, never, never, true, never>;
6205
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendListComponent, "igo-layer-legend-list", never, { "layers": { "alias": "layers"; "required": false; "isSignal": true; }; "excludeBaseLayers": { "alias": "excludeBaseLayers"; "required": false; "isSignal": true; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; "isSignal": true; }; "allowShowAllLegends": { "alias": "allowShowAllLegends"; "required": false; "isSignal": true; }; "showAllLegendsValue": { "alias": "showAllLegendsValue"; "required": false; "isSignal": true; }; }, { "layers": "layersChange"; "showAllLegendsValue": "showAllLegendsValueChange"; "allLegendsShown": "allLegendsShown"; }, never, never, true, never>;
6190
6206
  }
6191
6207
 
6192
6208
  declare class LayerLegendListBindingDirective implements OnInit, OnDestroy {
@@ -6207,7 +6223,7 @@ declare class LayerLegendComponent implements OnInit, OnDestroy {
6207
6223
  private cdRef;
6208
6224
  private config;
6209
6225
  private http;
6210
- updateLegendOnResolutionChange: boolean;
6226
+ readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
6211
6227
  /**
6212
6228
  * Observable of the legend items
6213
6229
  */
@@ -6231,12 +6247,12 @@ declare class LayerLegendComponent implements OnInit, OnDestroy {
6231
6247
  /**
6232
6248
  * Get list of images display
6233
6249
  */
6234
- renderedLegends: QueryList<ElementRef>;
6250
+ readonly renderedLegends: i0.Signal<readonly ElementRef<any>[]>;
6235
6251
  /**
6236
6252
  * List of size of images displayed
6237
6253
  */
6238
6254
  imagesHeight: Record<string, number>;
6239
- layer: Layer;
6255
+ readonly layer: i0.InputSignal<Layer>;
6240
6256
  /**
6241
6257
  * if getLegendGraphic is authorized
6242
6258
  */
@@ -6267,26 +6283,26 @@ declare class LayerLegendComponent implements OnInit, OnDestroy {
6267
6283
  onChangeStyle(): void;
6268
6284
  onLoadImage(id: string): void;
6269
6285
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerLegendComponent, never>;
6270
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendComponent, "igo-layer-legend", never, { "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; }; "layer": { "alias": "layer"; "required": false; }; }, {}, never, never, true, never>;
6286
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendComponent, "igo-layer-legend", never, { "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; "isSignal": true; }; "layer": { "alias": "layer"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6271
6287
  }
6272
6288
 
6273
6289
  declare class LayerListToolComponent {
6274
6290
  private layerListToolService;
6275
- mode: LayerToolMode;
6276
- viewerOptions: LayerViewerOptions;
6277
- floatLabel: FloatLabelType;
6278
- onlyVisible: boolean;
6279
- term: string;
6280
- searchChange: EventEmitter<string>;
6281
- visibilityOnlyChange: EventEmitter<boolean>;
6282
- modeChange: EventEmitter<boolean>;
6283
- addedLayer: EventEmitter<LayerGroup>;
6291
+ readonly mode: i0.InputSignal<"selection">;
6292
+ readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
6293
+ readonly floatLabel: i0.InputSignal<FloatLabelType>;
6294
+ readonly onlyVisible: i0.InputSignal<boolean>;
6295
+ readonly term: i0.InputSignal<string>;
6296
+ readonly searchChange: i0.OutputEmitterRef<string>;
6297
+ readonly visibilityOnlyChange: i0.OutputEmitterRef<boolean>;
6298
+ readonly modeChange: i0.OutputEmitterRef<boolean>;
6299
+ readonly addedLayer: i0.OutputEmitterRef<LayerGroup>;
6284
6300
  get selectionActive(): boolean;
6285
6301
  handleTermChange(value: string | undefined): void;
6286
6302
  toggleSelectionMode(): void;
6287
6303
  createGroup(): void;
6288
6304
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerListToolComponent, never>;
6289
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerListToolComponent, "igo-layer-list-tool", never, { "mode": { "alias": "mode"; "required": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "onlyVisible": { "alias": "onlyVisible"; "required": false; }; "term": { "alias": "term"; "required": false; }; }, { "searchChange": "searchChange"; "visibilityOnlyChange": "visibilityOnlyChange"; "modeChange": "modeChange"; "addedLayer": "addedLayer"; }, never, never, true, never>;
6305
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerListToolComponent, "igo-layer-list-tool", never, { "mode": { "alias": "mode"; "required": true; "isSignal": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; "isSignal": true; }; "floatLabel": { "alias": "floatLabel"; "required": false; "isSignal": true; }; "onlyVisible": { "alias": "onlyVisible"; "required": false; "isSignal": true; }; "term": { "alias": "term"; "required": false; "isSignal": true; }; }, { "searchChange": "searchChange"; "visibilityOnlyChange": "visibilityOnlyChange"; "modeChange": "modeChange"; "addedLayer": "addedLayer"; }, never, never, true, never>;
6290
6306
  }
6291
6307
 
6292
6308
  declare class LayerListToolService {
@@ -6303,15 +6319,13 @@ declare class LayerListComponent {
6303
6319
  private messageService;
6304
6320
  toggleOpacity: boolean;
6305
6321
  isInit: boolean;
6306
- controller: LayerController;
6307
- set layers(layers: AnyLayer[]);
6308
- get layers(): AnyLayer[];
6309
- private _layers;
6310
- isDesktop: boolean;
6311
- isDragDropDisabled: boolean;
6312
- selectAll: boolean;
6313
- viewerOptions: LayerViewerOptions;
6314
- activeChange: EventEmitter<AnyLayer>;
6322
+ readonly controller: i0.InputSignal<LayerController>;
6323
+ readonly layers: i0.InputSignal<AnyLayer[]>;
6324
+ readonly isDesktop: i0.InputSignal<boolean>;
6325
+ readonly isDragDropDisabled: i0.InputSignal<boolean>;
6326
+ readonly selectAll: i0.InputSignal<boolean>;
6327
+ readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
6328
+ readonly activeChange: i0.OutputEmitterRef<AnyLayer>;
6315
6329
  private _transformer;
6316
6330
  treeControl: FlatTreeControl<LayerFlatNode<AnyLayer>, LayerFlatNode<AnyLayer>>;
6317
6331
  treeFlattener: MatTreeFlattener<AnyLayer, LayerFlatNode<AnyLayer>, LayerFlatNode<AnyLayer>>;
@@ -6336,47 +6350,47 @@ declare class LayerListComponent {
6336
6350
  private expandGroup;
6337
6351
  private restoreModel;
6338
6352
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerListComponent, never>;
6339
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerListComponent, "igo-layer-list", never, { "controller": { "alias": "controller"; "required": true; }; "layers": { "alias": "layers"; "required": true; }; "isDesktop": { "alias": "isDesktop"; "required": false; }; "isDragDropDisabled": { "alias": "isDragDropDisabled"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; }; }, { "activeChange": "activeChange"; }, never, never, true, never>;
6353
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerListComponent, "igo-layer-list", never, { "controller": { "alias": "controller"; "required": true; "isSignal": true; }; "layers": { "alias": "layers"; "required": true; "isSignal": true; }; "isDesktop": { "alias": "isDesktop"; "required": false; "isSignal": true; }; "isDragDropDisabled": { "alias": "isDragDropDisabled"; "required": false; "isSignal": true; }; "selectAll": { "alias": "selectAll"; "required": false; "isSignal": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; "isSignal": true; }; }, { "activeChange": "activeChange"; }, never, never, true, never>;
6340
6354
  }
6341
6355
 
6342
6356
  declare class LayerSearchComponent implements OnInit {
6343
6357
  control: FormControl<any>;
6344
- initialValue: string;
6345
- floatLabel: FloatLabelType;
6346
- placeholder: string;
6347
- tooltip: string;
6348
- searchChange: EventEmitter<string>;
6358
+ readonly initialValue: i0.InputSignal<string>;
6359
+ readonly floatLabel: i0.InputSignal<FloatLabelType>;
6360
+ readonly placeholder: i0.InputSignal<string>;
6361
+ readonly tooltip: i0.InputSignal<string>;
6362
+ readonly searchChange: i0.OutputEmitterRef<string>;
6349
6363
  ngOnInit(): void;
6350
6364
  clearTerm(): void;
6351
6365
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerSearchComponent, never>;
6352
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerSearchComponent, "igo-layer-search", never, { "initialValue": { "alias": "initialValue"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, { "searchChange": "searchChange"; }, never, never, true, never>;
6366
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerSearchComponent, "igo-layer-search", never, { "initialValue": { "alias": "initialValue"; "required": false; "isSignal": true; }; "floatLabel": { "alias": "floatLabel"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, { "searchChange": "searchChange"; }, never, never, true, never>;
6353
6367
  }
6354
6368
 
6355
6369
  declare class LayerUnavailableComponent {
6356
- layerOptions: AnyLayerItemOptions;
6357
- remove: EventEmitter<AnyLayerOptions>;
6370
+ readonly layerOptions: i0.InputSignal<AnyLayerItemOptions>;
6371
+ readonly remove: i0.OutputEmitterRef<AnyLayerOptions>;
6358
6372
  get title(): string | undefined;
6359
6373
  handleRemove(layerOptions: AnyLayerOptions): void;
6360
6374
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerUnavailableComponent, never>;
6361
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerUnavailableComponent, "igo-layer-unavailable", never, { "layerOptions": { "alias": "layerOptions"; "required": false; }; }, { "remove": "remove"; }, never, never, true, never>;
6375
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerUnavailableComponent, "igo-layer-unavailable", never, { "layerOptions": { "alias": "layerOptions"; "required": false; "isSignal": true; }; }, { "remove": "remove"; }, never, never, true, never>;
6362
6376
  }
6363
6377
 
6364
6378
  declare class LayerUnavailableListComponent {
6365
6379
  private layerService;
6366
- layersOptions: AnyLayerOptions[];
6380
+ readonly layersOptions: i0.InputSignal<AnyLayerOptions[]>;
6367
6381
  deleteUnavailableLayer(options: AnyLayerOptions): void;
6368
6382
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerUnavailableListComponent, never>;
6369
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerUnavailableListComponent, "igo-layer-unavailable-list", never, { "layersOptions": { "alias": "layersOptions"; "required": false; }; }, {}, never, never, true, never>;
6383
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerUnavailableListComponent, "igo-layer-unavailable-list", never, { "layersOptions": { "alias": "layersOptions"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6370
6384
  }
6371
6385
 
6372
6386
  declare class LayerViewerBottomActionsComponent {
6373
6387
  private layerListToolService;
6374
6388
  orderable: boolean;
6375
- map: MapBase;
6376
- controller: LayerController;
6377
- searchTerm: string;
6378
- viewerOptions: LayerViewerOptions;
6379
- layerChange: EventEmitter<any>;
6389
+ readonly map: i0.InputSignal<MapBase>;
6390
+ readonly controller: i0.InputSignal<LayerController>;
6391
+ readonly searchTerm: i0.InputSignal<string>;
6392
+ readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
6393
+ readonly layerChange: i0.OutputEmitterRef<void>;
6380
6394
  get layersFlattened(): AnyLayer[];
6381
6395
  get hasMultipleSelection(): boolean;
6382
6396
  get selected(): AnyLayer[];
@@ -6401,7 +6415,7 @@ declare class LayerViewerBottomActionsComponent {
6401
6415
  private getRecipientOfVisibleLayer;
6402
6416
  private isLayerRemovable;
6403
6417
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerViewerBottomActionsComponent, never>;
6404
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerViewerBottomActionsComponent, "igo-layer-viewer-bottom-actions", never, { "map": { "alias": "map"; "required": true; }; "controller": { "alias": "controller"; "required": true; }; "searchTerm": { "alias": "searchTerm"; "required": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; }; }, { "layerChange": "layerChange"; }, never, ["*"], true, never>;
6418
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerViewerBottomActionsComponent, "igo-layer-viewer-bottom-actions", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "controller": { "alias": "controller"; "required": true; "isSignal": true; }; "searchTerm": { "alias": "searchTerm"; "required": true; "isSignal": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; "isSignal": true; }; }, { "layerChange": "layerChange"; }, never, ["*"], true, never>;
6405
6419
  }
6406
6420
 
6407
6421
  declare class LayerViewerComponent implements OnInit {
@@ -6412,12 +6426,12 @@ declare class LayerViewerComponent implements OnInit {
6412
6426
  keyword$: BehaviorSubject<string>;
6413
6427
  mode: LayerToolMode;
6414
6428
  isDragDropDisabled: boolean;
6415
- map: MapBase;
6416
- options: LayerViewerOptions;
6417
- isDesktop: boolean;
6418
- excludeBaseLayers: boolean;
6419
- appliedFilterAndSort: EventEmitter<LayerListControlsOptions>;
6420
- customBottomActions: TemplateRef<unknown> | undefined;
6429
+ readonly map: i0.InputSignal<MapBase>;
6430
+ readonly options: i0.InputSignal<LayerViewerOptions>;
6431
+ readonly isDesktop: i0.InputSignal<boolean>;
6432
+ readonly excludeBaseLayers: i0.InputSignal<boolean>;
6433
+ readonly appliedFilterAndSort: i0.OutputEmitterRef<LayerListControlsOptions>;
6434
+ readonly customBottomActions: i0.Signal<TemplateRef<any>>;
6421
6435
  get layerViewerOptions(): LayerViewerOptions;
6422
6436
  get layerController(): LayerController;
6423
6437
  get unavailableLayers(): LayerOptionsBase[];
@@ -6443,7 +6457,7 @@ declare class LayerViewerComponent implements OnInit {
6443
6457
  private layerHasTerm;
6444
6458
  private normalizeString;
6445
6459
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerViewerComponent, never>;
6446
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerViewerComponent, "igo-layer-viewer", never, { "map": { "alias": "map"; "required": true; }; "options": { "alias": "options"; "required": false; }; "isDesktop": { "alias": "isDesktop"; "required": false; }; "excludeBaseLayers": { "alias": "excludeBaseLayers"; "required": false; }; }, { "appliedFilterAndSort": "appliedFilterAndSort"; }, ["customBottomActions"], ["[emptyList]", "*"], true, never>;
6460
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerViewerComponent, "igo-layer-viewer", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "isDesktop": { "alias": "isDesktop"; "required": false; "isSignal": true; }; "excludeBaseLayers": { "alias": "excludeBaseLayers"; "required": false; "isSignal": true; }; }, { "appliedFilterAndSort": "appliedFilterAndSort"; }, ["customBottomActions"], ["[emptyList]", "*"], true, never>;
6447
6461
  }
6448
6462
 
6449
6463
  declare class LayerVisibilityButtonComponent implements OnInit {
@@ -6451,38 +6465,37 @@ declare class LayerVisibilityButtonComponent implements OnInit {
6451
6465
  eyeClosedSvg: IconSvg;
6452
6466
  hiddenByParent?: boolean;
6453
6467
  visible: boolean;
6454
- layer: AnyLayer;
6455
- tooltip: string;
6456
- disabled: boolean;
6457
- showQueryBadge: boolean;
6458
- inResolutionsRange: boolean;
6468
+ readonly layer: i0.InputSignal<AnyLayer>;
6469
+ readonly tooltip: i0.InputSignal<string>;
6470
+ readonly disabled: i0.InputSignal<boolean>;
6471
+ readonly showQueryBadge: i0.InputSignal<boolean>;
6472
+ readonly inResolutionsRange: i0.InputSignal<boolean>;
6459
6473
  get defaultTooltip(): string;
6460
- visibilityChange: EventEmitter<Event>;
6474
+ readonly visibilityChange: i0.OutputEmitterRef<Event>;
6461
6475
  ngOnInit(): void;
6462
6476
  toggle(event: Event): void;
6463
6477
  static ɵfac: i0.ɵɵFactoryDeclaration<LayerVisibilityButtonComponent, never>;
6464
- static ɵcmp: i0.ɵɵComponentDeclaration<LayerVisibilityButtonComponent, "igo-layer-visibility-button", never, { "layer": { "alias": "layer"; "required": true; }; "tooltip": { "alias": "tooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showQueryBadge": { "alias": "showQueryBadge"; "required": false; }; "inResolutionsRange": { "alias": "inResolutionsRange"; "required": false; }; }, { "visibilityChange": "visibilityChange"; }, never, never, true, never>;
6478
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayerVisibilityButtonComponent, "igo-layer-visibility-button", never, { "layer": { "alias": "layer"; "required": true; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "showQueryBadge": { "alias": "showQueryBadge"; "required": false; "isSignal": true; }; "inResolutionsRange": { "alias": "inResolutionsRange"; "required": false; "isSignal": true; }; }, { "visibilityChange": "visibilityChange"; }, never, never, true, never>;
6465
6479
  }
6466
6480
 
6467
6481
  declare class TrackFeatureButtonComponent implements OnInit {
6468
- layer: VectorLayer;
6469
- trackFeature: boolean;
6470
- get options(): VectorLayerOptions;
6482
+ readonly layer: i0.InputSignal<VectorLayer>;
6483
+ trackFeature: i0.ModelSignal<boolean>;
6471
6484
  color: string;
6472
6485
  ngOnInit(): void;
6473
6486
  toggleTrackFeature(): void;
6474
6487
  static ɵfac: i0.ɵɵFactoryDeclaration<TrackFeatureButtonComponent, never>;
6475
- static ɵcmp: i0.ɵɵComponentDeclaration<TrackFeatureButtonComponent, "igo-track-feature-button", never, { "layer": { "alias": "layer"; "required": false; }; "trackFeature": { "alias": "trackFeature"; "required": false; }; }, {}, never, never, true, never>;
6488
+ static ɵcmp: i0.ɵɵComponentDeclaration<TrackFeatureButtonComponent, "igo-track-feature-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "trackFeature": { "alias": "trackFeature"; "required": false; "isSignal": true; }; }, { "trackFeature": "trackFeatureChange"; }, never, never, true, never>;
6476
6489
  }
6477
6490
 
6478
6491
  declare class DownloadButtonComponent {
6479
6492
  private downloadService;
6480
- layer: Layer;
6481
- color: string;
6493
+ readonly layer: i0.InputSignal<Layer>;
6494
+ readonly color: i0.InputSignal<string>;
6495
+ readonly options: i0.Signal<DownloadDataSourceOptions>;
6482
6496
  openDownload(): void;
6483
- get options(): DownloadDataSourceOptions;
6484
6497
  static ɵfac: i0.ɵɵFactoryDeclaration<DownloadButtonComponent, never>;
6485
- static ɵcmp: i0.ɵɵComponentDeclaration<DownloadButtonComponent, "igo-download-button", never, { "layer": { "alias": "layer"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
6498
+ static ɵcmp: i0.ɵɵComponentDeclaration<DownloadButtonComponent, "igo-download-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6486
6499
  }
6487
6500
 
6488
6501
  /**
@@ -6496,18 +6509,18 @@ declare class IgoDownloadModule {
6496
6509
  }
6497
6510
 
6498
6511
  declare class ExportButtonComponent {
6499
- layer: Layer;
6500
- color: string;
6501
- get options(): DataSourceOptions;
6502
- layerIsExportable(): boolean;
6512
+ readonly layer: i0.InputSignal<Layer>;
6513
+ readonly color: i0.InputSignal<string>;
6514
+ readonly isExportable: i0.Signal<boolean>;
6503
6515
  static ɵfac: i0.ɵɵFactoryDeclaration<ExportButtonComponent, never>;
6504
- static ɵcmp: i0.ɵɵComponentDeclaration<ExportButtonComponent, "igo-export-button", never, { "layer": { "alias": "layer"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
6516
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExportButtonComponent, "igo-export-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6505
6517
  }
6506
6518
 
6519
+ declare const RADIUS_NAME = "rad";
6507
6520
  interface ExportOptions {
6508
6521
  format?: AnyExportFormat;
6509
- layers: string[];
6510
- layersWithSelection?: string[];
6522
+ layers: LayerId[];
6523
+ layersWithSelection?: LayerId[];
6511
6524
  name?: string;
6512
6525
  combineLayers?: boolean;
6513
6526
  separator?: boolean;
@@ -6577,20 +6590,18 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
6577
6590
  popupChecked: boolean;
6578
6591
  private configFormats;
6579
6592
  private previousLayerSpecs$;
6580
- selectFirstProj: boolean;
6581
- map: IgoMap;
6582
- contextUri: string;
6583
- private _projectionsLimitations;
6584
- set projectionsLimitations(value: ProjectionsLimitationsOptions);
6585
- get projectionsLimitations(): ProjectionsLimitationsOptions;
6593
+ readonly selectFirstProj: i0.InputSignal<boolean>;
6594
+ readonly map: i0.InputSignal<IgoMap>;
6595
+ readonly contextUri: i0.InputSignal<string>;
6596
+ readonly projectionsLimitations: i0.InputSignal<ProjectionsLimitationsOptions>;
6586
6597
  /**
6587
6598
  * Store that holds the available workspaces.
6588
6599
  */
6589
- store: WorkspaceStore;
6590
- selectedMode: SelectMode;
6591
- selectMode: EventEmitter<SelectMode>;
6592
- exportOptions$: BehaviorSubject<ExportOptions>;
6593
- exportOptionsChange: EventEmitter<ExportOptions>;
6600
+ readonly store: i0.InputSignal<WorkspaceStore>;
6601
+ readonly selectedMode: i0.ModelSignal<SelectMode>;
6602
+ readonly selectMode: i0.OutputEmitterRef<SelectMode>;
6603
+ readonly exportOptions$: i0.InputSignal<BehaviorSubject<ExportOptions>>;
6604
+ readonly exportOptionsChange: i0.OutputEmitterRef<ExportOptions>;
6594
6605
  get layers(): any;
6595
6606
  set layers(value: any);
6596
6607
  get inputProj(): any;
@@ -6602,8 +6613,8 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
6602
6613
  private computeProjections;
6603
6614
  getLayerTitleById(id: any): string;
6604
6615
  layerHasSelectedFeatures(layer: Layer): boolean;
6605
- onlySelected(event: MatSlideToggleChange, id: string): void;
6606
- onlySelectedClick(event: any, id: string): void;
6616
+ onlySelected(event: MatSlideToggleChange, id: LayerId): void;
6617
+ onlySelectedClick(event: any, id: LayerId): void;
6607
6618
  inLayersIdToExportSelectionOnly(layer: Layer): boolean;
6608
6619
  ngOnDestroy(): void;
6609
6620
  private handlePreviousLayerSpecs;
@@ -6633,7 +6644,7 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
6633
6644
  private onFileExportSuccess;
6634
6645
  onImportExportChange(event: any): void;
6635
6646
  static ɵfac: i0.ɵɵFactoryDeclaration<ImportExportComponent, never>;
6636
- static ɵcmp: i0.ɵɵComponentDeclaration<ImportExportComponent, "igo-import-export", never, { "selectFirstProj": { "alias": "selectFirstProj"; "required": false; }; "map": { "alias": "map"; "required": false; }; "contextUri": { "alias": "contextUri"; "required": false; }; "projectionsLimitations": { "alias": "projectionsLimitations"; "required": false; }; "store": { "alias": "store"; "required": false; }; "selectedMode": { "alias": "selectedMode"; "required": false; }; "exportOptions$": { "alias": "exportOptions$"; "required": false; }; }, { "selectMode": "selectMode"; "exportOptionsChange": "exportOptionsChange"; }, never, never, true, never>;
6647
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImportExportComponent, "igo-import-export", never, { "selectFirstProj": { "alias": "selectFirstProj"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "contextUri": { "alias": "contextUri"; "required": false; "isSignal": true; }; "projectionsLimitations": { "alias": "projectionsLimitations"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; "selectedMode": { "alias": "selectedMode"; "required": false; "isSignal": true; }; "exportOptions$": { "alias": "exportOptions$"; "required": false; "isSignal": true; }; }, { "selectedMode": "selectedModeChange"; "selectMode": "selectMode"; "exportOptionsChange": "exportOptionsChange"; }, never, never, true, never>;
6637
6648
  }
6638
6649
 
6639
6650
  declare class DropGeoFileDirective extends DragAndDropDirective implements OnInit, OnDestroy {
@@ -6645,12 +6656,10 @@ declare class DropGeoFileDirective extends DragAndDropDirective implements OnIni
6645
6656
  private messageService;
6646
6657
  private layerService;
6647
6658
  private confirmDialogService;
6648
- protected filesDropped: EventEmitter<File[]>;
6649
- protected filesInvalid: EventEmitter<File[]>;
6650
6659
  private epsgCode$$;
6651
6660
  private filesDropped$$;
6652
6661
  get map(): IgoMap;
6653
- contextUri: string;
6662
+ readonly contextUri: i0.InputSignal<string>;
6654
6663
  ngOnInit(): void;
6655
6664
  ngOnDestroy(): void;
6656
6665
  onDragOver(evt: any): void;
@@ -6660,7 +6669,7 @@ declare class DropGeoFileDirective extends DragAndDropDirective implements OnIni
6660
6669
  private onFileImportSuccess;
6661
6670
  private onFileImportError;
6662
6671
  static ɵfac: i0.ɵɵFactoryDeclaration<DropGeoFileDirective, never>;
6663
- static ɵdir: i0.ɵɵDirectiveDeclaration<DropGeoFileDirective, "[igoDropGeoFile]", never, { "contextUri": { "alias": "contextUri"; "required": false; }; }, {}, never, never, true, never>;
6672
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DropGeoFileDirective, "[igoDropGeoFile]", never, { "contextUri": { "alias": "contextUri"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6664
6673
  }
6665
6674
 
6666
6675
  declare const IMPORT_EXPORT_DIRECTIVES: readonly [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent];
@@ -6743,12 +6752,12 @@ interface MetadataLayerOptions extends LayerOptions {
6743
6752
  declare class MetadataButtonComponent {
6744
6753
  private metadataService;
6745
6754
  private dialog;
6746
- layer: Layer;
6747
- color: string;
6755
+ readonly layer: i0.InputSignal<Layer>;
6756
+ readonly color: i0.InputSignal<string>;
6748
6757
  openMetadata(metadata: MetadataOptions): void;
6749
6758
  get options(): MetadataLayerOptions;
6750
6759
  static ɵfac: i0.ɵɵFactoryDeclaration<MetadataButtonComponent, never>;
6751
- static ɵcmp: i0.ɵɵComponentDeclaration<MetadataButtonComponent, "igo-metadata-button", never, { "layer": { "alias": "layer"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
6760
+ static ɵcmp: i0.ɵɵComponentDeclaration<MetadataButtonComponent, "igo-metadata-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6752
6761
  }
6753
6762
  declare class MetadataAbstractComponent {
6754
6763
  data: MetadataOptions;
@@ -6794,23 +6803,23 @@ declare class QueryDirective implements AfterViewInit, OnDestroy {
6794
6803
  /**
6795
6804
  * Whter to query features or not
6796
6805
  */
6797
- queryFeatures: boolean;
6806
+ readonly queryFeatures: i0.InputSignal<boolean>;
6798
6807
  /**
6799
6808
  * Feature query hit tolerance
6800
6809
  */
6801
- queryFeaturesHitTolerance: number;
6810
+ readonly queryFeaturesHitTolerance: i0.InputSignal<number>;
6802
6811
  /**
6803
6812
  * Feature query hit tolerance
6804
6813
  */
6805
- queryFeaturesCondition: (olLayer: OlLayer<olSource>) => boolean;
6814
+ readonly queryFeaturesCondition: i0.InputSignal<(olLayer: OlLayer<olSource>) => boolean>;
6806
6815
  /**
6807
6816
  * Whether all query should complete before emitting an event
6808
6817
  */
6809
- waitForAllQueries: boolean;
6818
+ readonly waitForAllQueries: i0.InputSignal<boolean>;
6810
6819
  /**
6811
6820
  * Event emitted when a query (or all queries) complete
6812
6821
  */
6813
- query: EventEmitter<{
6822
+ readonly query: i0.OutputEmitterRef<{
6814
6823
  features: Feature[] | Feature[][];
6815
6824
  event: MapBrowserPointerEvent<any>;
6816
6825
  }>;
@@ -6860,7 +6869,7 @@ declare class QueryDirective implements AfterViewInit, OnDestroy {
6860
6869
  */
6861
6870
  private removeDragBoxInteraction;
6862
6871
  static ɵfac: i0.ɵɵFactoryDeclaration<QueryDirective, never>;
6863
- static ɵdir: i0.ɵɵDirectiveDeclaration<QueryDirective, "[igoQuery]", never, { "queryFeatures": { "alias": "queryFeatures"; "required": false; }; "queryFeaturesHitTolerance": { "alias": "queryFeaturesHitTolerance"; "required": false; }; "queryFeaturesCondition": { "alias": "queryFeaturesCondition"; "required": false; }; "waitForAllQueries": { "alias": "waitForAllQueries"; "required": false; }; }, { "query": "query"; }, never, never, true, never>;
6872
+ static ɵdir: i0.ɵɵDirectiveDeclaration<QueryDirective, "[igoQuery]", never, { "queryFeatures": { "alias": "queryFeatures"; "required": false; "isSignal": true; }; "queryFeaturesHitTolerance": { "alias": "queryFeaturesHitTolerance"; "required": false; "isSignal": true; }; "queryFeaturesCondition": { "alias": "queryFeaturesCondition"; "required": false; "isSignal": true; }; "waitForAllQueries": { "alias": "waitForAllQueries"; "required": false; "isSignal": true; }; }, { "query": "query"; }, never, never, true, never>;
6864
6873
  }
6865
6874
 
6866
6875
  declare class IgoQueryModule {
@@ -6954,11 +6963,11 @@ declare class SearchPointerSummaryDirective implements OnInit, OnDestroy, AfterC
6954
6963
  /**
6955
6964
  * The delay where the mouse must be motionless before trigger the reverse search
6956
6965
  */
6957
- igoSearchPointerSummaryDelay: number;
6966
+ readonly igoSearchPointerSummaryDelay: i0.InputSignal<number>;
6958
6967
  /**
6959
6968
  * If the user has enabled or not the directive
6960
6969
  */
6961
- igoSearchPointerSummaryEnabled: boolean;
6970
+ readonly igoSearchPointerSummaryEnabled: i0.InputSignal<boolean>;
6962
6971
  mouseleave(): void;
6963
6972
  /**
6964
6973
  * IGO map
@@ -7040,7 +7049,7 @@ declare class SearchPointerSummaryDirective implements OnInit, OnDestroy, AfterC
7040
7049
  */
7041
7050
  private clearLayer;
7042
7051
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchPointerSummaryDirective, never>;
7043
- static ɵdir: i0.ɵɵDirectiveDeclaration<SearchPointerSummaryDirective, "[igoSearchPointerSummary]", never, { "igoSearchPointerSummaryDelay": { "alias": "igoSearchPointerSummaryDelay"; "required": false; }; "igoSearchPointerSummaryEnabled": { "alias": "igoSearchPointerSummaryEnabled"; "required": false; }; }, {}, never, never, true, never>;
7052
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SearchPointerSummaryDirective, "[igoSearchPointerSummary]", never, { "igoSearchPointerSummaryDelay": { "alias": "igoSearchPointerSummaryDelay"; "required": false; "isSignal": true; }; "igoSearchPointerSummaryEnabled": { "alias": "igoSearchPointerSummaryEnabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
7044
7053
  }
7045
7054
 
7046
7055
  /**
@@ -7876,8 +7885,8 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
7876
7885
  /**
7877
7886
  * List of available search types
7878
7887
  */
7879
- searchTypes: string[];
7880
- withDivider: boolean;
7888
+ readonly searchTypes: i0.InputSignal<string[]>;
7889
+ readonly withDivider: i0.InputSignal<boolean>;
7881
7890
  /**
7882
7891
  * Search term
7883
7892
  */
@@ -7887,15 +7896,15 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
7887
7896
  /**
7888
7897
  * Event emitted when the pointer summary is activated by the searchbar setting
7889
7898
  */
7890
- pointerSummaryStatus: EventEmitter<boolean>;
7899
+ readonly pointerSummaryStatus: i0.OutputEmitterRef<boolean>;
7891
7900
  /**
7892
7901
  * Event emitted when the show geometry setting is changed
7893
7902
  */
7894
- searchResultsGeometryStatus: EventEmitter<boolean>;
7903
+ readonly searchResultsGeometryStatus: i0.OutputEmitterRef<boolean>;
7895
7904
  /**
7896
7905
  * Event emitted when the coords format setting is changed
7897
7906
  */
7898
- reverseSearchCoordsFormatStatus: EventEmitter<boolean>;
7907
+ readonly reverseSearchCoordsFormatStatus: i0.OutputEmitterRef<boolean>;
7899
7908
  /**
7900
7909
  * Search term
7901
7910
  */
@@ -7908,9 +7917,9 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
7908
7917
  set disabled(value: boolean);
7909
7918
  get disabled(): boolean;
7910
7919
  readonly disabled$: BehaviorSubject<boolean>;
7911
- pointerSummaryEnabled: boolean;
7912
- allowResetSearchSourcesOptions: boolean;
7913
- searchResultsGeometryEnabled: boolean;
7920
+ readonly pointerSummaryEnabled: i0.InputSignal<boolean>;
7921
+ readonly allowResetSearchSourcesOptions: i0.InputSignal<boolean>;
7922
+ readonly searchResultsGeometryEnabled: i0.InputSignal<boolean>;
7914
7923
  /**
7915
7924
  * When reverse coordinates status change
7916
7925
  */
@@ -7920,67 +7929,67 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
7920
7929
  /**
7921
7930
  * Whether a float label should be displayed
7922
7931
  */
7923
- floatLabel: FloatLabelType;
7924
- appearance: MatFormFieldAppearance;
7925
- placeholder: string;
7926
- label: string;
7932
+ readonly floatLabel: i0.InputSignal<FloatLabelType>;
7933
+ readonly appearance: i0.InputSignal<MatFormFieldAppearance>;
7934
+ readonly placeholder: i0.InputSignal<string>;
7935
+ readonly label: i0.InputSignal<string>;
7927
7936
  /**
7928
7937
  * Icons color (search and clear)
7929
7938
  */
7930
- color: string;
7931
- termSplitter: string;
7939
+ readonly color: i0.InputSignal<string>;
7940
+ readonly termSplitter: i0.InputSignal<string>;
7932
7941
  /**
7933
7942
  * Debounce time between each keystroke
7934
7943
  */
7935
- debounce: number;
7944
+ readonly debounce: i0.InputSignal<number>;
7936
7945
  /**
7937
7946
  * Minimum term length required to trigger a research
7938
7947
  */
7939
- minLength: number;
7948
+ readonly minLength: i0.InputSignal<number>;
7940
7949
  /**
7941
7950
  * Search Selector
7942
7951
  */
7943
- searchSelector: boolean;
7952
+ readonly searchSelector: i0.InputSignal<boolean>;
7944
7953
  /**
7945
7954
  * Search Settings
7946
7955
  */
7947
- searchSettings: boolean;
7956
+ readonly searchSettings: i0.InputSignal<boolean>;
7948
7957
  /**
7949
7958
  * Force coordinates in north america
7950
7959
  */
7951
- forceNA: boolean;
7960
+ readonly forceNA: i0.InputSignal<boolean>;
7952
7961
  /**
7953
7962
  * Search results store
7954
7963
  */
7955
- store: EntityStore<SearchResult>;
7964
+ readonly store: i0.InputSignal<EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>>;
7956
7965
  /**
7957
7966
  * Event emitted when the search term changes
7958
7967
  */
7959
- searchTermChange: EventEmitter<string>;
7968
+ readonly searchTermChange: i0.OutputEmitterRef<string>;
7960
7969
  /**
7961
7970
  * Event emitted when a research is completed
7962
7971
  */
7963
- search: EventEmitter<{
7972
+ readonly search: i0.OutputEmitterRef<{
7964
7973
  research: Research;
7965
7974
  results: SearchResult[];
7966
7975
  }>;
7967
7976
  /**
7968
7977
  * Event emitted when the search type changes
7969
7978
  */
7970
- searchTypeChange: EventEmitter<string>;
7979
+ readonly searchTypeChange: i0.OutputEmitterRef<string>;
7971
7980
  /**
7972
7981
  * Event emitted when the search type changes
7973
7982
  */
7974
- clearFeature: EventEmitter<any>;
7983
+ readonly clearFeature: i0.OutputEmitterRef<void>;
7975
7984
  /**
7976
7985
  * Event emitted when the search settings changes
7977
7986
  */
7978
- searchSettingsChange: EventEmitter<any>;
7987
+ readonly searchSettingsChange: i0.OutputEmitterRef<void>;
7979
7988
  /**
7980
7989
  * Input element
7981
7990
  * @internal
7982
7991
  */
7983
- input: ElementRef;
7992
+ readonly input: i0.Signal<ElementRef<any>>;
7984
7993
  /**
7985
7994
  * Whether the search bar is empty
7986
7995
  * @internal
@@ -8058,7 +8067,7 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
8058
8067
  */
8059
8068
  private onResearchCompleted;
8060
8069
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarComponent, never>;
8061
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "igo-search-bar", never, { "searchTypes": { "alias": "searchTypes"; "required": false; }; "withDivider": { "alias": "withDivider"; "required": false; }; "searchType": { "alias": "searchType"; "required": false; }; "term": { "alias": "term"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pointerSummaryEnabled": { "alias": "pointerSummaryEnabled"; "required": false; }; "allowResetSearchSourcesOptions": { "alias": "allowResetSearchSourcesOptions"; "required": false; }; "searchResultsGeometryEnabled": { "alias": "searchResultsGeometryEnabled"; "required": false; }; "reverseSearchCoordsFormatEnabled": { "alias": "reverseSearchCoordsFormatEnabled"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "color": { "alias": "color"; "required": false; }; "termSplitter": { "alias": "termSplitter"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "searchSelector": { "alias": "searchSelector"; "required": false; }; "searchSettings": { "alias": "searchSettings"; "required": false; }; "forceNA": { "alias": "forceNA"; "required": false; }; "store": { "alias": "store"; "required": false; }; }, { "pointerSummaryStatus": "pointerSummaryStatus"; "searchResultsGeometryStatus": "searchResultsGeometryStatus"; "reverseSearchCoordsFormatStatus": "reverseSearchCoordsFormatStatus"; "searchTermChange": "searchTermChange"; "search": "search"; "searchTypeChange": "searchTypeChange"; "clearFeature": "clearFeature"; "searchSettingsChange": "searchSettingsChange"; }, never, never, true, never>;
8070
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "igo-search-bar", never, { "searchTypes": { "alias": "searchTypes"; "required": false; "isSignal": true; }; "withDivider": { "alias": "withDivider"; "required": false; "isSignal": true; }; "searchType": { "alias": "searchType"; "required": false; }; "term": { "alias": "term"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pointerSummaryEnabled": { "alias": "pointerSummaryEnabled"; "required": false; "isSignal": true; }; "allowResetSearchSourcesOptions": { "alias": "allowResetSearchSourcesOptions"; "required": false; "isSignal": true; }; "searchResultsGeometryEnabled": { "alias": "searchResultsGeometryEnabled"; "required": false; "isSignal": true; }; "reverseSearchCoordsFormatEnabled": { "alias": "reverseSearchCoordsFormatEnabled"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "termSplitter": { "alias": "termSplitter"; "required": false; "isSignal": true; }; "debounce": { "alias": "debounce"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "searchSelector": { "alias": "searchSelector"; "required": false; "isSignal": true; }; "searchSettings": { "alias": "searchSettings"; "required": false; "isSignal": true; }; "forceNA": { "alias": "forceNA"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; }, { "pointerSummaryStatus": "pointerSummaryStatus"; "searchResultsGeometryStatus": "searchResultsGeometryStatus"; "reverseSearchCoordsFormatStatus": "reverseSearchCoordsFormatStatus"; "searchTermChange": "searchTermChange"; "search": "search"; "searchTypeChange": "searchTypeChange"; "clearFeature": "clearFeature"; "searchSettingsChange": "searchSettingsChange"; }, never, never, true, never>;
8062
8071
  }
8063
8072
 
8064
8073
  /**
@@ -8069,28 +8078,18 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
8069
8078
  * placeholder getter. The search source service already supports having
8070
8079
  * more than one search source enabled.
8071
8080
  */
8072
- declare class SearchSelectorComponent implements OnInit, OnDestroy {
8081
+ declare class SearchSelectorComponent implements OnInit {
8073
8082
  private searchSourceService;
8074
- readonly searchType$: BehaviorSubject<string>;
8075
- /**
8076
- * Subscription to the search type
8077
- */
8078
- private searchType$$;
8079
8083
  /**
8080
8084
  * List of available search types
8081
8085
  */
8082
- searchTypes: string[];
8083
- /**
8084
- * The search type enabled
8085
- */
8086
- set searchType(value: string);
8087
- get searchType(): string;
8086
+ readonly searchTypes: i0.InputSignal<string[]>;
8087
+ readonly searchType: i0.ModelSignal<string>;
8088
8088
  /**
8089
8089
  * Event emitted when the enabled search type changes
8090
8090
  */
8091
- searchTypeChange: EventEmitter<string>;
8091
+ readonly searchTypeChange: i0.OutputEmitterRef<string>;
8092
8092
  ngOnInit(): void;
8093
- ngOnDestroy(): void;
8094
8093
  /**
8095
8094
  * Enable the selected search type
8096
8095
  * @param searchType Search type
@@ -8105,14 +8104,9 @@ declare class SearchSelectorComponent implements OnInit, OnDestroy {
8105
8104
  * @internal
8106
8105
  */
8107
8106
  getSearchTypeTitle(searchType: string): string;
8108
- /**
8109
- * Emit an event and enable the search sources of the given type.
8110
- * @param searchType Search type
8111
- */
8112
- private setSearchType;
8113
8107
  private onSetSearchType;
8114
8108
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchSelectorComponent, never>;
8115
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchSelectorComponent, "igo-search-selector", never, { "searchTypes": { "alias": "searchTypes"; "required": false; }; "searchType": { "alias": "searchType"; "required": false; }; }, { "searchTypeChange": "searchTypeChange"; }, never, never, true, never>;
8109
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchSelectorComponent, "igo-search-selector", never, { "searchTypes": { "alias": "searchTypes"; "required": false; "isSignal": true; }; "searchType": { "alias": "searchType"; "required": false; "isSignal": true; }; }, { "searchType": "searchTypeChange"; "searchTypeChange": "searchTypeChange"; }, never, never, true, never>;
8116
8110
  }
8117
8111
 
8118
8112
  /**
@@ -8135,26 +8129,26 @@ declare class SearchSettingsComponent implements OnInit {
8135
8129
  lastKeyTime: number;
8136
8130
  displayBlock: string;
8137
8131
  get isTouchScreen(): boolean;
8138
- pointerSummaryEnabled: boolean;
8139
- searchResultsGeometryEnabled: boolean;
8140
- reverseSearchCoordsFormatEnabled: boolean;
8141
- allowResetSearchSourcesOptions: boolean;
8132
+ pointerSummaryEnabled: i0.ModelSignal<boolean>;
8133
+ searchResultsGeometryEnabled: i0.ModelSignal<boolean>;
8134
+ reverseSearchCoordsFormatEnabled: i0.ModelSignal<boolean>;
8135
+ readonly allowResetSearchSourcesOptions: i0.InputSignal<boolean>;
8142
8136
  /**
8143
8137
  * Event emitted when the enabled search source changes
8144
8138
  */
8145
- searchSourceChange: EventEmitter<SearchSource>;
8139
+ readonly searchSourceChange: i0.OutputEmitterRef<SearchSource>;
8146
8140
  /**
8147
8141
  * Event emitted when the pointer summary is activated
8148
8142
  */
8149
- pointerSummaryStatus: EventEmitter<boolean>;
8143
+ readonly pointerSummaryStatus: i0.OutputEmitterRef<boolean>;
8150
8144
  /**
8151
8145
  * Event emitted when the show geometry summary is changed
8152
8146
  */
8153
- searchResultsGeometryStatus: EventEmitter<boolean>;
8147
+ readonly searchResultsGeometryStatus: i0.OutputEmitterRef<boolean>;
8154
8148
  /**
8155
8149
  * Event emitted when the coords format is changed
8156
8150
  */
8157
- reverseSearchCoordsFormatStatus: EventEmitter<boolean>;
8151
+ readonly reverseSearchCoordsFormatStatus: i0.OutputEmitterRef<boolean>;
8158
8152
  handleKeyboardEvent(event: KeyboardEvent): void;
8159
8153
  ngOnInit(): void;
8160
8154
  /**
@@ -8210,7 +8204,7 @@ declare class SearchSettingsComponent implements OnInit {
8210
8204
  changeSearchResultsGeometry(event: any): void;
8211
8205
  reverseSearchCoordsFormat(event: any): void;
8212
8206
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchSettingsComponent, never>;
8213
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchSettingsComponent, "igo-search-settings", never, { "pointerSummaryEnabled": { "alias": "pointerSummaryEnabled"; "required": false; }; "searchResultsGeometryEnabled": { "alias": "searchResultsGeometryEnabled"; "required": false; }; "reverseSearchCoordsFormatEnabled": { "alias": "reverseSearchCoordsFormatEnabled"; "required": false; }; "allowResetSearchSourcesOptions": { "alias": "allowResetSearchSourcesOptions"; "required": false; }; }, { "searchSourceChange": "searchSourceChange"; "pointerSummaryStatus": "pointerSummaryStatus"; "searchResultsGeometryStatus": "searchResultsGeometryStatus"; "reverseSearchCoordsFormatStatus": "reverseSearchCoordsFormatStatus"; }, never, never, true, never>;
8207
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchSettingsComponent, "igo-search-settings", never, { "pointerSummaryEnabled": { "alias": "pointerSummaryEnabled"; "required": false; "isSignal": true; }; "searchResultsGeometryEnabled": { "alias": "searchResultsGeometryEnabled"; "required": false; "isSignal": true; }; "reverseSearchCoordsFormatEnabled": { "alias": "reverseSearchCoordsFormatEnabled"; "required": false; "isSignal": true; }; "allowResetSearchSourcesOptions": { "alias": "allowResetSearchSourcesOptions"; "required": false; "isSignal": true; }; }, { "pointerSummaryEnabled": "pointerSummaryEnabledChange"; "searchResultsGeometryEnabled": "searchResultsGeometryEnabledChange"; "reverseSearchCoordsFormatEnabled": "reverseSearchCoordsFormatEnabledChange"; "searchSourceChange": "searchSourceChange"; "pointerSummaryStatus": "pointerSummaryStatus"; "searchResultsGeometryStatus": "searchResultsGeometryStatus"; "reverseSearchCoordsFormatStatus": "reverseSearchCoordsFormatStatus"; }, never, never, true, never>;
8214
8208
  }
8215
8209
 
8216
8210
  /**
@@ -8260,60 +8254,60 @@ declare class SearchResultsComponent implements OnInit, OnDestroy {
8260
8254
  collapsed: {
8261
8255
  sourceId: string;
8262
8256
  }[];
8263
- map: IgoMap;
8257
+ readonly map: i0.InputSignal<IgoMap>;
8264
8258
  /**
8265
8259
  * Search results store
8266
8260
  */
8267
- store: EntityStore<SearchResult>;
8261
+ readonly store: i0.InputSignal<EntityStore<SearchResult<Record<string, any>>, EntityState>>;
8268
8262
  /**
8269
8263
  * to show hide results icons
8270
8264
  */
8271
- showIcons: boolean;
8265
+ readonly showIcons: i0.InputSignal<boolean>;
8272
8266
  /**
8273
8267
  * Search results display mode
8274
8268
  */
8275
- mode: SearchResultMode;
8269
+ readonly mode: i0.InputSignal<SearchResultMode>;
8276
8270
  /**
8277
8271
  * Whether there should be a zoom button
8278
8272
  */
8279
- withZoomButton: boolean;
8273
+ readonly withZoomButton: i0.InputSignal<boolean>;
8280
8274
  /**
8281
8275
  * To check if the view for tabsMode for search-result-tools
8282
8276
  */
8283
- tabsMode: boolean;
8277
+ readonly tabsMode: i0.InputSignal<boolean>;
8284
8278
  /**
8285
8279
  * Search term
8286
8280
  */
8287
8281
  get term(): string;
8288
8282
  set term(value: string);
8289
8283
  _term: string;
8290
- settingsChange$: BehaviorSubject<boolean>;
8291
- termSplitter: string;
8284
+ readonly settingsChange$: i0.InputSignal<BehaviorSubject<boolean>>;
8285
+ readonly termSplitter: i0.InputSignal<string>;
8292
8286
  /**
8293
8287
  * Event emitted when a result is focused
8294
8288
  */
8295
- resultFocus: EventEmitter<SearchResult<Record<string, any>>>;
8289
+ readonly resultFocus: i0.OutputEmitterRef<SearchResult<Record<string, any>>>;
8296
8290
  /**
8297
8291
  * Event emitted when a result is unfocused
8298
8292
  */
8299
- resultUnfocus: EventEmitter<SearchResult<Record<string, any>>>;
8293
+ readonly resultUnfocus: i0.OutputEmitterRef<SearchResult<Record<string, any>>>;
8300
8294
  /**
8301
8295
  * Event emitted when a result is selected
8302
8296
  */
8303
- resultSelect: EventEmitter<SearchResult<Record<string, any>>>;
8297
+ readonly resultSelect: i0.OutputEmitterRef<SearchResult<Record<string, any>>>;
8304
8298
  /**
8305
8299
  * Event emitted when a research is completed after displaying more results is clicked
8306
8300
  */
8307
- moreResults: EventEmitter<{
8301
+ readonly moreResults: i0.OutputEmitterRef<{
8308
8302
  research: Research;
8309
8303
  results: SearchResult[];
8310
8304
  }>;
8311
8305
  /**
8312
8306
  * Events emitted when a result is focus or unfocus by mouse event
8313
8307
  */
8314
- resultMouseenter: EventEmitter<SearchResult<Record<string, any>>>;
8315
- resultMouseleave: EventEmitter<SearchResult<Record<string, any>>>;
8316
- templateSearchToolbar: TemplateRef<any>;
8308
+ readonly resultMouseenter: i0.OutputEmitterRef<SearchResult<Record<string, any>>>;
8309
+ readonly resultMouseleave: i0.OutputEmitterRef<SearchResult<Record<string, any>>>;
8310
+ readonly templateSearchToolbar: i0.Signal<TemplateRef<any>>;
8317
8311
  get results$(): Observable<{
8318
8312
  source: SearchSource;
8319
8313
  results: SearchResult[];
@@ -8373,7 +8367,7 @@ declare class SearchResultsComponent implements OnInit, OnDestroy {
8373
8367
  results: SearchResult[];
8374
8368
  }): void;
8375
8369
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultsComponent, never>;
8376
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultsComponent, "igo-search-results", never, { "map": { "alias": "map"; "required": false; }; "store": { "alias": "store"; "required": false; }; "showIcons": { "alias": "showIcons"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "withZoomButton": { "alias": "withZoomButton"; "required": false; }; "tabsMode": { "alias": "tabsMode"; "required": false; }; "term": { "alias": "term"; "required": false; }; "settingsChange$": { "alias": "settingsChange$"; "required": false; }; "termSplitter": { "alias": "termSplitter"; "required": false; }; }, { "resultFocus": "resultFocus"; "resultUnfocus": "resultUnfocus"; "resultSelect": "resultSelect"; "moreResults": "moreResults"; "resultMouseenter": "resultMouseenter"; "resultMouseleave": "resultMouseleave"; }, ["templateSearchToolbar"], never, true, never>;
8370
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultsComponent, "igo-search-results", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; "showIcons": { "alias": "showIcons"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "withZoomButton": { "alias": "withZoomButton"; "required": false; "isSignal": true; }; "tabsMode": { "alias": "tabsMode"; "required": false; "isSignal": true; }; "term": { "alias": "term"; "required": false; }; "settingsChange$": { "alias": "settingsChange$"; "required": false; "isSignal": true; }; "termSplitter": { "alias": "termSplitter"; "required": false; "isSignal": true; }; }, { "resultFocus": "resultFocus"; "resultUnfocus": "resultUnfocus"; "resultSelect": "resultSelect"; "moreResults": "moreResults"; "resultMouseenter": "resultMouseenter"; "resultMouseleave": "resultMouseleave"; }, ["templateSearchToolbar"], never, true, never>;
8377
8371
  }
8378
8372
 
8379
8373
  declare class SearchResultAddButtonComponent implements OnInit, OnDestroy {
@@ -8391,24 +8385,21 @@ declare class SearchResultAddButtonComponent implements OnInit, OnDestroy {
8391
8385
  private layersSubcriptions;
8392
8386
  private lastTimeoutRequest;
8393
8387
  private mouseInsideAdd;
8394
- layer: SearchResult;
8395
- store: EntityStore<SearchResult>;
8388
+ readonly layer: i0.InputSignal<SearchResult<Record<string, any>>>;
8389
+ readonly store: i0.InputSignal<EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>>;
8396
8390
  /**
8397
8391
  * Whether the layer is already added to the map
8398
8392
  */
8399
- added: boolean;
8393
+ readonly added: i0.ModelSignal<boolean>;
8400
8394
  /**
8401
8395
  * The map to add the search result layer to
8402
8396
  */
8403
- map: IgoMap;
8397
+ readonly map: i0.InputSignal<IgoMap>;
8404
8398
  /**
8405
8399
  * show hide save search result in layer button
8406
8400
  */
8407
- saveSearchResultInLayer: boolean;
8408
- get color(): string;
8409
- set color(value: string);
8410
- private _color;
8411
- stores: FeatureStore<Feature>[];
8401
+ readonly saveSearchResultInLayer: i0.InputSignal<boolean>;
8402
+ readonly stores: i0.InputSignal<FeatureStore<Feature<Record<string, any>>>[]>;
8412
8403
  get allLayers(): _igo2_geo.AnyLayer[];
8413
8404
  private mediaService$$;
8414
8405
  isMobile: boolean;
@@ -8446,7 +8437,7 @@ declare class SearchResultAddButtonComponent implements OnInit, OnDestroy {
8446
8437
  addFeature(feature: SearchResult, activeStore: FeatureStore<Feature>): void;
8447
8438
  private clearLabelsOfOlGeometry;
8448
8439
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultAddButtonComponent, never>;
8449
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultAddButtonComponent, "igo-search-add-button", never, { "layer": { "alias": "layer"; "required": false; }; "store": { "alias": "store"; "required": false; }; "added": { "alias": "added"; "required": false; }; "map": { "alias": "map"; "required": false; }; "saveSearchResultInLayer": { "alias": "saveSearchResultInLayer"; "required": false; }; "color": { "alias": "color"; "required": false; }; "stores": { "alias": "stores"; "required": false; }; }, {}, never, never, true, never>;
8440
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultAddButtonComponent, "igo-search-add-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; "added": { "alias": "added"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "saveSearchResultInLayer": { "alias": "saveSearchResultInLayer"; "required": false; "isSignal": true; }; "stores": { "alias": "stores"; "required": false; "isSignal": true; }; }, { "added": "addedChange"; }, never, never, true, never>;
8450
8441
  }
8451
8442
 
8452
8443
  /**
@@ -8702,7 +8693,6 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
8702
8693
  private searchService;
8703
8694
  private queryService;
8704
8695
  private messageService;
8705
- private watcher;
8706
8696
  projection: string;
8707
8697
  hasOsrmPrivateAccess: boolean;
8708
8698
  twoSourcesAvailable: boolean;
@@ -8718,16 +8708,16 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
8718
8708
  previousStops: Stop[];
8719
8709
  private searchs$$;
8720
8710
  private authenticated$$;
8721
- contextUri: string;
8722
- stopsStore: StopsStore;
8723
- stopsFeatureStore: StopsFeatureStore;
8724
- routesFeatureStore: RoutesFeatureStore;
8725
- stepsFeatureStore: StepsFeatureStore;
8726
- debounce: number;
8727
- length: number;
8728
- coordRoundedDecimals: number;
8729
- zoomOnActiveRoute$: Subject<void>;
8730
- authenticated$: BehaviorSubject<boolean>;
8711
+ readonly contextUri: i0.InputSignal<string>;
8712
+ readonly stopsStore: i0.InputSignal<StopsStore>;
8713
+ readonly stopsFeatureStore: i0.InputSignal<StopsFeatureStore>;
8714
+ readonly routesFeatureStore: i0.InputSignal<RoutesFeatureStore>;
8715
+ readonly stepsFeatureStore: i0.InputSignal<StepsFeatureStore>;
8716
+ readonly debounce: i0.InputSignal<number>;
8717
+ readonly length: i0.InputSignal<number>;
8718
+ readonly coordRoundedDecimals: i0.InputSignal<number>;
8719
+ readonly zoomOnActiveRoute: i0.InputSignal<boolean>;
8720
+ readonly authenticated$: i0.InputSignal<BehaviorSubject<boolean>>;
8731
8721
  /**
8732
8722
  * Wheter one of the direction control is active
8733
8723
  * @internal
@@ -8735,6 +8725,7 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
8735
8725
  get directionControlIsActive(): boolean;
8736
8726
  get interactions(): olInteraction.Interaction[];
8737
8727
  get enabledProfileHasAuthorization(): _igo2_geo.BaseDirectionsSourceOptionsProfileAuthorization;
8728
+ constructor();
8738
8729
  ngOnInit(): void;
8739
8730
  ngOnDestroy(): void;
8740
8731
  private freezeStores;
@@ -8753,18 +8744,18 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
8753
8744
  onToggleDirectionsControl(isActive: boolean): void;
8754
8745
  onTogglePrivateModeControl(isActive: boolean): void;
8755
8746
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsComponent, never>;
8756
- static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsComponent, "igo-directions", never, { "contextUri": { "alias": "contextUri"; "required": false; }; "stopsStore": { "alias": "stopsStore"; "required": true; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": true; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; }; "debounce": { "alias": "debounce"; "required": false; }; "length": { "alias": "length"; "required": false; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; }; "zoomOnActiveRoute$": { "alias": "zoomOnActiveRoute$"; "required": true; }; "authenticated$": { "alias": "authenticated$"; "required": true; }; }, {}, never, never, true, never>;
8747
+ static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsComponent, "igo-directions", never, { "contextUri": { "alias": "contextUri"; "required": false; "isSignal": true; }; "stopsStore": { "alias": "stopsStore"; "required": true; "isSignal": true; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": true; "isSignal": true; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; "isSignal": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; "isSignal": true; }; "debounce": { "alias": "debounce"; "required": false; "isSignal": true; }; "length": { "alias": "length"; "required": false; "isSignal": true; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; "isSignal": true; }; "zoomOnActiveRoute": { "alias": "zoomOnActiveRoute"; "required": true; "isSignal": true; }; "authenticated$": { "alias": "authenticated$"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
8757
8748
  }
8758
8749
 
8759
8750
  declare class DirectionsInputsComponent implements OnDestroy {
8760
8751
  private languageService;
8761
- stopsStore: StopsStore;
8762
- stopsFeatureStore: StopsFeatureStore;
8763
- projection: string;
8764
- coordRoundedDecimals: number;
8765
- debounce: number;
8766
- length: number;
8767
- stopInputHasFocus: EventEmitter<boolean>;
8752
+ readonly stopsStore: i0.InputSignal<StopsStore>;
8753
+ readonly stopsFeatureStore: i0.InputSignal<StopsFeatureStore>;
8754
+ readonly projection: i0.InputSignal<string>;
8755
+ readonly coordRoundedDecimals: i0.InputSignal<number>;
8756
+ readonly debounce: i0.InputSignal<number>;
8757
+ readonly length: i0.InputSignal<number>;
8758
+ readonly stopInputHasFocus: i0.OutputEmitterRef<boolean>;
8768
8759
  private readonly invalidKeys;
8769
8760
  private onMapClickEventKeys;
8770
8761
  stopWithHover: Stop;
@@ -8892,7 +8883,7 @@ declare class DirectionsInputsComponent implements OnDestroy {
8892
8883
  */
8893
8884
  private useCoordinatesAsStop;
8894
8885
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsInputsComponent, never>;
8895
- static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsInputsComponent, "igo-directions-inputs", never, { "stopsStore": { "alias": "stopsStore"; "required": true; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": true; }; "projection": { "alias": "projection"; "required": true; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "length": { "alias": "length"; "required": false; }; }, { "stopInputHasFocus": "stopInputHasFocus"; }, never, never, true, never>;
8886
+ static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsInputsComponent, "igo-directions-inputs", never, { "stopsStore": { "alias": "stopsStore"; "required": true; "isSignal": true; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": true; "isSignal": true; }; "projection": { "alias": "projection"; "required": true; "isSignal": true; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; "isSignal": true; }; "debounce": { "alias": "debounce"; "required": false; "isSignal": true; }; "length": { "alias": "length"; "required": false; "isSignal": true; }; }, { "stopInputHasFocus": "stopInputHasFocus"; }, never, never, true, never>;
8896
8887
  }
8897
8888
 
8898
8889
  declare class DirectionsButtonsComponent {
@@ -8901,11 +8892,11 @@ declare class DirectionsButtonsComponent {
8901
8892
  private messageService;
8902
8893
  private routeService;
8903
8894
  private directionsService;
8904
- contextUri: string;
8905
- zoomOnActiveRoute$: Subject<void>;
8906
- stopsStore: StopsStore;
8907
- routesFeatureStore: RoutesFeatureStore;
8908
- stepsFeatureStore: StepsFeatureStore;
8895
+ readonly contextUri: i0.InputSignal<string>;
8896
+ readonly zoomOnActiveRoute: i0.ModelSignal<boolean>;
8897
+ readonly stopsStore: i0.InputSignal<StopsStore>;
8898
+ readonly routesFeatureStore: i0.InputSignal<RoutesFeatureStore>;
8899
+ readonly stepsFeatureStore: i0.InputSignal<StepsFeatureStore>;
8909
8900
  downloadDirectionsBtnDisabled: boolean;
8910
8901
  /**
8911
8902
  * Returns the active route from the routesFeatureStore.
@@ -8922,7 +8913,7 @@ declare class DirectionsButtonsComponent {
8922
8913
  * Triggers the zoom on the active route.
8923
8914
  *
8924
8915
  */
8925
- zoomOnActiveRoute(): void;
8916
+ setZoomOnActiveRoute(): void;
8926
8917
  /**
8927
8918
  * Copies the directions to the clipboard and displays a success message if the copy is successful.
8928
8919
  *
@@ -8959,14 +8950,14 @@ declare class DirectionsButtonsComponent {
8959
8950
  */
8960
8951
  private getLink;
8961
8952
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsButtonsComponent, never>;
8962
- static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsButtonsComponent, "igo-directions-buttons", never, { "contextUri": { "alias": "contextUri"; "required": true; }; "zoomOnActiveRoute$": { "alias": "zoomOnActiveRoute$"; "required": true; }; "stopsStore": { "alias": "stopsStore"; "required": true; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; }; }, {}, never, never, true, never>;
8953
+ static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsButtonsComponent, "igo-directions-buttons", never, { "contextUri": { "alias": "contextUri"; "required": true; "isSignal": true; }; "zoomOnActiveRoute": { "alias": "zoomOnActiveRoute"; "required": true; "isSignal": true; }; "stopsStore": { "alias": "stopsStore"; "required": true; "isSignal": true; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; "isSignal": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; "isSignal": true; }; }, { "zoomOnActiveRoute": "zoomOnActiveRouteChange"; }, never, never, true, never>;
8963
8954
  }
8964
8955
 
8965
8956
  declare class DirectionsResultsComponent implements OnInit, OnDestroy {
8966
8957
  private languageService;
8967
8958
  private cdRef;
8968
- routesFeatureStore: RoutesFeatureStore;
8969
- stepsFeatureStore: StepsFeatureStore;
8959
+ readonly routesFeatureStore: i0.InputSignal<RoutesFeatureStore>;
8960
+ readonly stepsFeatureStore: i0.InputSignal<StepsFeatureStore>;
8970
8961
  activeRoute: Directions;
8971
8962
  routes: Directions[];
8972
8963
  private entities$$;
@@ -9018,7 +9009,7 @@ declare class DirectionsResultsComponent implements OnInit, OnDestroy {
9018
9009
  showStep(step: IgoStep, zoomToExtent?: boolean): void;
9019
9010
  private showRouteSegmentGeometry;
9020
9011
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsResultsComponent, never>;
9021
- static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsResultsComponent, "igo-directions-results", never, { "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; }; }, {}, never, never, true, never>;
9012
+ static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsResultsComponent, "igo-directions-results", never, { "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; "isSignal": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
9022
9013
  }
9023
9014
 
9024
9015
  declare class IgoDirectionsModule {
@@ -9037,17 +9028,11 @@ declare class ToastComponent {
9037
9028
  DOWN: string;
9038
9029
  };
9039
9030
  private format;
9040
- get expanded(): boolean;
9041
- set expanded(value: boolean);
9042
- private _expanded;
9043
- get map(): IgoMap;
9044
- set map(value: IgoMap);
9045
- private _map;
9046
- get feature(): Feature;
9047
- set feature(value: Feature);
9048
- private _feature;
9049
- opened: EventEmitter<boolean>;
9050
- state: FlexibleState;
9031
+ readonly expanded: i0.ModelSignal<boolean>;
9032
+ readonly map: i0.InputSignal<IgoMap>;
9033
+ readonly feature: i0.InputSignal<Feature<Record<string, any>>>;
9034
+ readonly opened: i0.OutputEmitterRef<boolean>;
9035
+ state: i0.Signal<FlexibleState>;
9051
9036
  /**
9052
9037
  * @internal
9053
9038
  */
@@ -9056,7 +9041,7 @@ declare class ToastComponent {
9056
9041
  zoomToFeatureExtent(): void;
9057
9042
  swipe(action: string): void;
9058
9043
  static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
9059
- static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "igo-toast", never, { "expanded": { "alias": "expanded"; "required": false; }; "map": { "alias": "map"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; }, { "opened": "opened"; }, never, never, true, never>;
9044
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "igo-toast", never, { "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "feature": { "alias": "feature"; "required": false; "isSignal": true; }; }, { "expanded": "expandedChange"; "opened": "opened"; }, never, never, true, never>;
9060
9045
  }
9061
9046
 
9062
9047
  /**
@@ -9071,16 +9056,16 @@ declare class IgoToastModule {
9071
9056
 
9072
9057
  declare class OgcFilterComponent implements OnUpdateInputs, WidgetComponent {
9073
9058
  private cdRef;
9074
- layer: Layer;
9075
- map: IgoMap;
9059
+ readonly layer: i0.InputSignal<Layer>;
9060
+ readonly map: i0.InputSignal<IgoMap>;
9076
9061
  /**
9077
9062
  * Event emitted on complete
9078
9063
  */
9079
- complete: EventEmitter<void>;
9064
+ readonly complete: i0.OutputEmitterRef<void>;
9080
9065
  /**
9081
9066
  * Event emitted on cancel
9082
9067
  */
9083
- cancel: EventEmitter<void>;
9068
+ readonly cancel: i0.OutputEmitterRef<void>;
9084
9069
  /**
9085
9070
  * Implemented as part of OnUpdateInputs
9086
9071
  */
@@ -9090,7 +9075,7 @@ declare class OgcFilterComponent implements OnUpdateInputs, WidgetComponent {
9090
9075
  */
9091
9076
  onClose(): void;
9092
9077
  static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterComponent, never>;
9093
- static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterComponent, "igo-ogc-filter", never, { "layer": { "alias": "layer"; "required": false; }; "map": { "alias": "map"; "required": false; }; }, { "complete": "complete"; "cancel": "cancel"; }, never, never, true, never>;
9078
+ static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterComponent, "igo-ogc-filter", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; }, { "complete": "complete"; "cancel": "cancel"; }, never, never, true, never>;
9094
9079
  }
9095
9080
 
9096
9081
  /**
@@ -9110,11 +9095,11 @@ declare class WorkspaceSelectorDirective implements OnInit, OnDestroy {
9110
9095
  private featureWorkspaceService;
9111
9096
  private layers$$;
9112
9097
  private entities$$;
9113
- map: IgoMap;
9114
- changeWorkspace: EventEmitter<string>;
9115
- disableSwitch: EventEmitter<boolean>;
9116
- relationLayers: EventEmitter<ImageLayer[] | VectorLayer[]>;
9117
- rowsInMapExtentCheckCondition: EventEmitter<boolean>;
9098
+ readonly map: i0.InputSignal<IgoMap>;
9099
+ readonly changeWorkspace: i0.OutputEmitterRef<string>;
9100
+ readonly disableSwitch: i0.OutputEmitterRef<boolean>;
9101
+ readonly relationLayers: i0.OutputEmitterRef<ImageLayer[] | VectorLayer[]>;
9102
+ readonly rowsInMapExtentCheckCondition: i0.OutputEmitterRef<boolean>;
9118
9103
  get workspaceStore(): WorkspaceStore;
9119
9104
  ngOnInit(): void;
9120
9105
  ngOnDestroy(): void;
@@ -9125,7 +9110,7 @@ declare class WorkspaceSelectorDirective implements OnInit, OnDestroy {
9125
9110
  private enableLayerRefreshForWorkspace;
9126
9111
  private disableAllLayerRefresh;
9127
9112
  static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceSelectorDirective, never>;
9128
- static ɵdir: i0.ɵɵDirectiveDeclaration<WorkspaceSelectorDirective, "[igoWorkspaceSelector]", never, { "map": { "alias": "map"; "required": false; }; }, { "changeWorkspace": "changeWorkspace"; "disableSwitch": "disableSwitch"; "relationLayers": "relationLayers"; "rowsInMapExtentCheckCondition": "rowsInMapExtentCheckCondition"; }, never, never, true, never>;
9113
+ static ɵdir: i0.ɵɵDirectiveDeclaration<WorkspaceSelectorDirective, "[igoWorkspaceSelector]", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, { "changeWorkspace": "changeWorkspace"; "disableSwitch": "disableSwitch"; "relationLayers": "relationLayers"; "rowsInMapExtentCheckCondition": "rowsInMapExtentCheckCondition"; }, never, never, true, never>;
9129
9114
  }
9130
9115
 
9131
9116
  /**
@@ -9170,7 +9155,7 @@ declare class StyleModalDrawingComponent implements OnInit {
9170
9155
  private formBuilder;
9171
9156
  private drawStyleService;
9172
9157
  data: DrawingMatDialogData;
9173
- confirmFlag: boolean;
9158
+ confirmFlag: i0.ModelSignal<boolean>;
9174
9159
  form: UntypedFormGroup;
9175
9160
  styleModalData: StyleModalData;
9176
9161
  linestringOnly: boolean;
@@ -9189,14 +9174,14 @@ declare class StyleModalDrawingComponent implements OnInit {
9189
9174
  openPicker(): void;
9190
9175
  closePicker(): void;
9191
9176
  static ɵfac: i0.ɵɵFactoryDeclaration<StyleModalDrawingComponent, never>;
9192
- static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalDrawingComponent, "igo-style-modal-drawing", never, { "confirmFlag": { "alias": "confirmFlag"; "required": false; }; }, {}, never, never, true, never>;
9177
+ static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalDrawingComponent, "igo-style-modal-drawing", never, { "confirmFlag": { "alias": "confirmFlag"; "required": false; "isSignal": true; }; }, { "confirmFlag": "confirmFlagChange"; }, never, never, true, never>;
9193
9178
  }
9194
9179
 
9195
9180
  declare class StyleModalLayerComponent implements OnInit {
9196
9181
  dialogRef: MatDialogRef<StyleModalLayerComponent, any>;
9197
9182
  private formBuilder;
9198
9183
  data: LayerMatDialogData;
9199
- confirmFlag: boolean;
9184
+ confirmFlag: i0.ModelSignal<boolean>;
9200
9185
  form: UntypedFormGroup;
9201
9186
  styleModalData: StyleModalData;
9202
9187
  linestringOnly: boolean;
@@ -9215,18 +9200,18 @@ declare class StyleModalLayerComponent implements OnInit {
9215
9200
  openPicker(): void;
9216
9201
  closePicker(): void;
9217
9202
  static ɵfac: i0.ɵɵFactoryDeclaration<StyleModalLayerComponent, never>;
9218
- static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalLayerComponent, "igo-style-modal-layer", never, { "confirmFlag": { "alias": "confirmFlag"; "required": false; }; }, {}, never, never, true, never>;
9203
+ static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalLayerComponent, "igo-style-modal-layer", never, { "confirmFlag": { "alias": "confirmFlag"; "required": false; "isSignal": true; }; }, { "confirmFlag": "confirmFlagChange"; }, never, never, true, never>;
9219
9204
  }
9220
9205
 
9221
9206
  declare class StyleModalLayerButtonComponent {
9222
9207
  private dialog;
9223
- layer: VectorLayer;
9208
+ readonly layer: i0.InputSignal<VectorLayer>;
9224
9209
  /**
9225
9210
  * Open the style modal dialog box
9226
9211
  */
9227
9212
  openStyleModalDialog(): void;
9228
9213
  static ɵfac: i0.ɵɵFactoryDeclaration<StyleModalLayerButtonComponent, never>;
9229
- static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalLayerButtonComponent, "igo-style-modal-layer-button", never, { "layer": { "alias": "layer"; "required": false; }; }, {}, never, never, true, never>;
9214
+ static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalLayerButtonComponent, "igo-style-modal-layer-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
9230
9215
  }
9231
9216
 
9232
9217
  declare class IgoStyleModule {
@@ -9397,23 +9382,23 @@ declare class CatalogBrowserComponent implements OnInit, OnDestroy {
9397
9382
  */
9398
9383
  private watcher;
9399
9384
  get resolution$(): BehaviorSubject<number>;
9400
- catalogAllowLegend: boolean;
9385
+ readonly catalogAllowLegend: i0.ModelSignal<boolean>;
9401
9386
  /**
9402
9387
  * Catalog
9403
9388
  */
9404
- catalog: Catalog;
9389
+ readonly catalog: i0.InputSignal<Catalog>;
9405
9390
  /**
9406
9391
  * Store holding the catalog's items
9407
9392
  */
9408
- store: EntityStore<CatalogItem, CatalogItemState>;
9393
+ readonly store: i0.InputSignal<EntityStore<CatalogItem, CatalogItemState>>;
9409
9394
  /**
9410
9395
  * Map to add the catalog items to
9411
9396
  */
9412
- map: IgoMap;
9397
+ readonly map: i0.InputSignal<IgoMap>;
9413
9398
  /**
9414
9399
  * Whether a group can be toggled when it's collapsed
9415
9400
  */
9416
- toggleCollapsedGroup: boolean;
9401
+ readonly toggleCollapsedGroup: i0.InputSignal<boolean>;
9417
9402
  /**
9418
9403
  * @internal
9419
9404
  */
@@ -9475,7 +9460,7 @@ declare class CatalogBrowserComponent implements OnInit, OnDestroy {
9475
9460
  */
9476
9461
  private removeGroupFromMap;
9477
9462
  static ɵfac: i0.ɵɵFactoryDeclaration<CatalogBrowserComponent, never>;
9478
- static ɵcmp: i0.ɵɵComponentDeclaration<CatalogBrowserComponent, "igo-catalog-browser", never, { "catalogAllowLegend": { "alias": "catalogAllowLegend"; "required": false; }; "catalog": { "alias": "catalog"; "required": false; }; "store": { "alias": "store"; "required": false; }; "map": { "alias": "map"; "required": false; }; "toggleCollapsedGroup": { "alias": "toggleCollapsedGroup"; "required": false; }; }, {}, never, never, true, never>;
9463
+ static ɵcmp: i0.ɵɵComponentDeclaration<CatalogBrowserComponent, "igo-catalog-browser", never, { "catalogAllowLegend": { "alias": "catalogAllowLegend"; "required": false; "isSignal": true; }; "catalog": { "alias": "catalog"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "toggleCollapsedGroup": { "alias": "toggleCollapsedGroup"; "required": false; "isSignal": true; }; }, { "catalogAllowLegend": "catalogAllowLegendChange"; }, never, never, true, never>;
9479
9464
  }
9480
9465
 
9481
9466
  /**
@@ -9524,23 +9509,23 @@ declare class CatalogLibraryComponent implements OnInit, OnDestroy {
9524
9509
  /**
9525
9510
  * Store holding the catalogs
9526
9511
  */
9527
- store: EntityStore<Catalog>;
9512
+ readonly store: i0.InputSignal<EntityStore<Catalog, _igo2_common_entity.EntityState>>;
9528
9513
  /**
9529
9514
  * Map to add the catalog items to
9530
9515
  */
9531
- map: IgoMap;
9516
+ readonly map: i0.InputSignal<IgoMap>;
9532
9517
  /**
9533
9518
  * Determine if the form to add a catalog is allowed
9534
9519
  */
9535
- addCatalogAllowed: boolean;
9520
+ readonly addCatalogAllowed: i0.InputSignal<boolean>;
9536
9521
  /**
9537
9522
  * Determine if the form to add a catalog is allowed
9538
9523
  */
9539
- predefinedCatalogs: Catalog[];
9524
+ readonly predefinedCatalogs: i0.ModelSignal<Catalog[]>;
9540
9525
  /**
9541
9526
  * Event emitted a catalog is selected or unselected
9542
9527
  */
9543
- catalogSelectChange: EventEmitter<{
9528
+ readonly catalogSelectChange: i0.OutputEmitterRef<{
9544
9529
  selected: boolean;
9545
9530
  catalog: Catalog;
9546
9531
  }>;
@@ -9568,7 +9553,7 @@ declare class CatalogLibraryComponent implements OnInit, OnDestroy {
9568
9553
  onCatalogRemove(catalog: any): void;
9569
9554
  addCatalogDialog(error?: any, addedCatalog?: Catalog): void;
9570
9555
  static ɵfac: i0.ɵɵFactoryDeclaration<CatalogLibraryComponent, never>;
9571
- static ɵcmp: i0.ɵɵComponentDeclaration<CatalogLibraryComponent, "igo-catalog-library", never, { "store": { "alias": "store"; "required": false; }; "map": { "alias": "map"; "required": false; }; "addCatalogAllowed": { "alias": "addCatalogAllowed"; "required": false; }; "predefinedCatalogs": { "alias": "predefinedCatalogs"; "required": false; }; }, { "catalogSelectChange": "catalogSelectChange"; }, never, never, true, never>;
9556
+ static ɵcmp: i0.ɵɵComponentDeclaration<CatalogLibraryComponent, "igo-catalog-library", never, { "store": { "alias": "store"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "addCatalogAllowed": { "alias": "addCatalogAllowed"; "required": false; "isSignal": true; }; "predefinedCatalogs": { "alias": "predefinedCatalogs"; "required": false; "isSignal": true; }; }, { "predefinedCatalogs": "predefinedCatalogsChange"; "catalogSelectChange": "catalogSelectChange"; }, never, never, true, never>;
9572
9557
  }
9573
9558
 
9574
9559
  declare const CATALOG_LIBRARY_DIRECTIVES: readonly [typeof CatalogLibraryComponent, typeof AddCatalogDialogComponent];
@@ -9952,8 +9937,8 @@ declare class SliceControl {
9952
9937
  * This is still WIP.
9953
9938
  */
9954
9939
  declare class GeometryFormFieldInputComponent implements OnInit, OnDestroy, ControlValueAccessor {
9955
- private cdRef;
9956
9940
  ngControl: NgControl;
9941
+ private cdRef;
9957
9942
  private olOverlayLayer;
9958
9943
  private olGeoJSON;
9959
9944
  private ready;
@@ -10007,7 +9992,9 @@ declare class GeometryFormFieldInputComponent implements OnInit, OnDestroy, Cont
10007
9992
  /**
10008
9993
  * Control options
10009
9994
  */
10010
- controlOptions: Record<string, any>;
9995
+ controlOptions: {
9996
+ [key: string]: any;
9997
+ };
10011
9998
  /**
10012
9999
  * Style for the draw control (applies while the geometry is being drawn)
10013
10000
  */
@@ -10034,7 +10021,7 @@ declare class GeometryFormFieldInputComponent implements OnInit, OnDestroy, Cont
10034
10021
  */
10035
10022
  get olOverlaySource(): olSourceVector;
10036
10023
  set radius(value: any);
10037
- constructor();
10024
+ constructor(ngControl: NgControl);
10038
10025
  /**
10039
10026
  * Create an overlay layer, add the initial geometry to it (if any)
10040
10027
  * and toggle the right interaction.
@@ -10131,7 +10118,7 @@ declare class GeometryFormFieldInputComponent implements OnInit, OnDestroy, Cont
10131
10118
  * @param olStyle The style on which to perform the check
10132
10119
  */
10133
10120
  private getGuideStyleFromDrawStyle;
10134
- static ɵfac: i0.ɵɵFactoryDeclaration<GeometryFormFieldInputComponent, never>;
10121
+ static ɵfac: i0.ɵɵFactoryDeclaration<GeometryFormFieldInputComponent, [{ optional: true; self: true; }]>;
10135
10122
  static ɵcmp: i0.ɵɵComponentDeclaration<GeometryFormFieldInputComponent, "igo-geometry-form-field-input", never, { "map": { "alias": "map"; "required": false; }; "geometryType": { "alias": "geometryType"; "required": false; }; "drawGuide": { "alias": "drawGuide"; "required": false; }; "measure": { "alias": "measure"; "required": false; }; "drawControlIsActive": { "alias": "drawControlIsActive"; "required": false; }; "freehandDrawIsActive": { "alias": "freehandDrawIsActive"; "required": false; }; "predefinedRadius": { "alias": "predefinedRadius"; "required": false; }; "controlOptions": { "alias": "controlOptions"; "required": false; }; "drawStyle": { "alias": "drawStyle"; "required": false; }; "overlayStyle": { "alias": "overlayStyle"; "required": false; }; "value": { "alias": "value"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; }, {}, never, never, true, never>;
10136
10123
  }
10137
10124
 
@@ -10189,7 +10176,9 @@ declare class GeometryFormFieldComponent implements OnInit, OnDestroy {
10189
10176
  /**
10190
10177
  * Control options
10191
10178
  */
10192
- controlOptions: Record<string, any>;
10179
+ controlOptions: {
10180
+ [key: string]: any;
10181
+ };
10193
10182
  /**
10194
10183
  * Style for the draw control (applies while the geometry is being drawn)
10195
10184
  */
@@ -10392,7 +10381,7 @@ declare class PrintFormComponent implements OnInit {
10392
10381
  newpage: "newpage";
10393
10382
  };
10394
10383
  isPrintService: boolean;
10395
- disabled$: BehaviorSubject<boolean>;
10384
+ readonly disabled$: i0.InputSignal<BehaviorSubject<boolean>>;
10396
10385
  get imageFormat(): PrintSaveImageFormat;
10397
10386
  set imageFormat(value: PrintSaveImageFormat);
10398
10387
  get outputFormat(): PrintOutputFormat;
@@ -10435,7 +10424,7 @@ declare class PrintFormComponent implements OnInit {
10435
10424
  get titleField(): UntypedFormControl;
10436
10425
  get subtitleField(): UntypedFormControl;
10437
10426
  get legendPositionField(): UntypedFormControl;
10438
- submit: EventEmitter<PrintOptions>;
10427
+ readonly submit: i0.OutputEmitterRef<PrintOptions>;
10439
10428
  maxLength: number;
10440
10429
  constructor();
10441
10430
  ngOnInit(): void;
@@ -10443,7 +10432,7 @@ declare class PrintFormComponent implements OnInit {
10443
10432
  toggleImageSaveProp(): void;
10444
10433
  changeCommentLength(): void;
10445
10434
  static ɵfac: i0.ɵɵFactoryDeclaration<PrintFormComponent, never>;
10446
- static ɵcmp: i0.ɵɵComponentDeclaration<PrintFormComponent, "igo-print-form", never, { "disabled$": { "alias": "disabled$"; "required": false; }; "imageFormat": { "alias": "imageFormat"; "required": false; }; "outputFormat": { "alias": "outputFormat"; "required": false; }; "paperFormat": { "alias": "paperFormat"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "resolution": { "alias": "resolution"; "required": false; }; "legendPosition": { "alias": "legendPosition"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "comment": { "alias": "comment"; "required": false; }; "showProjection": { "alias": "showProjection"; "required": false; }; "showScale": { "alias": "showScale"; "required": false; }; "showLegend": { "alias": "showLegend"; "required": false; }; "doZipFile": { "alias": "doZipFile"; "required": false; }; "showNorth": { "alias": "showNorth"; "required": false; }; }, { "submit": "submit"; }, never, never, true, never>;
10435
+ static ɵcmp: i0.ɵɵComponentDeclaration<PrintFormComponent, "igo-print-form", never, { "disabled$": { "alias": "disabled$"; "required": false; "isSignal": true; }; "imageFormat": { "alias": "imageFormat"; "required": false; }; "outputFormat": { "alias": "outputFormat"; "required": false; }; "paperFormat": { "alias": "paperFormat"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "resolution": { "alias": "resolution"; "required": false; }; "legendPosition": { "alias": "legendPosition"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "comment": { "alias": "comment"; "required": false; }; "showProjection": { "alias": "showProjection"; "required": false; }; "showScale": { "alias": "showScale"; "required": false; }; "showLegend": { "alias": "showLegend"; "required": false; }; "doZipFile": { "alias": "doZipFile"; "required": false; }; "showNorth": { "alias": "showNorth"; "required": false; }; }, { "submit": "submit"; }, never, never, true, never>;
10447
10436
  }
10448
10437
 
10449
10438
  /**
@@ -11093,7 +11082,7 @@ declare class ExportService {
11093
11082
  private getFeaturesFromMap;
11094
11083
  private getFeaturesFromWorkspace;
11095
11084
  getFeatures(map: IgoMap, layer: Layer, data: ExportOptions, store: WorkspaceStore): Observable<OlFeature[]>;
11096
- getWorkspaceByLayerId(id: string, store: WorkspaceStore): Workspace;
11085
+ getWorkspaceByLayerId(id: LayerId, store: WorkspaceStore): Workspace;
11097
11086
  getGeomTypes(features: OlFeature[], format?: AnyExportFormat): GeometryCollection[];
11098
11087
  static ɵfac: i0.ɵɵFactoryDeclaration<ExportService, never>;
11099
11088
  static ɵprov: i0.ɵɵInjectableDeclaration<ExportService>;
@@ -11857,15 +11846,15 @@ declare class WorkspaceUpdatorDirective implements OnInit, OnDestroy {
11857
11846
  private featureWorkspaceService;
11858
11847
  private layers$$;
11859
11848
  private entities$$;
11860
- map: IgoMap;
11861
- workspaceStore: WorkspaceStore;
11849
+ readonly map: i0.InputSignal<IgoMap>;
11850
+ readonly workspaceStore: i0.InputSignal<WorkspaceStore>;
11862
11851
  ngOnInit(): void;
11863
11852
  ngOnDestroy(): void;
11864
11853
  private onLayersChange;
11865
11854
  private getOrCreateWorkspace;
11866
11855
  private layerIsEditable;
11867
11856
  static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceUpdatorDirective, never>;
11868
- static ɵdir: i0.ɵɵDirectiveDeclaration<WorkspaceUpdatorDirective, "[igoWorkspaceUpdator]", never, { "map": { "alias": "map"; "required": false; }; "workspaceStore": { "alias": "workspaceStore"; "required": false; }; }, {}, never, never, true, never>;
11857
+ static ɵdir: i0.ɵɵDirectiveDeclaration<WorkspaceUpdatorDirective, "[igoWorkspaceUpdator]", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "workspaceStore": { "alias": "workspaceStore"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
11869
11858
  }
11870
11859
 
11871
11860
  /**
@@ -11892,5 +11881,5 @@ declare function provideInteractiveSelectionFormWidget(): {
11892
11881
  deps: (typeof WidgetService)[];
11893
11882
  };
11894
11883
 
11895
- export { AddCatalogDialogComponent, ArcGISRestCapabilitiesLayerTypes, ArcGISRestDataSource, BaseLayersSwitcherComponent, CATALOG_DIRECTIVES, CATALOG_LIBRARY_DIRECTIVES, CadastreSearchSource, CapabilitiesService, CartoDataSource, Catalog, CatalogBrowserComponent, CatalogItemType, CatalogLibraryComponent, CatalogService, ClusterDataSource, ConfigFileToGeoDBService, ConfirmationPopupComponent, CoordinatesReverseSearchSource, CoordinatesReverseSearchSourceFactory, CoordinatesSearchResultFormatter, CoordinatesUnit, CsvSeparator, DDtoDMS, DataService, DataSource, DataSourceService, DirectionRelativePositionType, DirectionSourceKind, DirectionsButtonsComponent, DirectionsComponent, DirectionsFormat, DirectionsInputsComponent, DirectionsResultsComponent, DirectionsService, DirectionsSource, DirectionsType, DownloadButtonComponent, DownloadService, DrawComponent, DrawControl, DrawIconService, DrawStyleService, DropGeoFileDirective, EditionWorkspace, EditionWorkspaceService, EsriStyleGenerator, EventRefresh, ExportButtonComponent, ExportError, ExportFormat, ExportFormatLegacy, ExportInvalidFileError, ExportNothingToExportError, ExportService, FEATURE, FEATURE_DETAILS_DIRECTIVES, FEATURE_DIRECTIVES, FILTER_DIRECTIVES, FeatureDataSource, FeatureDetailsComponent, FeatureDetailsDirective, FeatureFormComponent, FeatureMotion, FeatureStore, FeatureStoreInMapExtentStrategy, FeatureStoreInMapResolutionStrategy, FeatureStoreLoadingLayerStrategy, FeatureStoreLoadingStrategy, FeatureStoreSearchIndexStrategy, FeatureStoreSelectionStrategy, FeatureWorkspace, FeatureWorkspaceService, FilterableDataSourcePipe, GEOMETRY_FORM_FIELD_DIRECTIVES, GeoDB, GeoNetworkService, GeoPropertiesStrategy, GeolocateButtonComponent, GeolocationOverlayType, GeometryFormFieldComponent, GeometryFormFieldInputComponent, GeometrySliceError, GeometrySliceLineStringError, GeometrySliceMultiPolygonError, GeometrySliceTooManyIntersectionError, GeometryType, GoogleLinks, HomeExtentButtonComponent, HoverFeatureDirective, IChercheReverseSearchSource, IChercheSearchResultFormatter, IChercheSearchSource, ID_GROUP_PREFIX, ILayerSearchResultFormatter, ILayerSearchSource, IMPORT_EXPORT_DIRECTIVES, IgoCatalogBrowserModule, IgoCatalogLibraryModule, IgoCatalogModule, IgoConfirmationPopupModule, IgoDirectionsModule, IgoDownloadModule, IgoDrawModule, IgoDrawingToolModule, IgoFeatureDetailsModule, IgoFeatureFormModule, IgoFeatureModule, IgoFilterModule, IgoGeoModule, IgoGeoWorkspaceModule, IgoGeometryFormFieldModule, IgoGeometryModule, IgoHttpParameterCodec, IgoImportExportModule, IgoLayerModule, IgoMap, IgoMapModule, IgoMeasureModule, IgoMeasurerModule, IgoMetadataModule, IgoOgcFilterModule, IgoPrintModule, IgoQueryModule, IgoSearchBarModule, IgoSearchModule, IgoSearchResultsModule, IgoSearchSelectorModule, IgoSearchSettingsModule, IgoStyleListModule, IgoStyleModule, IgoToastModule, IgoWktModule, IgoWorkspaceSelectorModule, IgoWorkspaceUpdatorModule, ImageArcGISRestDataSource, ImageLayer, ImageWatcher, ImportError, ImportExportComponent, ImportInvalidFileError, ImportNothingToImportError, ImportOgreServerError, ImportSRSError, ImportService, ImportSizeError, ImportUnreadableFileError, InfoSectionComponent, InsertSourceInsertDBEnum, InteractiveSelectionFormWidget, LAYER, LAYER_DIRECTIVES, LabelType, LaneType, Layer, LayerBase, LayerController, LayerDB, LayerGroup, LayerGroupBase, LayerGroupComponent, LayerItemComponent, LayerLegendComponent, LayerLegendItemComponent, LayerLegendListBindingDirective, LayerLegendListComponent, LayerListComponent, LayerListControlsEnum, LayerListToolComponent, LayerListToolService, LayerSearchComponent, LayerService, LayerUnavailableComponent, LayerUnavailableListComponent, LayerViewerBottomActionsComponent, LayerViewerComponent, LayerVisibilityButtonComponent, Linked, LinkedProperties, MAP_DIRECTIVES, MEASURER_DIRECTIVES, MEASURE_UNIT_AUTO, METADATA_DIRECTIVES, MVTDataSource, ManeuverModifier, ManeuverType, MapBase, MapBrowserComponent, MapCenterComponent, MapController, MapGeolocationController, MapOfflineDirective, MapService, MapViewAction, MapViewController, MeasureAreaUnit, MeasureAreaUnitAbbreviation, MeasureFormatPipe, MeasureLengthUnit, MeasureLengthUnitAbbreviation, MeasureType, MeasurerComponent, MenuButtonComponent, MetadataAbstractComponent, MetadataButtonComponent, MetadataService, MiniBaseMapComponent, ModifyControl, NominatimSearchSource, OGCFilterService, OSMDataSource, OfflineButtonComponent, OgcFilterButtonComponent, OgcFilterComponent, OgcFilterFormComponent, OgcFilterOperator, OgcFilterOperatorType, OgcFilterSelectionComponent, OgcFilterTimeComponent, OgcFilterTimeSliderComponent, OgcFilterWidget, OgcFilterWriter, OgcFilterableFormComponent, OgcFilterableItemComponent, OgcFilterableListBindingDirective, OgcFilterableListComponent, OgcSelectorFields, OlDragSelectInteraction, OptionsApiService, OptionsService, OsmLinks, OsrmDirectionsSource, Overlay, OverlayAction, PointerPositionDirective, PrintComponent, PrintFormComponent, PrintLegendPosition, PrintOrientation, PrintOutputFormat, PrintPaperFormat, PrintResolution, PrintSaveImageFormat, PrintService, ProjectionService, PropertyTypeDetectorService, ProposalType, QueryDirective, QueryFormat, QueryFormatMimeType, QueryHtmlTarget, QuerySearchSource, QueryService, ResponseType, RotationButtonComponent, RoutesFeatureStore, SEARCH_DIRECTIVES, SEARCH_RESULTS_DIRECTIVES, SEARCH_TYPES, STYLELIST_OPTIONS, SearchBarComponent, SearchPointerSummaryDirective, SearchResultAddButtonComponent, SearchResultMode, SearchResultsComponent, SearchSelectorComponent, SearchService, SearchSettingsComponent, SearchSource, SearchSourceKind, SearchSourceService, SliceControl, SourceDirectionsType, SpatialFilterItemComponent, SpatialFilterItemType, SpatialFilterListComponent, SpatialFilterQueryType, SpatialFilterService, SpatialFilterType, SpatialFilterTypeComponent, StepsFeatureStore, StopsFeatureStore, StopsStore, StoredQueriesReverseSearchSource, StoredQueriesSearchSource, StyleListService, StyleModalDrawingComponent, StyleModalLayerButtonComponent, StyleModalLayerComponent, StyleService, SwipeControlComponent, TileArcGISRestDataSource, TileDebugDataSource, TileLayer, TileWatcher, TimeFilterButtonComponent, TimeFilterFormComponent, TimeFilterItemComponent, TimeFilterListBindingDirective, TimeFilterListComponent, TimeFilterService, TimeFilterStyle, TimeFilterType, ToastComponent, TooltipType, TrackFeatureButtonComponent, TypeCapabilities, TypeCatalog, VectorLayer, VectorTileLayer, VectorWatcher, WFSDataSource, WFSService, WMSDataSource, WMTSDataSource, WakeLockButtonComponent, WebSocketDataSource, WfsWorkspace, WfsWorkspaceService, WktService, WorkspaceSearchSource, WorkspaceSelectorDirective, WorkspaceUpdatorDirective, XYZDataSource, ZoomButtonComponent, addLayerAndFeaturesStyledToMap, addLayerAndFeaturesToMap, addLinearRingToOlPolygon, addOrRemoveLayer, addRouteToRoutesFeatureStore, addStopToStopsFeatureStore, addStopToStore, bufferOlGeometry, buildUrl, cadastreSearchSourceFactory, checkWfsParams, clearOlGeometryMidpoints, computeBestAreaUnit, computeBestLengthUnit, computeLayerTitleFromFile, computeMVTOptionsOnHover, computeOlFeatureExtent, computeOlFeaturesDiff, computeOlFeaturesExtent, computeProjectionsConstraints, computeRelativePosition, computeStopsPosition, computeTermSimilarity, convertDDToDMS, createDefaultTileGrid, createDrawHoleInteractionStyle, createDrawInteractionStyle, createFilterInMapExtentOrResolutionStrategy, createInteractionStyle, createMeasureInteractionStyle, createMeasureLayerStyle, createOlTooltipAtPoint, createOlTooltipDrawAtPoint, createOverlayDefaultStyle, createOverlayLayer, createOverlayLayerStyle, createOverlayMarkerStyle, createTableTemplate, ctrlKeyDown, defaultCoordinatesSearchResultFormatterFactory, defaultEpsg, defaultFieldNameGeometry, defaultIChercheSearchResultFormatterFactory, defaultMaxFeatures, defaultWfsVersion, detectFileEPSG, directionsStyle, doesOlGeometryIntersects, entitiesToRowData, exportToCSV, featureFromOl, featureRandomStyle, featureRandomStyleFunction, featureToOl, featureToSearchResult, featuresAreOutOfView, featuresAreTooDeepInView, findDiff, findLayerByLinkId, findParentId, formatDistance, formatDuration, formatMeasure, formatScale, formatStep, formatWFSQueryString, generateArcgisRestIdFromSourceOptions, generateFeatureIdFromSourceOptions, generateId, generateIdFromSourceOptions, generateWMSIdFromSourceOptions, generateWMTSIdFromSourceOptions, generateWfsIdFromSourceOptions, generateXYZIdFromSourceOptions, getAllChildLayersByDeletion, getAllChildLayersByProperty, getCommonVectorSelectedStyle, getCommonVectorStyle, getFileExtension, getFormatFromOptions, getGeoServiceAction, getLayerOptionIdentifier, getLayersByDeletion, getLayersLegends, getLinkedLayersOptions, getMousePositionFromOlGeometryEvent, getOlTooltipAtCenter, getOlTooltipsAtMidpoints, getResolutionFromScale, getRootParentByDeletion, getRootParentByProperty, getRowsInMapExtent, getSaveableOgcParams, getScaleFromResolution, getSelectedOnly, getTooltipsOfOlGeometry, gmlRegex, handleFileExportError, handleFileExportSuccess, handleFileImportError, handleFileImportSuccess, handleInvalidFileImportError, handleLayerPropertyChange, handleNothingToExportError, handleNothingToImportError, handleOgreServerImportError, handleSRSImportError, handleSizeFileImportError, handleUnreadbleFileImportError, hideOlFeature, hoverFeatureMarkerStyle, ichercheReverseSearchSourceFactory, ichercheSearchSourceFactory, ilayerSearchResultFormatterFactory, ilayerSearchSourceFactory, initRoutesFeatureStore, initStepsFeatureStore, initStopsFeatureStore, interactiveSelectionFormWidgetFactory, isBaseLayer, isBaseLayerLinked, isCsvExport, isLayerGroup, isLayerGroupOptions, isLayerItem, isLayerItemOptions, isLayerLinked, isLayerLinkedOptions, isLayerLinkedTogether, isLinkMaster, isSaveableLayer, jsonRegex, layerFeatureIsQueryable, layerIsQueryable, lonLatConversion, mapExtentStrategyActiveToolTip, measureOlGeometry, measureOlGeometryArea, measureOlGeometryLength, mergeLayersOptions, metersToFeet, metersToKilometers, metersToMiles, metersToUnit, moveToOlFeatures, mtmZoneFromLonLat, noElementSelected, nominatimSearchSourceFactory, ogcFilterWidgetFactory, olLayerFeatureIsQueryable, olLayerIsQueryable, olStyleToBasicIgoStyle, optionsApiFactory, osrmDirectionsSourcesFactory, pointerPositionSummaryMarkerStyle, provideCadastreSearchSource, provideCoordinatesReverseSearchSource, provideDefaultCoordinatesSearchResultFormatter, provideDefaultIChercheSearchResultFormatter, provideDirection, provideIChercheReverseSearchSource, provideIChercheSearchSource, provideILayerSearchResultFormatter, provideILayerSearchSource, provideInteractiveSelectionFormWidget, provideNominatimSearchSource, provideOffline, provideOgcFilterWidget, provideOptionsApi, provideOsrmDirectionsSource, provideQuerySearchSource, provideSearch, provideSearchSourceService, provideStoredQueriesReverseSearchSource, provideStoredQueriesSearchSource, provideStyleListLoader, provideStyleListOptions, provideWorkspaceSearchSource, querySearchSourceFactory, removeStopFromStore, renderFeatureFromOl, roundCoordTo, roundCoordToString, scaleExtent, searchSourceServiceFactory, setRowsInMapExtent, setSelectedOnly, sliceOlGeometry, sliceOlPolygon, sortLayersByZindex, sourceCanReverseSearch, sourceCanReverseSearchAsSummary, sourceCanSearch, squareMetersToAcres, squareMetersToHectares, squareMetersToSquareFeet, squareMetersToSquareKilometers, squareMetersToSquareMiles, squareMetersToUnit, standardizeUrl, storedqueriesReverseSearchSourceFactory, storedqueriesSearchSourceFactory, stringToLonLat, translateManeuverBearing, translateManeuverModifier, tryAddLoadingStrategy, tryAddSelectionStrategy, tryBindStoreLayer, updateOlGeometryCenter, updateOlGeometryMidpoints, updateOlTooltipAtCenter, updateOlTooltipDrawAtCenter, updateOlTooltipsAtMidpoints, updateOlTooltipsDrawAtMidpoints, updateStoreSorting, utmZoneFromLonLat, viewStatesAreEqual, withCadastreSource, withCoordinatesReverseSource, withIChercheReverseSource, withIChercheSource, withILayerSource, withNominatimSource, withOsrmSource, withStoredQueriesReverseSource, withStoredQueriesSource, withWorkspaceSource, workspaceSearchSourceFactory, zoneMtm, zoneUtm };
11896
- export type { AddedChangeEmitter, AddedChangeGroupEmitter, AnyBaseOgcFilterOptions, AnyDataSource, AnyDataSourceOptions, AnyDataSourceOptionsWithParams, AnyEventName, AnyExportFormat, AnyLayer, AnyLayerBase, AnyLayerItemOptions, AnyLayerOptions, AnyPropertyOptions, AnyWorkspace, ArcGISRestCapabilitiesLayer, ArcGISRestDataSourceOptions, ArcGISRestDataSourceOptionsParams, ArcGISRestImageDataSourceOptions, BaseDirectionsSourceOptionsProfile, BaseDirectionsSourceOptionsProfileAuthorization, Buffer, CartoDataSourceOptions, CatalogItem, CatalogItemGroup, CatalogItemLayer, CatalogItemState, CatalogQueryFormatTypes, CatalogServiceOptions, ClusterDataSourceOptions, ClusterParam, ClusterRange, CollectCatalogItemsFn, CommonVectorStyleOptions, CoordinatesData, CoordinatesResponse, CoordinatesReverseData, CoordinatesReverseResponse, CreateStyle, DataSourceOptions, DatasToIDB, DatasourceEvent, DialogData, DirectionOptions, DirectionSourceFeature, Directions, DirectionsGeometry, DirectionsSourceOptions, DownloadDataSourceOptions, DownloadOptions, Draw, DrawControlOptions, DrawOptions, DrawingMatDialogData, DrawingStyle, EditionOptions, EditionWorkspaceOptions, EnvironmentOptions, ExportOgreFormat, ExportOptions, Feature, FeatureCommonVectorStyleOptions, FeatureDataSourceOptions, FeatureFormSubmitEvent, FeatureGeometry, FeatureMeta, FeatureStoreDrawStrategyOptions, FeatureStoreInMapExtentStrategyOptions, FeatureStoreInMapResolutionStrategyOptions, FeatureStoreLoadingLayerStrategyOptions, FeatureStoreLoadingStrategyOptions, FeatureStoreMeasureStrategyOptions, FeatureStoreOptions, FeatureStorePropertyTypeStrategyOptions, FeatureStoreSearchIndexStrategyOptions, FeatureStoreSelectionStrategyOptions, FeatureStoreStrategyOptions, FeatureWithDirections, FeatureWithDirectionsProperties, FeatureWithDraw, FeatureWithDrawProperties, FeatureWithMeasure, FeatureWithMeasureProperties, FeatureWithStep, FeatureWithStepProperties, FeatureWithStop, FeatureWithStopProperties, FeatureWorkspaceOptions, ForcedProperty, FormattedStep, GeoDBData, GeoDataToIDB, GeoJSONGeometry, GeoServiceDefinition, GeoWorkspaceOptions, GeoWorkspaceQueryOptions, GeolocationBuffer, GeolocationOptions, GeometryCollection, GeometryFormFieldInputs, HomeExtentButtonOptions, ICatalog, IChercheData, IChercheResponse, IChercheReverseData, IChercheReverseResponse, ICompositeCatalog, ILayerData, ILayerDataHighlight, ILayerDataSource, ILayerItemResponse, ILayerSearchSourceOptions, ILayerServiceResponse, IOfflineOptions, IOgcFiltersOptionSaveable, IOgcInterfaceFilterOptions, ISearchSourceParams, IdbInfo, IgoDomSelector, IgoLabel, IgoLogicalArrayOptions, IgoOgcFilterObject, IgoOgcSelector, IgoStep, IgoStyle, IgoStyleBase, ImageLayerOptions, ImportExportServiceOptions, InputProjections, ItemStyleOptions, LayerConfig, LayerDBData, LayerGroupOptions, LayerListControlsOptions, LayerMatDialogData, LayerOptions, LayerOptionsBase, LayerSecurityOptions, LayerToolMode, LayerType, LayerViewerOptions, LayersLink, LayersLinkProperties, Legend, LegendMapViewOptions, LegendOptions, MVTDataSourceOptions, MapAttributionOptions, MapControlsOptions, MapExtent, MapGeolocationControllerOptions, MapGeolocationState, MapOptions, MapScaleLineOptions, MapViewControllerOptions, MapViewOptions, MapViewState, MapboxStyle, Measure, MeasurerDialogData, MetadataLayerOptions, MetadataOptions, ModifyControlOptions, NominatimData, OSMDataSourceOptions, OgcAutocomplete, OgcCheckbox, OgcFilter, OgcFilterAttributeOptions, OgcFilterConditionsArrayOptions, OgcFilterDuringOptions, OgcFilterEqualToOptions, OgcFilterGreaterLessOptions, OgcFilterIsBetweenOptions, OgcFilterIsLikeOptions, OgcFilterIsNullOptions, OgcFilterSpatialOptions, OgcFilterableDataSource, OgcFilterableDataSourceOptions, OgcFiltersOptions, OgcInterfaceFilterOptions, OgcPushButton, OgcRadioButton, OgcSelect, OgcSelectorBundle, OptionsApiOptions, OsrmDirectionsSourceOptions, OsrmIntersection, OsrmLane, OsrmRouteLeg, OsrmRouteStep, OsrmStepManeuver, OsrmWaypoint, OutputLayerLegend, OverlayStyleOptions, PreloadOptions, PrintOptions, Projection, ProjectionsLimitationsOptions, QueryOptions, QueryUrlData, QueryableDataSource, QueryableDataSourceOptions, RelationOptions, Research, ReverseSearch, ReverseSearchOptions, SearchMeta, SearchResult, SearchSourceFeature, SearchSourceOptions, SearchSourceSettings, SelectorGroup, SettingOptions, SimpleGetOptions, SliceControlOptions, SliderOptionsInterface, SourceFieldsOptionsParams, SourceFieldsValidationParams, SourceProposal, SpatialFilterOptions, SpatialFilterThematic, Stop, StoreAndDrawControl, StoredQueriesData, StoredQueriesFields, StoredQueriesResponse, StoredQueriesReverseData, StoredQueriesReverseResponse, StoredQueriesReverseSearchSourceOptions, StoredQueriesSearchSourceOptions, StyleByAttribute, StyleListOptions, StyleModalData, TextPdfSizeAndMargin, TextSearch, TextSearchOptions, TileArcGISRestDataSourceOptions, TileDebugDataSourceOptions, TileGridOptions, TileLayerOptions, TimeFilterOptions, TimeFilterableDataSource, TimeFilterableDataSourceOptions, TooltipContent, TypeCapabilitiesStrings, TypeCatalogStrings, VectorAnimation, VectorLayerOptions, VectorTileLayerOptions, WFSDataSourceOptions, WFSDataSourceOptionsParams, WFSWriteGetFeatureOptions, WMSDataSourceOptions, WMSDataSourceOptionsParams, WMTSDataSourceOptions, WebSocketDataSourceOptions, WfsWorkspaceOptions, WorkspaceData, XYZDataSourceOptions, ZindexPropertyOptions, searchIndexOptions };
11884
+ export { AddCatalogDialogComponent, ArcGISRestCapabilitiesLayerTypes, ArcGISRestDataSource, BaseLayersSwitcherComponent, CATALOG_DIRECTIVES, CATALOG_LIBRARY_DIRECTIVES, CadastreSearchSource, CapabilitiesService, CartoDataSource, Catalog, CatalogBrowserComponent, CatalogItemType, CatalogLibraryComponent, CatalogService, ClusterDataSource, ConfigFileToGeoDBService, ConfirmationPopupComponent, CoordinatesReverseSearchSource, CoordinatesReverseSearchSourceFactory, CoordinatesSearchResultFormatter, CoordinatesUnit, CsvSeparator, DDtoDMS, DataService, DataSource, DataSourceService, DirectionRelativePositionType, DirectionSourceKind, DirectionsButtonsComponent, DirectionsComponent, DirectionsFormat, DirectionsInputsComponent, DirectionsResultsComponent, DirectionsService, DirectionsSource, DirectionsType, DownloadButtonComponent, DownloadService, DrawComponent, DrawControl, DrawIconService, DrawStyleService, DropGeoFileDirective, EditionWorkspace, EditionWorkspaceService, EsriStyleGenerator, EventRefresh, ExportButtonComponent, ExportError, ExportFormat, ExportFormatLegacy, ExportInvalidFileError, ExportNothingToExportError, ExportService, FEATURE, FEATURE_DETAILS_DIRECTIVES, FEATURE_DIRECTIVES, FILTER_DIRECTIVES, FeatureDataSource, FeatureDetailsComponent, FeatureDetailsDirective, FeatureFormComponent, FeatureMotion, FeatureStore, FeatureStoreInMapExtentStrategy, FeatureStoreInMapResolutionStrategy, FeatureStoreLoadingLayerStrategy, FeatureStoreLoadingStrategy, FeatureStoreSearchIndexStrategy, FeatureStoreSelectionStrategy, FeatureWorkspace, FeatureWorkspaceService, FilterableDataSourcePipe, GEOMETRY_FORM_FIELD_DIRECTIVES, GeoDB, GeoNetworkService, GeoPropertiesStrategy, GeolocateButtonComponent, GeolocationOverlayType, GeometryFormFieldComponent, GeometryFormFieldInputComponent, GeometrySliceError, GeometrySliceLineStringError, GeometrySliceMultiPolygonError, GeometrySliceTooManyIntersectionError, GeometryType, GoogleLinks, HomeExtentButtonComponent, HoverFeatureDirective, IChercheReverseSearchSource, IChercheSearchResultFormatter, IChercheSearchSource, ID_GROUP_PREFIX, ILayerSearchResultFormatter, ILayerSearchSource, IMPORT_EXPORT_DIRECTIVES, IgoCatalogBrowserModule, IgoCatalogLibraryModule, IgoCatalogModule, IgoConfirmationPopupModule, IgoDirectionsModule, IgoDownloadModule, IgoDrawModule, IgoDrawingToolModule, IgoFeatureDetailsModule, IgoFeatureFormModule, IgoFeatureModule, IgoFilterModule, IgoGeoModule, IgoGeoWorkspaceModule, IgoGeometryFormFieldModule, IgoGeometryModule, IgoHttpParameterCodec, IgoImportExportModule, IgoLayerModule, IgoMap, IgoMapModule, IgoMeasureModule, IgoMeasurerModule, IgoMetadataModule, IgoOgcFilterModule, IgoPrintModule, IgoQueryModule, IgoSearchBarModule, IgoSearchModule, IgoSearchResultsModule, IgoSearchSelectorModule, IgoSearchSettingsModule, IgoStyleListModule, IgoStyleModule, IgoToastModule, IgoWktModule, IgoWorkspaceSelectorModule, IgoWorkspaceUpdatorModule, ImageArcGISRestDataSource, ImageLayer, ImageWatcher, ImportError, ImportExportComponent, ImportInvalidFileError, ImportNothingToImportError, ImportOgreServerError, ImportSRSError, ImportService, ImportSizeError, ImportUnreadableFileError, InfoSectionComponent, InsertSourceInsertDBEnum, InteractiveSelectionFormWidget, LAYER, LAYER_DIRECTIVES, LabelType, LaneType, Layer, LayerBase, LayerController, LayerDB, LayerGroup, LayerGroupBase, LayerGroupComponent, LayerItemComponent, LayerLegendComponent, LayerLegendItemComponent, LayerLegendListBindingDirective, LayerLegendListComponent, LayerListComponent, LayerListControlsEnum, LayerListToolComponent, LayerListToolService, LayerSearchComponent, LayerService, LayerUnavailableComponent, LayerUnavailableListComponent, LayerViewerBottomActionsComponent, LayerViewerComponent, LayerVisibilityButtonComponent, Linked, LinkedProperties, MAP_DIRECTIVES, MEASURER_DIRECTIVES, MEASURE_UNIT_AUTO, METADATA_DIRECTIVES, MVTDataSource, ManeuverModifier, ManeuverType, MapBase, MapBrowserComponent, MapCenterComponent, MapController, MapGeolocationController, MapOfflineDirective, MapService, MapViewAction, MapViewController, MeasureAreaUnit, MeasureAreaUnitAbbreviation, MeasureFormatPipe, MeasureLengthUnit, MeasureLengthUnitAbbreviation, MeasureType, MeasurerComponent, MenuButtonComponent, MetadataAbstractComponent, MetadataButtonComponent, MetadataService, MiniBaseMapComponent, ModifyControl, NominatimSearchSource, OGCFilterService, OSMDataSource, OfflineButtonComponent, OgcFilterButtonComponent, OgcFilterComponent, OgcFilterFormComponent, OgcFilterOperator, OgcFilterOperatorType, OgcFilterSelectionComponent, OgcFilterTimeComponent, OgcFilterTimeSliderComponent, OgcFilterWidget, OgcFilterWriter, OgcFilterableFormComponent, OgcFilterableItemComponent, OgcFilterableListBindingDirective, OgcFilterableListComponent, OgcSelectorFields, OlDragSelectInteraction, OptionsApiService, OptionsService, OsmLinks, OsrmDirectionsSource, Overlay, OverlayAction, PointerPositionDirective, PrintComponent, PrintFormComponent, PrintLegendPosition, PrintOrientation, PrintOutputFormat, PrintPaperFormat, PrintResolution, PrintSaveImageFormat, PrintService, ProjectionService, PropertyTypeDetectorService, ProposalType, QueryDirective, QueryFormat, QueryFormatMimeType, QueryHtmlTarget, QuerySearchSource, QueryService, RADIUS_NAME, ResponseType, RotationButtonComponent, RoutesFeatureStore, SEARCH_DIRECTIVES, SEARCH_RESULTS_DIRECTIVES, SEARCH_TYPES, STYLELIST_OPTIONS, SearchBarComponent, SearchPointerSummaryDirective, SearchResultAddButtonComponent, SearchResultMode, SearchResultsComponent, SearchSelectorComponent, SearchService, SearchSettingsComponent, SearchSource, SearchSourceKind, SearchSourceService, SliceControl, SourceDirectionsType, SpatialFilterItemComponent, SpatialFilterItemType, SpatialFilterListComponent, SpatialFilterQueryType, SpatialFilterService, SpatialFilterType, SpatialFilterTypeComponent, StepsFeatureStore, StopsFeatureStore, StopsStore, StoredQueriesReverseSearchSource, StoredQueriesSearchSource, StyleListService, StyleModalDrawingComponent, StyleModalLayerButtonComponent, StyleModalLayerComponent, StyleService, SwipeControlComponent, TileArcGISRestDataSource, TileDebugDataSource, TileLayer, TileWatcher, TimeFilterButtonComponent, TimeFilterFormComponent, TimeFilterItemComponent, TimeFilterListBindingDirective, TimeFilterListComponent, TimeFilterService, TimeFilterStyle, TimeFilterType, ToastComponent, TooltipType, TrackFeatureButtonComponent, TypeCapabilities, TypeCatalog, VectorLayer, VectorTileLayer, VectorWatcher, WFSDataSource, WFSService, WMSDataSource, WMTSDataSource, WakeLockButtonComponent, WebSocketDataSource, WfsWorkspace, WfsWorkspaceService, WktService, WorkspaceSearchSource, WorkspaceSelectorDirective, WorkspaceUpdatorDirective, XYZDataSource, ZoomButtonComponent, addLayerAndFeaturesStyledToMap, addLayerAndFeaturesToMap, addLinearRingToOlPolygon, addOrRemoveLayer, addRouteToRoutesFeatureStore, addStopToStopsFeatureStore, addStopToStore, bufferOlGeometry, buildUrl, cadastreSearchSourceFactory, checkWfsParams, clearOlGeometryMidpoints, computeBestAreaUnit, computeBestLengthUnit, computeLayerTitleFromFile, computeMVTOptionsOnHover, computeOlFeatureExtent, computeOlFeaturesDiff, computeOlFeaturesExtent, computeProjectionsConstraints, computeRelativePosition, computeStopsPosition, computeTermSimilarity, convertDDToDMS, createDefaultTileGrid, createDrawHoleInteractionStyle, createDrawInteractionStyle, createFilterInMapExtentOrResolutionStrategy, createInteractionStyle, createMeasureInteractionStyle, createMeasureLayerStyle, createOlTooltipAtPoint, createOlTooltipDrawAtPoint, createOverlayDefaultStyle, createOverlayLayer, createOverlayLayerStyle, createOverlayMarkerStyle, createTableTemplate, ctrlKeyDown, defaultCoordinatesSearchResultFormatterFactory, defaultEpsg, defaultFieldNameGeometry, defaultIChercheSearchResultFormatterFactory, defaultMaxFeatures, defaultWfsVersion, detectFileEPSG, directionsStyle, doesOlGeometryIntersects, entitiesToRowData, exportToCSV, featureFromOl, featureRandomStyle, featureRandomStyleFunction, featureToOl, featureToSearchResult, featuresAreOutOfView, featuresAreTooDeepInView, findDiff, findLayerByLinkId, findParentId, formatDistance, formatDuration, formatMeasure, formatScale, formatStep, formatWFSQueryString, generateArcgisRestIdFromSourceOptions, generateFeatureIdFromSourceOptions, generateId, generateIdFromSourceOptions, generateWMSIdFromSourceOptions, generateWMTSIdFromSourceOptions, generateWfsIdFromSourceOptions, generateXYZIdFromSourceOptions, getAllChildLayersByDeletion, getAllChildLayersByProperty, getCommonVectorSelectedStyle, getCommonVectorStyle, getFileExtension, getFormatFromOptions, getGeoServiceAction, getLayerOptionIdentifier, getLayersByDeletion, getLayersLegends, getLinkedLayersOptions, getMousePositionFromOlGeometryEvent, getOlTooltipAtCenter, getOlTooltipsAtMidpoints, getResolutionFromScale, getRootParentByDeletion, getRootParentByProperty, getRowsInMapExtent, getSaveableOgcParams, getScaleFromResolution, getSelectedOnly, getTooltipsOfOlGeometry, gmlRegex, handleFileExportError, handleFileExportSuccess, handleFileImportError, handleFileImportSuccess, handleInvalidFileImportError, handleLayerPropertyChange, handleNothingToExportError, handleNothingToImportError, handleOgreServerImportError, handleSRSImportError, handleSizeFileImportError, handleUnreadbleFileImportError, hideOlFeature, hoverFeatureMarkerStyle, ichercheReverseSearchSourceFactory, ichercheSearchSourceFactory, ilayerSearchResultFormatterFactory, ilayerSearchSourceFactory, initRoutesFeatureStore, initStepsFeatureStore, initStopsFeatureStore, interactiveSelectionFormWidgetFactory, isBaseLayer, isBaseLayerLinked, isCsvExport, isLayerGroup, isLayerGroupOptions, isLayerItem, isLayerItemOptions, isLayerLinked, isLayerLinkedOptions, isLayerLinkedTogether, isLinkMaster, isSaveableLayer, jsonRegex, layerFeatureIsQueryable, layerIsQueryable, lonLatConversion, mapExtentStrategyActiveToolTip, measureOlGeometry, measureOlGeometryArea, measureOlGeometryLength, mergeLayersOptions, metersToFeet, metersToKilometers, metersToMiles, metersToUnit, moveToOlFeatures, mtmZoneFromLonLat, noElementSelected, nominatimSearchSourceFactory, ogcFilterWidgetFactory, olLayerFeatureIsQueryable, olLayerIsQueryable, olStyleToBasicIgoStyle, optionsApiFactory, osrmDirectionsSourcesFactory, pointerPositionSummaryMarkerStyle, provideCadastreSearchSource, provideCoordinatesReverseSearchSource, provideDefaultCoordinatesSearchResultFormatter, provideDefaultIChercheSearchResultFormatter, provideDirection, provideIChercheReverseSearchSource, provideIChercheSearchSource, provideILayerSearchResultFormatter, provideILayerSearchSource, provideInteractiveSelectionFormWidget, provideNominatimSearchSource, provideOffline, provideOgcFilterWidget, provideOptionsApi, provideOsrmDirectionsSource, provideQuerySearchSource, provideSearch, provideSearchSourceService, provideStoredQueriesReverseSearchSource, provideStoredQueriesSearchSource, provideStyleListLoader, provideStyleListOptions, provideWorkspaceSearchSource, querySearchSourceFactory, removeStopFromStore, renderFeatureFromOl, roundCoordTo, roundCoordToString, scaleExtent, searchSourceServiceFactory, setRowsInMapExtent, setSelectedOnly, sliceOlGeometry, sliceOlPolygon, sortLayersByZindex, sourceCanReverseSearch, sourceCanReverseSearchAsSummary, sourceCanSearch, squareMetersToAcres, squareMetersToHectares, squareMetersToSquareFeet, squareMetersToSquareKilometers, squareMetersToSquareMiles, squareMetersToUnit, standardizeUrl, storedqueriesReverseSearchSourceFactory, storedqueriesSearchSourceFactory, stringToLonLat, translateManeuverBearing, translateManeuverModifier, tryAddLoadingStrategy, tryAddSelectionStrategy, tryBindStoreLayer, updateOlGeometryCenter, updateOlGeometryMidpoints, updateOlTooltipAtCenter, updateOlTooltipDrawAtCenter, updateOlTooltipsAtMidpoints, updateOlTooltipsDrawAtMidpoints, updateStoreSorting, utmZoneFromLonLat, viewStatesAreEqual, withCadastreSource, withCoordinatesReverseSource, withIChercheReverseSource, withIChercheSource, withILayerSource, withNominatimSource, withOsrmSource, withStoredQueriesReverseSource, withStoredQueriesSource, withWorkspaceSource, workspaceSearchSourceFactory, zoneMtm, zoneUtm };
11885
+ export type { AddedChangeEmitter, AddedChangeGroupEmitter, AnyBaseOgcFilterOptions, AnyDataSource, AnyDataSourceOptions, AnyDataSourceOptionsWithParams, AnyEventName, AnyExportFormat, AnyLayer, AnyLayerBase, AnyLayerItemOptions, AnyLayerOptions, AnyPropertyOptions, AnyWorkspace, ArcGISRestCapabilitiesLayer, ArcGISRestDataSourceOptions, ArcGISRestDataSourceOptionsParams, ArcGISRestImageDataSourceOptions, BaseDirectionsSourceOptionsProfile, BaseDirectionsSourceOptionsProfileAuthorization, Buffer, CartoDataSourceOptions, CatalogItem, CatalogItemGroup, CatalogItemLayer, CatalogItemState, CatalogQueryFormatTypes, CatalogServiceOptions, ClusterDataSourceOptions, ClusterParam, ClusterRange, CollectCatalogItemsFn, CommonVectorStyleOptions, CoordinatesData, CoordinatesResponse, CoordinatesReverseData, CoordinatesReverseResponse, CreateStyle, DataSourceOptions, DatasToIDB, DatasourceEvent, DialogData, DirectionOptions, DirectionSourceFeature, Directions, DirectionsGeometry, DirectionsSourceOptions, DownloadDataSourceOptions, DownloadOptions, Draw, DrawControlOptions, DrawOptions, DrawingMatDialogData, DrawingStyle, EditionOptions, EditionWorkspaceOptions, EnvironmentOptions, ExportOgreFormat, ExportOptions, Feature, FeatureCommonVectorStyleOptions, FeatureDataSourceOptions, FeatureFormSubmitEvent, FeatureGeometry, FeatureMeta, FeatureStoreDrawStrategyOptions, FeatureStoreInMapExtentStrategyOptions, FeatureStoreInMapResolutionStrategyOptions, FeatureStoreLoadingLayerStrategyOptions, FeatureStoreLoadingStrategyOptions, FeatureStoreMeasureStrategyOptions, FeatureStoreOptions, FeatureStorePropertyTypeStrategyOptions, FeatureStoreSearchIndexStrategyOptions, FeatureStoreSelectionStrategyOptions, FeatureStoreStrategyOptions, FeatureWithDirections, FeatureWithDirectionsProperties, FeatureWithDraw, FeatureWithDrawProperties, FeatureWithMeasure, FeatureWithMeasureProperties, FeatureWithStep, FeatureWithStepProperties, FeatureWithStop, FeatureWithStopProperties, FeatureWorkspaceOptions, ForcedProperty, FormattedStep, GeoDBData, GeoDataToIDB, GeoJSONGeometry, GeoServiceDefinition, GeoWorkspaceOptions, GeoWorkspaceQueryOptions, GeolocationBuffer, GeolocationOptions, GeometryCollection, GeometryFormFieldInputs, HomeExtentButtonOptions, ICatalog, IChercheData, IChercheResponse, IChercheReverseData, IChercheReverseResponse, ICompositeCatalog, ILayerData, ILayerDataHighlight, ILayerDataSource, ILayerItemResponse, ILayerSearchSourceOptions, ILayerServiceResponse, IOfflineOptions, IOgcFiltersOptionSaveable, IOgcInterfaceFilterOptions, ISearchSourceParams, IdbInfo, IgoDomSelector, IgoLabel, IgoLogicalArrayOptions, IgoOgcFilterObject, IgoOgcSelector, IgoStep, IgoStyle, IgoStyleBase, ImageLayerOptions, ImportExportServiceOptions, InputProjections, ItemStyleOptions, LayerConfig, LayerDBData, LayerGroupOptions, LayerId, LayerListControlsOptions, LayerMatDialogData, LayerOptions, LayerOptionsBase, LayerSecurityOptions, LayerToolMode, LayerType, LayerViewerOptions, LayersLink, LayersLinkProperties, Legend, LegendMapViewOptions, LegendOptions, MVTDataSourceOptions, MapAttributionOptions, MapControlsOptions, MapExtent, MapGeolocationControllerOptions, MapGeolocationState, MapOptions, MapScaleLineOptions, MapViewControllerOptions, MapViewOptions, MapViewState, MapboxStyle, Measure, MeasurerDialogData, MetadataLayerOptions, MetadataOptions, ModifyControlOptions, NominatimData, OSMDataSourceOptions, OgcAutocomplete, OgcCheckbox, OgcFilter, OgcFilterAttributeOptions, OgcFilterConditionsArrayOptions, OgcFilterDuringOptions, OgcFilterEqualToOptions, OgcFilterGreaterLessOptions, OgcFilterIsBetweenOptions, OgcFilterIsLikeOptions, OgcFilterIsNullOptions, OgcFilterSpatialOptions, OgcFilterableDataSource, OgcFilterableDataSourceOptions, OgcFiltersOptions, OgcInterfaceFilterOptions, OgcPushButton, OgcRadioButton, OgcSelect, OgcSelectorBundle, OptionsApiOptions, OsrmDirectionsSourceOptions, OsrmIntersection, OsrmLane, OsrmRouteLeg, OsrmRouteStep, OsrmStepManeuver, OsrmWaypoint, OutputLayerLegend, OverlayStyleOptions, PreloadOptions, PrintOptions, Projection, ProjectionsLimitationsOptions, QueryOptions, QueryUrlData, QueryableDataSource, QueryableDataSourceOptions, RelationOptions, Research, ReverseSearch, ReverseSearchOptions, SearchMeta, SearchResult, SearchSourceFeature, SearchSourceOptions, SearchSourceSettings, SelectorGroup, SettingOptions, SimpleGetOptions, SliceControlOptions, SliderOptionsInterface, SourceFieldsOptionsParams, SourceFieldsValidationParams, SourceProposal, SpatialFilterOptions, SpatialFilterThematic, Stop, StoreAndDrawControl, StoredQueriesData, StoredQueriesFields, StoredQueriesResponse, StoredQueriesReverseData, StoredQueriesReverseResponse, StoredQueriesReverseSearchSourceOptions, StoredQueriesSearchSourceOptions, StyleByAttribute, StyleListOptions, StyleModalData, TextPdfSizeAndMargin, TextSearch, TextSearchOptions, TileArcGISRestDataSourceOptions, TileDebugDataSourceOptions, TileGridOptions, TileLayerOptions, TimeFilterOptions, TimeFilterableDataSource, TimeFilterableDataSourceOptions, TooltipContent, TypeCapabilitiesStrings, TypeCatalogStrings, VectorAnimation, VectorLayerOptions, VectorTileLayerOptions, WFSDataSourceOptions, WFSDataSourceOptionsParams, WFSWriteGetFeatureOptions, WMSDataSourceOptions, WMSDataSourceOptionsParams, WMTSDataSourceOptions, WebSocketDataSourceOptions, WfsWorkspaceOptions, WorkspaceData, XYZDataSourceOptions, ZindexPropertyOptions, searchIndexOptions };