@igo2/geo 21.0.0-next.4 → 21.0.0-next.6

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.
@@ -11,9 +11,9 @@ import olSource from 'ol/source/Source';
11
11
  import olSourceVector from 'ol/source/Vector';
12
12
  import { Units } from 'ol/control/ScaleLine';
13
13
  import * as _igo2_common_entity from '@igo2/common/entity';
14
- import { BaseEntityTableColumn, EntityStore, EntityKey, EntityStoreOptions, EntityStoreStrategyOptions, EntityStoreStrategy, EntityTableTemplate, EntityTableComponent, EntityTableColumn, EntityState, EntityStoreFilterCustomFuncStrategy, EntityTableColumnRenderer, EntityRecord, EntityTableButton } from '@igo2/common/entity';
14
+ import { BaseEntityTableColumn, EntityStore, EntityKey, EntityStoreOptions, EntityStoreStrategyOptions, EntityStoreStrategy, EntityState, EntityTableTemplate, EntityTableComponent, EntityTableColumn, EntityStoreFilterCustomFuncStrategy, EntityTableColumnRenderer, EntityRecord } from '@igo2/common/entity';
15
15
  import OlGeometry, { Type } from 'ol/geom/Geometry';
16
- import { Preset, Tokenizer, Encoders, Document } from 'flexsearch';
16
+ import { Preset, Tokenizer, Encoders } from 'flexsearch';
17
17
  import { SubjectStatus, Watcher, TimeFrame, resolveDate } from '@igo2/utils';
18
18
  import * as olproj from 'ol/proj';
19
19
  import { ProjectionLike, Projection as Projection$1 } from 'ol/proj';
@@ -63,6 +63,7 @@ import { FloatLabelType, MatFormFieldAppearance } from '@angular/material/form-f
63
63
  import { MatAutocompleteTrigger, MatAutocomplete, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
64
64
  import { MatSelect } from '@angular/material/select';
65
65
  import { MatSlider, MatSliderChange } from '@angular/material/slider';
66
+ import moment from 'moment';
66
67
  import { DatepickerComponent } from '@igo2/common/datepicker';
67
68
  import { TimepickerComponent } from '@igo2/common/timepicker';
68
69
  import { SelectionModel } from '@angular/cdk/collections';
@@ -72,7 +73,7 @@ import * as olStyle from 'ol/style';
72
73
  import { Form, FormComponent, FormFieldInputs } from '@igo2/common/form';
73
74
  import { ThemePalette, MatOption } from '@angular/material/core';
74
75
  import * as i4 from '@angular/material/dialog';
75
- import { MatDialogRef, MatDialog } from '@angular/material/dialog';
76
+ import { MatDialogRef } from '@angular/material/dialog';
76
77
  import { MatSlideToggleChange } from '@angular/material/slide-toggle';
77
78
  import { Workspace, WorkspaceStore, WorkspaceOptions } from '@igo2/common/workspace';
78
79
  import { ITreeConfig, TreeDropEvent, DropPermission, DragAndDropDirective } from '@igo2/common/drag-drop';
@@ -92,6 +93,8 @@ import { LanguageService } from '@igo2/core/language';
92
93
  import { SafeResourceUrl } from '@angular/platform-browser';
93
94
  import { Toolbox } from '@igo2/common/tool';
94
95
  import OlModify from 'ol/interaction/Modify';
96
+ import * as ol_geom from 'ol/geom';
97
+ import { Geometry as Geometry$1 } from 'ol/geom';
95
98
  import olTileGridWMTS from 'ol/tilegrid/WMTS';
96
99
  import OlOverlay from 'ol/Overlay';
97
100
  import OlCircle from 'ol/geom/Circle';
@@ -108,7 +111,6 @@ import * as olformat from 'ol/format';
108
111
  import { ConfirmDialogService } from '@igo2/common/confirm-dialog';
109
112
  import jsPDF from 'jspdf';
110
113
  import JSZip from 'jszip';
111
- import * as olGeom from 'ol/geom';
112
114
  import * as ol_colorlike from 'ol/colorlike';
113
115
  import GeoJSON from 'ol/format/GeoJSON';
114
116
  import WKT from 'ol/format/WKT';
@@ -303,15 +305,15 @@ interface SourceFieldsOptionsParams extends Omit<BaseEntityTableColumn, 'title'>
303
305
  allowedOperatorsType?: OgcFilterOperatorType;
304
306
  step?: number;
305
307
  relation?: RelationOptions;
306
- type?: 'number' | 'number[]' | 'string' | 'string[]' | 'boolean' | 'Date' | 'list' | 'autocomplete';
308
+ type?: 'string' | 'number' | 'boolean' | 'number[]' | 'string[]' | 'Date' | 'list' | 'autocomplete' | undefined;
307
309
  primary?: boolean;
308
310
  visible?: boolean;
309
311
  validation?: SourceFieldsValidationParams;
310
312
  multiple?: boolean;
311
313
  tooltip?: string;
312
- searchIndex?: searchIndexOptions;
314
+ searchIndex?: SearchIndexOptions;
313
315
  }
314
- interface searchIndexOptions {
316
+ interface SearchIndexOptions {
315
317
  enabled?: boolean;
316
318
  preset?: Preset;
317
319
  tokenize?: Tokenizer;
@@ -384,14 +386,14 @@ type DatasourceEvent = [AnyEventName, Observable<unknown>];
384
386
 
385
387
  declare abstract class DataSource {
386
388
  options: DataSourceOptions;
387
- protected dataService?: DataService;
389
+ protected dataService?: DataService | undefined;
388
390
  id: string;
389
391
  ol: olSource | olSourceVector | olSourceCluster;
390
392
  private legend;
391
393
  get saveableOptions(): Partial<DataSourceOptions>;
392
394
  protected events: Map<"refresh", Subscription>;
393
395
  properties: DatasourceProperties;
394
- constructor(options?: DataSourceOptions, dataService?: DataService);
396
+ constructor(options?: DataSourceOptions, dataService?: DataService | undefined);
395
397
  protected abstract createOlSource(): olSource;
396
398
  protected generateId(): string;
397
399
  getLegend(_style?: string, _view?: LegendMapViewOptions): Legend[];
@@ -401,7 +403,7 @@ declare abstract class DataSource {
401
403
  removeEvents(): void;
402
404
  private addEvent;
403
405
  destroy(): void;
404
- protected abstract onUnwatch(): any;
406
+ protected abstract onUnwatch(): void;
405
407
  }
406
408
  declare class DatasourceProperties {
407
409
  /** General object to store general properties */
@@ -490,7 +492,7 @@ type IgoOgcFilterObject = IgoLogicalArrayOptions | AnyBaseOgcFilterOptions;
490
492
  interface OgcFiltersOptions {
491
493
  enabled?: boolean;
492
494
  editable?: boolean;
493
- filters?: (IgoLogicalArrayOptions | AnyBaseOgcFilterOptions) & {
495
+ filters?: IgoOgcFilterObject & {
494
496
  filterid?: string;
495
497
  };
496
498
  pushButtons?: IgoOgcSelector;
@@ -515,7 +517,7 @@ interface SelectorGroup {
515
517
  enabled?: boolean;
516
518
  title?: string;
517
519
  name: string;
518
- ids?: any;
520
+ ids?: string[];
519
521
  computedSelectors?: OgcSelectorBundle[];
520
522
  }
521
523
  interface OgcSelectorBundle {
@@ -567,11 +569,11 @@ interface OgcFilterableDataSourceOptions extends DataSourceOptions {
567
569
  }
568
570
  interface OgcFilterableDataSource extends DataSource {
569
571
  options: OgcFilterableDataSourceOptions;
570
- setOgcFilters(ogcFilters: OgcFiltersOptions, triggerEvent?: boolean): any;
572
+ setOgcFilters(ogcFilters: OgcFiltersOptions, triggerEvent?: boolean): void;
571
573
  }
572
574
  interface IgoLogicalArrayOptions {
573
575
  logical: string;
574
- filters: IgoLogicalArrayOptions | AnyBaseOgcFilterOptions[];
576
+ filters: IgoOgcFilterObject[];
575
577
  }
576
578
  interface IgoDomSelector {
577
579
  id: number;
@@ -759,19 +761,24 @@ declare class OgcFilterWriter {
759
761
  };
760
762
  };
761
763
  defineOgcFiltersDefaultOptions(ogcFiltersOptions: OgcFiltersOptions, fieldNameGeometry: string, srcType?: string): OgcFiltersOptions;
762
- buildFilter(filters?: IgoOgcFilterObject, extent?: Extent, proj?: olProjection, fieldNameGeometry?: string, options?: OgcFilterableDataSourceOptions): string;
764
+ buildFilter(filters?: IgoOgcFilterObject, extent?: Extent, proj?: olProjection, fieldNameGeometry?: string, options?: OgcFilterableDataSourceOptions): string | undefined;
763
765
  private bundleFilter;
764
766
  private createFilter;
765
767
  defineInterfaceFilterSequence(filterObject: any, geometryName: any, logical?: string, level?: number): OgcInterfaceFilterOptions[];
766
- computeAllowedOperators(fields?: SourceFieldsOptionsParams[], propertyName?: string, defaultOperatorsType?: OgcFilterOperatorType): any;
768
+ computeAllowedOperators(fields?: SourceFieldsOptionsParams[], propertyName?: string, defaultOperatorsType?: OgcFilterOperatorType): {
769
+ [x: string]: {
770
+ spatial: boolean;
771
+ fieldRestrict: string[];
772
+ };
773
+ };
767
774
  addInterfaceFilter(igoOgcFilterObject?: any, geometryName?: any, level?: number, parentLogical?: string): OgcInterfaceFilterOptions;
768
- checkIgoFiltersProperties(filterObject: any, fieldNameGeometry: any, proj: olProjection, active?: boolean): any;
775
+ checkIgoFiltersProperties(filterObject: any, fieldNameGeometry: any, proj: olProjection | undefined, active?: boolean): IgoOgcFilterObject | IgoOgcFilterObject[] | undefined;
769
776
  private addFilterProperties;
770
- rebuiltIgoOgcFilterObjectFromSequence(sequence: OgcInterfaceFilterOptions[]): IgoOgcFilterObject;
777
+ rebuiltIgoOgcFilterObjectFromSequence(sequence: OgcInterfaceFilterOptions[]): IgoOgcFilterObject | undefined;
771
778
  private computeIgoSelector;
772
- handleOgcFiltersAppliedValue(options: OgcFilterableDataSourceOptions, fieldNameGeometry: string, extent?: Extent, proj?: olProjection): string;
773
- verifyMultipleEnableds(selectors: any): any;
774
- formatGroupAndFilter(ogcFilters: OgcFiltersOptions, selectors: any): any[];
779
+ handleOgcFiltersAppliedValue(options: OgcFilterableDataSourceOptions, fieldNameGeometry: string, extent?: Extent, proj?: olProjection): string | undefined;
780
+ verifyMultipleEnableds(selectors: IgoOgcSelector): IgoOgcSelector;
781
+ formatGroupAndFilter(ogcFilters: OgcFiltersOptions, selectors: IgoOgcSelector): IgoOgcFilterObject[];
775
782
  formatProcessedOgcFilter(processedFilter: string, layersOrTypenames: string): string;
776
783
  private parseFilterOptionDate;
777
784
  private handleBeginEnd;
@@ -822,8 +829,22 @@ interface ArcGISRestDataSourceOptionsParams {
822
829
  style?: any;
823
830
  timefilter?: any;
824
831
  timeExtent?: string;
832
+ time?: string;
825
833
  attributions?: string | string[];
826
834
  }
835
+ interface ArcGISSymbol {
836
+ type?: string;
837
+ style?: string;
838
+ color?: number[];
839
+ width?: number;
840
+ outline?: {
841
+ color: number[];
842
+ width: number;
843
+ };
844
+ size?: number;
845
+ contentType?: string;
846
+ imageData?: string;
847
+ }
827
848
 
828
849
  declare class ArcGISRestDataSource extends DataSource {
829
850
  ol: olSourceVector;
@@ -832,7 +853,7 @@ declare class ArcGISRestDataSource extends DataSource {
832
853
  protected createOlSource(): olSourceVector;
833
854
  getLegend(): Legend[];
834
855
  htmlImgSrc(contentType: string, imageData: string): string;
835
- createSVG(symbol: any): string;
856
+ createSVG(symbol: ArcGISSymbol): string;
836
857
  onUnwatch(): void;
837
858
  }
838
859
 
@@ -861,11 +882,11 @@ interface WebSocketDataSourceOptions extends FeatureDataSourceOptions {
861
882
  }
862
883
 
863
884
  declare class WebSocketDataSource extends FeatureDataSource {
864
- ws: WebSocket;
885
+ ws?: WebSocket;
865
886
  options: WebSocketDataSourceOptions;
866
887
  protected createOlSource(): olSourceVector;
867
888
  private createWebSocket;
868
- onMessage(event: any): void;
889
+ onMessage(event: MessageEvent): void;
869
890
  onClose(): void;
870
891
  onError(): void;
871
892
  onOpen(): void;
@@ -899,7 +920,7 @@ declare class Overlay<T extends MapBase = MapBase> {
899
920
  * Overlay layer's data source
900
921
  */
901
922
  get dataSource(): FeatureDataSource;
902
- constructor(map?: T);
923
+ constructor(map: T);
903
924
  /**
904
925
  * Bind this to a map and add the overlay layer to that map
905
926
  * @param map Map
@@ -1046,7 +1067,7 @@ declare class MapGeolocationController extends MapController {
1046
1067
  /**
1047
1068
  * Observable of the current position
1048
1069
  */
1049
- readonly position$: BehaviorSubject<MapGeolocationState>;
1070
+ readonly position$: BehaviorSubject<MapGeolocationState | undefined>;
1050
1071
  /**
1051
1072
  * Observable of the tracking state
1052
1073
  */
@@ -1080,7 +1101,7 @@ declare class MapGeolocationController extends MapController {
1080
1101
  set followPosition(value: boolean);
1081
1102
  get followPosition(): boolean;
1082
1103
  private _followPosition;
1083
- constructor(map: MapBase, options?: MapGeolocationControllerOptions, storageService?: StorageService, configService?: ConfigService);
1104
+ constructor(map: MapBase, options?: MapGeolocationControllerOptions | undefined, storageService?: StorageService | undefined, configService?: ConfigService | undefined);
1084
1105
  /**
1085
1106
  * Add or remove this controller to/from a map.
1086
1107
  * @param map OL Map
@@ -1126,11 +1147,11 @@ declare class MapViewController extends MapController {
1126
1147
  /**
1127
1148
  * Observable of the current resolution
1128
1149
  */
1129
- resolution$: BehaviorSubject<number>;
1150
+ resolution$: BehaviorSubject<number | undefined>;
1130
1151
  /**
1131
1152
  * Observable of the current state
1132
1153
  */
1133
- state$: BehaviorSubject<MapViewState>;
1154
+ state$: BehaviorSubject<MapViewState | undefined>;
1134
1155
  /**
1135
1156
  * View Padding
1136
1157
  * Values in the array are top, right, bottom and left padding.
@@ -1168,7 +1189,7 @@ declare class MapViewController extends MapController {
1168
1189
  * OL View
1169
1190
  */
1170
1191
  get olView(): OlView;
1171
- constructor(options?: MapViewControllerOptions);
1192
+ constructor(options?: MapViewControllerOptions | undefined);
1172
1193
  setPadding(padding: {
1173
1194
  top?: number;
1174
1195
  bottom?: number;
@@ -1404,41 +1425,47 @@ declare enum TooltipType {
1404
1425
  }
1405
1426
  type LayerType = 'vector' | 'raster' | 'group';
1406
1427
 
1407
- interface ILayerGroup {
1408
- id: LayerId;
1409
- map: MapBase;
1428
+ interface ILayerBase {
1429
+ ol: BaseLayer;
1430
+ id: LayerId | undefined;
1431
+ isInResolutionsRange$: Observable<boolean>;
1432
+ visible$: Observable<boolean>;
1410
1433
  displayed$: Observable<boolean>;
1411
- addChild(layer: LayerBase<ILayerGroup>): void;
1412
- removeChild(layer: LayerBase<ILayerGroup>): void;
1434
+ addParent(parent?: ILayerGroup): void;
1435
+ }
1436
+ interface ILayerGroup extends ILayerBase {
1437
+ map?: MapBase;
1438
+ addChild(layer: ILayerBase): void;
1439
+ removeChild(layer: ILayerBase): void;
1413
1440
  }
1414
1441
  type AnyLayerBase = LayerBase<ILayerGroup> | LayerGroupBase<ILayerGroup>;
1415
- declare abstract class LayerBase<G extends ILayerGroup = ILayerGroup> {
1442
+ declare abstract class LayerBase<G extends ILayerGroup = ILayerGroup> implements ILayerBase {
1416
1443
  options: LayerOptions;
1417
1444
  abstract type: LayerType;
1418
1445
  abstract ol: BaseLayer;
1419
1446
  protected abstract createOlLayer(): BaseLayer;
1420
1447
  collapsed: boolean;
1421
1448
  firstLoadComponent: boolean;
1422
- map: MapBase;
1449
+ map?: MapBase;
1423
1450
  olLoadingProblem: boolean;
1424
1451
  status$: Subject<SubjectStatus>;
1425
- dataSource: DataSource | undefined;
1452
+ dataSource?: DataSource;
1426
1453
  /**
1427
1454
  * Define if a layer is generated by code OR defined by layer/context user layer.
1428
1455
  * Useful for filtering layers list in mapOffline.directive or in the sharemap...
1429
1456
  * return false by default.
1430
1457
  */
1431
1458
  get isIgoInternalLayer(): boolean;
1432
- get id(): LayerId;
1433
- set id(value: LayerId);
1459
+ get id(): LayerId | undefined;
1460
+ set id(value: LayerId | undefined);
1434
1461
  get parentId(): LayerId | undefined;
1435
- get alias(): string;
1436
- get title(): string;
1437
- set title(title: string);
1438
- get zIndex(): number;
1462
+ get alias(): string | undefined;
1463
+ get title(): string | undefined;
1464
+ set title(title: string | undefined);
1465
+ get zIndex(): number | undefined;
1439
1466
  set zIndex(zIndex: number);
1440
- get baseLayer(): boolean;
1441
- set baseLayer(baseLayer: boolean);
1467
+ get baseLayer(): boolean | undefined;
1468
+ set baseLayer(baseLayer: boolean | undefined);
1442
1469
  get opacity(): number;
1443
1470
  set opacity(opacity: number);
1444
1471
  set isInResolutionsRange(value: boolean);
@@ -1452,9 +1479,9 @@ declare abstract class LayerBase<G extends ILayerGroup = ILayerGroup> {
1452
1479
  get visible(): boolean;
1453
1480
  private _visible$;
1454
1481
  readonly visible$: Observable<boolean>;
1455
- get parent(): G;
1456
- set parent(parent: G);
1457
- readonly parent$: BehaviorSubject<G>;
1482
+ get parent(): G | undefined;
1483
+ set parent(parent: G | undefined);
1484
+ readonly parent$: BehaviorSubject<G | undefined>;
1458
1485
  get displayed(): boolean;
1459
1486
  set displayed(value: boolean);
1460
1487
  private _displayed$;
@@ -1701,7 +1728,7 @@ interface LayerGroupOptions extends Omit<LayerOptionsBase, 'title'> {
1701
1728
 
1702
1729
  declare const ID_GROUP_PREFIX = "local-group_";
1703
1730
  declare class LayerGroup extends LayerGroupBase<LayerGroup> {
1704
- children: AnyLayer[] | null;
1731
+ children: AnyLayer[];
1705
1732
  options: LayerGroupOptions;
1706
1733
  ol: Group;
1707
1734
  expanded: boolean;
@@ -1710,7 +1737,7 @@ declare class LayerGroup extends LayerGroupBase<LayerGroup> {
1710
1737
  get saveableOptions(): Partial<LayerGroupOptions>;
1711
1738
  get descendants(): AnyLayer[];
1712
1739
  get descendantsLevel(): number;
1713
- constructor(children: AnyLayer[] | null, options: LayerGroupOptions);
1740
+ constructor(children: AnyLayer[], options: LayerGroupOptions);
1714
1741
  init(map: MapBase): void;
1715
1742
  add(parent?: LayerGroup): void;
1716
1743
  addChild(...layers: AnyLayer[]): void;
@@ -1765,7 +1792,7 @@ type LayerWatcherEvent = Pick<ObjectEvent, 'key' | 'oldValue'> & {
1765
1792
  value: unknown;
1766
1793
  };
1767
1794
  declare class LayerWatcher extends Watcher {
1768
- propertyChange$: BehaviorSubject<LayerWatcherChange>;
1795
+ propertyChange$: BehaviorSubject<LayerWatcherChange | undefined>;
1769
1796
  private loaded;
1770
1797
  private loading;
1771
1798
  private layers;
@@ -1785,9 +1812,9 @@ declare class LayerWatcher extends Watcher {
1785
1812
  declare abstract class MapBase {
1786
1813
  ol: Map$1;
1787
1814
  forcedOffline$: BehaviorSubject<boolean>;
1788
- layersAddedByClick$: BehaviorSubject<AnyLayer[]>;
1815
+ layersAddedByClick$: BehaviorSubject<AnyLayer[] | undefined>;
1789
1816
  status$: Subject<SubjectStatus>;
1790
- propertyChange$: Subject<LayerWatcherChange>;
1817
+ propertyChange$: Subject<LayerWatcherChange | undefined>;
1791
1818
  overlay: Overlay;
1792
1819
  queryResultsOverlay: Overlay;
1793
1820
  searchResultsOverlay: Overlay;
@@ -1795,7 +1822,7 @@ declare abstract class MapBase {
1795
1822
  geolocationController: MapGeolocationController;
1796
1823
  swipeEnabled$: BehaviorSubject<boolean>;
1797
1824
  mapCenter$: BehaviorSubject<boolean>;
1798
- selectedFeatures$: BehaviorSubject<Layer[]>;
1825
+ selectedFeatures$: BehaviorSubject<Layer[] | null>;
1799
1826
  bufferDataSource: FeatureDataSource;
1800
1827
  layerWatcher: LayerWatcher;
1801
1828
  readonly options: MapOptions;
@@ -1811,7 +1838,7 @@ declare abstract class MapBase {
1811
1838
  abstract getExtent(projection?: string | Projection$1): MapExtent;
1812
1839
  abstract getZoom(): number;
1813
1840
  /** @deprecated find a way to remove this method. For now we discourage to use it until we find the way to remove it */
1814
- abstract getLayerByOlUId(olUId: string): AnyLayer;
1841
+ abstract getLayerByOlUId(olUId: string): AnyLayer | undefined;
1815
1842
  }
1816
1843
 
1817
1844
  declare class LayerSelectionModel {
@@ -1855,7 +1882,7 @@ declare class LayerController extends LayerSelectionModel {
1855
1882
  constructor(_map: MapBase, layers: AnyLayer[]);
1856
1883
  get all(): AnyLayer[];
1857
1884
  get baseLayers(): readonly Layer[];
1858
- get baseLayer(): Layer;
1885
+ get baseLayer(): Layer | undefined;
1859
1886
  get treeLayers(): readonly AnyLayer[];
1860
1887
  add(...layers: AnyLayer[]): void;
1861
1888
  selectBaseLayer(layer: Layer): void;
@@ -1873,9 +1900,9 @@ declare class LayerController extends LayerSelectionModel {
1873
1900
  lower(...layers: AnyLayer[]): void;
1874
1901
  /** Reset all except SystemLayer */
1875
1902
  reset(): void;
1876
- getById(id: LayerId): AnyLayer;
1877
- getByTitle(title: string): AnyLayer;
1878
- getBySourceId(id: LayerId): AnyLayer;
1903
+ getById(id: LayerId): AnyLayer | undefined;
1904
+ getByTitle(title: string): AnyLayer | undefined;
1905
+ getBySourceId(id: LayerId): AnyLayer | undefined;
1879
1906
  getPosition(layer: AnyLayer, type?: 'below' | 'above'): number[];
1880
1907
  getLayerRecipient(layer: AnyLayer): AnyLayer[];
1881
1908
  /**
@@ -1912,7 +1939,7 @@ declare class Linked {
1912
1939
  constructor(layer: Layer);
1913
1940
  get options(): _igo2_geo.LayerOptions;
1914
1941
  get links(): LayersLinkProperties[];
1915
- get map(): _igo2_geo.MapBase;
1942
+ get map(): _igo2_geo.MapBase | undefined;
1916
1943
  init(): void;
1917
1944
  private initZIndexLinkOptions;
1918
1945
  destroy(): void;
@@ -1968,14 +1995,14 @@ declare class ImageArcGISRestDataSource extends DataSource {
1968
1995
  }
1969
1996
 
1970
1997
  declare class ImageLayer extends Layer {
1971
- messageService?: MessageService;
1972
- authInterceptor?: AuthInterceptor;
1998
+ messageService?: MessageService | undefined;
1999
+ authInterceptor?: AuthInterceptor | undefined;
1973
2000
  type: LayerType;
1974
2001
  dataSource: WMSDataSource | ImageArcGISRestDataSource;
1975
2002
  options: ImageLayerOptions;
1976
2003
  ol: olLayerImage<olSourceImage>;
1977
2004
  private watcher;
1978
- constructor(options: ImageLayerOptions, messageService?: MessageService, authInterceptor?: AuthInterceptor);
2005
+ constructor(options: ImageLayerOptions, messageService?: MessageService | undefined, authInterceptor?: AuthInterceptor | undefined);
1979
2006
  protected createOlLayer(): olLayerImage<olSourceImage>;
1980
2007
  init(map: MapBase | undefined): void;
1981
2008
  remove(): void;
@@ -1983,14 +2010,14 @@ declare class ImageLayer extends Layer {
1983
2010
  }
1984
2011
 
1985
2012
  declare class TileLayer extends Layer {
1986
- messageService?: MessageService;
1987
- authInterceptor?: AuthInterceptor;
2013
+ messageService?: MessageService | undefined;
2014
+ authInterceptor?: AuthInterceptor | undefined;
1988
2015
  type: LayerType;
1989
2016
  dataSource: OSMDataSource | WMTSDataSource | XYZDataSource | TileDebugDataSource | CartoDataSource | TileArcGISRestDataSource;
1990
2017
  options: TileLayerOptions;
1991
2018
  ol: olLayerTile<olSourceTile>;
1992
2019
  private watcher;
1993
- constructor(options: TileLayerOptions, messageService?: MessageService, authInterceptor?: AuthInterceptor);
2020
+ constructor(options: TileLayerOptions, messageService?: MessageService | undefined, authInterceptor?: AuthInterceptor | undefined);
1994
2021
  protected createOlLayer(): olLayerTile<olSourceTile>;
1995
2022
  /**
1996
2023
  * Custom loader for tile layer.
@@ -2004,14 +2031,14 @@ declare class TileLayer extends Layer {
2004
2031
  }
2005
2032
 
2006
2033
  declare class VectorTileLayer extends Layer {
2007
- messageService?: MessageService;
2008
- authInterceptor?: AuthInterceptor;
2034
+ messageService?: MessageService | undefined;
2035
+ authInterceptor?: AuthInterceptor | undefined;
2009
2036
  type: LayerType;
2010
2037
  dataSource: MVTDataSource;
2011
2038
  options: VectorTileLayerOptions;
2012
2039
  ol: olLayerVectorTile;
2013
2040
  private watcher;
2014
- constructor(options: VectorTileLayerOptions, messageService?: MessageService, authInterceptor?: AuthInterceptor);
2041
+ constructor(options: VectorTileLayerOptions, messageService?: MessageService | undefined, authInterceptor?: AuthInterceptor | undefined);
2015
2042
  protected createOlLayer(): olLayerVectorTile;
2016
2043
  /**
2017
2044
  * Custom loader for vector tile layer. Modified from the loadFeaturesXhr function in ol\featureloader.js
@@ -2032,9 +2059,9 @@ declare class IgoMap implements MapBase {
2032
2059
  private configService?;
2033
2060
  ol: OlMap;
2034
2061
  forcedOffline$: BehaviorSubject<boolean>;
2035
- layersAddedByClick$: BehaviorSubject<AnyLayer[]>;
2062
+ layersAddedByClick$: BehaviorSubject<AnyLayer[] | undefined>;
2036
2063
  status$: Subject<SubjectStatus>;
2037
- propertyChange$: Subject<LayerWatcherChange>;
2064
+ propertyChange$: Subject<LayerWatcherChange | undefined>;
2038
2065
  overlay: Overlay;
2039
2066
  queryResultsOverlay: Overlay;
2040
2067
  searchResultsOverlay: Overlay;
@@ -2043,7 +2070,7 @@ declare class IgoMap implements MapBase {
2043
2070
  geolocationController: MapGeolocationController;
2044
2071
  swipeEnabled$: BehaviorSubject<boolean>;
2045
2072
  mapCenter$: BehaviorSubject<boolean>;
2046
- selectedFeatures$: BehaviorSubject<Layer[]>;
2073
+ selectedFeatures$: BehaviorSubject<Layer[] | null>;
2047
2074
  bufferDataSource: FeatureDataSource;
2048
2075
  layerWatcher: LayerWatcher;
2049
2076
  readonly options: MapOptions;
@@ -2053,9 +2080,9 @@ declare class IgoMap implements MapBase {
2053
2080
  get projection(): string;
2054
2081
  get viewProjection(): olproj.Projection;
2055
2082
  get projectionCode(): string;
2056
- constructor(options?: MapOptions, storageService?: StorageService, configService?: ConfigService);
2083
+ constructor(options?: MapOptions, storageService?: StorageService | undefined, configService?: ConfigService | undefined);
2057
2084
  init(): void;
2058
- setTarget(id: string): void;
2085
+ setTarget(id: string | undefined): void;
2059
2086
  updateView(options: MapViewOptions): void;
2060
2087
  /**
2061
2088
  * Set the map view
@@ -2079,7 +2106,7 @@ declare class IgoMap implements MapBase {
2079
2106
  */
2080
2107
  getZoom(): number;
2081
2108
  /** @deprecated find a way to remove this method. For now we discourage to use it until we find the way to remove it */
2082
- getLayerByOlUId(olUId: string): AnyLayer;
2109
+ getLayerByOlUId(olUId: string): AnyLayer | undefined;
2083
2110
  }
2084
2111
 
2085
2112
  declare enum MapViewAction {
@@ -2097,8 +2124,8 @@ declare enum MapViewAction {
2097
2124
  * because these maps won't be sharing overlayed features.
2098
2125
  */
2099
2126
  declare class MapService {
2100
- private map;
2101
- getMap(): IgoMap;
2127
+ private map?;
2128
+ getMap(): IgoMap | undefined;
2102
2129
  setMap(map: IgoMap): void;
2103
2130
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MapService, never>;
2104
2131
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<MapService>;
@@ -2107,8 +2134,8 @@ declare class MapService {
2107
2134
  interface Projection {
2108
2135
  alias?: string;
2109
2136
  code: string;
2110
- def: string;
2111
- extent: [number, number, number, number];
2137
+ def?: string;
2138
+ extent?: [number, number, number, number];
2112
2139
  }
2113
2140
  interface InputProjections extends Projection {
2114
2141
  translateKey?: string;
@@ -2170,7 +2197,7 @@ declare function viewStatesAreEqual(state1: MapViewState, state2: MapViewState):
2170
2197
  * @param Scale of the map
2171
2198
  * @returns Human readable scale text
2172
2199
  */
2173
- declare function formatScale(scale: any): string;
2200
+ declare function formatScale(scale: number): string;
2174
2201
  /**
2175
2202
  * Return the resolution from a scale denom
2176
2203
  * @param scale Scale denom
@@ -2218,14 +2245,14 @@ declare function utmZoneFromLonLat(lonLat: [number, number]): number;
2218
2245
  * @param lonLat [number, number] array of the coordinate to detect the MTM zone.
2219
2246
  * @returns number The MTM zone. Undefined if outside of the mtm application zone.
2220
2247
  */
2221
- declare function mtmZoneFromLonLat(lonLat: [number, number]): any;
2248
+ declare function mtmZoneFromLonLat(lonLat: [number, number]): number | undefined;
2222
2249
 
2223
2250
  declare class MapOfflineDirective implements AfterViewInit {
2224
2251
  private networkService;
2225
2252
  private messageService;
2226
2253
  private component;
2227
2254
  get map(): IgoMap;
2228
- private previousMessageId;
2255
+ private previousMessageId?;
2229
2256
  constructor();
2230
2257
  ngAfterViewInit(): void;
2231
2258
  private handleNonOfflinableLayerResolution;
@@ -2242,15 +2269,15 @@ declare class MapOfflineDirective implements AfterViewInit {
2242
2269
  declare class PointerPositionDirective implements OnInit, OnDestroy {
2243
2270
  private component;
2244
2271
  private mediaService;
2245
- private lastTimeoutRequest;
2272
+ private lastTimeoutRequest?;
2246
2273
  /**
2247
2274
  * Listener to the pointer move event
2248
2275
  */
2249
- private pointerMoveListener;
2276
+ private pointerMoveListener?;
2250
2277
  /**
2251
2278
  * Listener to the map click event
2252
2279
  */
2253
- private mapClickListener;
2280
+ private mapClickListener?;
2254
2281
  /**
2255
2282
  * Delay before emitting an event
2256
2283
  */
@@ -2300,6 +2327,7 @@ declare class PointerPositionDirective implements OnInit, OnDestroy {
2300
2327
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PointerPositionDirective, "[igoPointerPosition]", never, { "pointerPositionDelay": { "alias": "pointerPositionDelay"; "required": false; "isSignal": true; }; }, { "pointerPositionCoord": "pointerPositionCoord"; }, never, never, true, never>;
2301
2328
  }
2302
2329
 
2330
+ type FlexIndex = any;
2303
2331
  /**
2304
2332
  * The class is a specialized version of an EntityStore that stores
2305
2333
  * features and the map layer to display them on. Synchronization
@@ -2321,8 +2349,8 @@ declare class FeatureStore<T extends Feature = Feature> extends EntityStore<T> {
2321
2349
  /**
2322
2350
  * The searchable index of loaded feature. Computed if strategy is provided
2323
2351
  */
2324
- set searchDocument(v: Document<T>);
2325
- get searchDocument(): Document<T>;
2352
+ set searchDocument(v: FlexIndex);
2353
+ get searchDocument(): FlexIndex;
2326
2354
  private _searchDocument;
2327
2355
  constructor(entities: T[], options: FeatureStoreOptions);
2328
2356
  /**
@@ -2337,7 +2365,7 @@ declare class FeatureStore<T extends Feature = Feature> extends EntityStore<T> {
2337
2365
  * @param features Features
2338
2366
  * @param motion Optional: The type of motion to perform
2339
2367
  */
2340
- setLayerFeatures(features: Feature[], motion?: FeatureMotion, viewScale?: [number, number, number, number], areaRatio?: number, getId?: (Feature: any) => EntityKey): void;
2368
+ setLayerFeatures(features: Feature[], motion?: FeatureMotion, viewScale?: [number, number, number, number], areaRatio?: number, getId?: (arg0: Feature) => EntityKey): void;
2341
2369
  /**
2342
2370
  * Set the store's features from an array of OL features.
2343
2371
  * @param olFeatures Ol features
@@ -2524,14 +2552,14 @@ declare function computeProjectionsConstraints(projectionsLimitations: Projectio
2524
2552
  declare function detectFileEPSG(options: {
2525
2553
  file: File;
2526
2554
  nbLines?: number;
2527
- }): Observable<string>;
2555
+ }): Observable<string | undefined>;
2528
2556
 
2529
- declare function getRootParentByProperty(layers: AnyLayer[], layer: Layer, property: LinkedProperties): Layer;
2557
+ declare function getRootParentByProperty(layers: AnyLayer[], layer: Layer, property: LinkedProperties): Layer | undefined;
2530
2558
  declare function getAllChildLayersByProperty(layers: AnyLayer[], layer: Layer, knownChildLayers: AnyLayer[], property: LinkedProperties): AnyLayer[];
2531
- declare function getRootParentByDeletion(layer: Layer, layers: AnyLayer[]): Layer;
2559
+ declare function getRootParentByDeletion(layer: Layer, layers: AnyLayer[]): Layer | undefined;
2532
2560
  declare function getAllChildLayersByDeletion(layers: Layer[], layer: Layer, knownChildLayers: Layer[]): Layer[];
2533
2561
  declare function getLinkedLayersOptions(layer: Layer): _igo2_geo.LayersLink;
2534
- declare function findLayerByLinkId(layers: Layer[], id: LayerId): Layer;
2562
+ declare function findLayerByLinkId(layers: Layer[], id: LayerId): Layer | undefined;
2535
2563
  declare function getLayersByDeletion(layers: Layer[], links: LayersLinkProperties[]): Layer[];
2536
2564
  declare function handleLayerPropertyChange(layers: AnyLayer[], change: LayerWatcherChange, viewController: MapViewController): void;
2537
2565
 
@@ -2554,11 +2582,11 @@ declare class GeoNetworkService {
2554
2582
  }
2555
2583
 
2556
2584
  declare class VectorLayer extends Layer {
2557
- messageService?: MessageService;
2558
- authInterceptor?: AuthInterceptor;
2585
+ messageService?: MessageService | undefined;
2586
+ authInterceptor?: AuthInterceptor | undefined;
2559
2587
  private geoNetworkService?;
2560
2588
  type: LayerType;
2561
- private lastRequest;
2589
+ private lastRequest?;
2562
2590
  private ongoingRequests;
2563
2591
  dataSource: FeatureDataSource | WFSDataSource | ArcGISRestDataSource | WebSocketDataSource | ClusterDataSource;
2564
2592
  options: VectorLayerOptions;
@@ -2567,7 +2595,7 @@ declare class VectorLayer extends Layer {
2567
2595
  private trackFeatureListenerId;
2568
2596
  get browsable(): boolean;
2569
2597
  get exportable(): boolean;
2570
- constructor(options: VectorLayerOptions, messageService?: MessageService, authInterceptor?: AuthInterceptor, geoNetworkService?: GeoNetworkService);
2598
+ constructor(options: VectorLayerOptions, messageService?: MessageService | undefined, authInterceptor?: AuthInterceptor | undefined, geoNetworkService?: GeoNetworkService | undefined);
2571
2599
  protected createOlLayer(): olLayerVector<olSourceVector>;
2572
2600
  private handleIdbStorage;
2573
2601
  private handlePreload;
@@ -2662,7 +2690,7 @@ interface FeatureStoreStrategyOptions extends EntityStoreStrategyOptions {
2662
2690
  areaRatio?: number;
2663
2691
  }
2664
2692
  interface FeatureStoreLoadingStrategyOptions extends FeatureStoreStrategyOptions {
2665
- getFeatureId?: (Feature: any) => EntityKey;
2693
+ getFeatureId?: (feature: Feature) => EntityKey;
2666
2694
  motion?: FeatureMotion;
2667
2695
  }
2668
2696
  interface FeatureStorePropertyTypeStrategyOptions extends FeatureStoreStrategyOptions {
@@ -2680,7 +2708,7 @@ interface FeatureStoreSearchIndexStrategyOptions extends EntityStoreStrategyOpti
2680
2708
  }
2681
2709
  interface FeatureStoreSelectionStrategyOptions extends FeatureStoreStrategyOptions {
2682
2710
  map: IgoMap;
2683
- getFeatureId?: (Feature: any) => EntityKey;
2711
+ getFeatureId?: (feature: Feature) => EntityKey;
2684
2712
  motion?: FeatureMotion;
2685
2713
  layer?: VectorLayer;
2686
2714
  many?: boolean;
@@ -2720,7 +2748,7 @@ declare class SpatialFilterService {
2720
2748
  unites: string;
2721
2749
  };
2722
2750
  constructor();
2723
- getKeyByValue(object: any, value: any): string;
2751
+ getKeyByValue(object: Record<string, string>, value: string): string | undefined;
2724
2752
  loadFilterList(type: SpatialFilterQueryType): Observable<Feature[]>;
2725
2753
  loadThematicsList(): Observable<SpatialFilterThematic[]>;
2726
2754
  loadFilterItems(features: Feature[], itemType: SpatialFilterItemType, options: {
@@ -2728,7 +2756,7 @@ declare class SpatialFilterService {
2728
2756
  thematics: SpatialFilterThematic[];
2729
2757
  buffer?: number;
2730
2758
  }): Observable<Feature<Record<string, any>>[]>;
2731
- loadItemById(feature: Feature, type: SpatialFilterQueryType): Observable<Feature>;
2759
+ loadItemById(feature: Feature, type: SpatialFilterQueryType): Observable<Feature> | undefined;
2732
2760
  loadBufferGeometry(feature: Feature, filterType: SpatialFilterType, buffer?: number, type?: SpatialFilterQueryType): Observable<Feature>;
2733
2761
  private getHttpParams;
2734
2762
  private doGet;
@@ -2748,10 +2776,10 @@ declare class SpatialFilterService {
2748
2776
 
2749
2777
  declare class MapBrowserComponent implements OnInit, AfterViewInit, OnDestroy {
2750
2778
  private activityService;
2751
- private activityId;
2779
+ private activityId?;
2752
2780
  private status$$;
2753
2781
  readonly map: _angular_core.InputSignal<IgoMap>;
2754
- readonly view: _angular_core.ModelSignal<MapViewOptions>;
2782
+ readonly view: _angular_core.ModelSignal<MapViewOptions | undefined>;
2755
2783
  get controls(): MapControlsOptions;
2756
2784
  set controls(value: MapControlsOptions);
2757
2785
  private _controls;
@@ -2763,17 +2791,17 @@ declare class MapBrowserComponent implements OnInit, AfterViewInit, OnDestroy {
2763
2791
  setView(view: MapViewOptions): void;
2764
2792
  private handleStatusChange;
2765
2793
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MapBrowserComponent, never>;
2766
- static ɵcmp: _angular_core.ɵɵ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>;
2794
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MapBrowserComponent, "igo-map-browser", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "view": { "alias": "view"; "required": false; "isSignal": true; }; }, { "view": "viewChange"; }, never, ["*"], true, never>;
2767
2795
  }
2768
2796
 
2769
2797
  declare class ZoomButtonComponent {
2770
2798
  readonly map: _angular_core.InputSignal<IgoMap>;
2771
- readonly color: _angular_core.InputSignal<string>;
2799
+ readonly color: _angular_core.InputSignal<string | undefined>;
2772
2800
  get zoom(): number;
2773
2801
  get minZoom(): number;
2774
2802
  get maxZoom(): number;
2775
2803
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ZoomButtonComponent, never>;
2776
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZoomButtonComponent, "igo-zoom-button", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2804
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZoomButtonComponent, "igo-zoom-button", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2777
2805
  }
2778
2806
 
2779
2807
  declare class MenuButtonComponent {
@@ -2783,7 +2811,7 @@ declare class MenuButtonComponent {
2783
2811
  private _sidenavOpenend;
2784
2812
  readonly openSidenav: _angular_core.OutputEmitterRef<void>;
2785
2813
  useThemeColor: boolean;
2786
- menuButtonClass: any;
2814
+ menuButtonClass?: Record<string, boolean>;
2787
2815
  constructor();
2788
2816
  getClassMenuButton(): void;
2789
2817
  onToggleSidenavClick(): void;
@@ -2795,34 +2823,30 @@ declare class GeolocateButtonComponent implements AfterContentInit, OnDestroy {
2795
2823
  private configService;
2796
2824
  private tracking$$;
2797
2825
  readonly icon$: BehaviorSubject<string>;
2798
- get map(): IgoMap;
2799
- set map(value: IgoMap);
2800
- private _map;
2801
- get color(): string;
2802
- set color(value: string);
2803
- private _color;
2826
+ map: _angular_core.InputSignal<IgoMap>;
2827
+ color: _angular_core.InputSignal<string | undefined>;
2804
2828
  ngAfterContentInit(): void;
2805
2829
  ngOnDestroy(): void;
2806
2830
  onGeolocationClick(): void;
2807
2831
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GeolocateButtonComponent, never>;
2808
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<GeolocateButtonComponent, "igo-geolocate-button", never, { "map": { "alias": "map"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
2832
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GeolocateButtonComponent, "igo-geolocate-button", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2809
2833
  }
2810
2834
 
2811
2835
  declare class HomeExtentButtonComponent {
2812
2836
  configService: ConfigService<any>;
2813
2837
  readonly map: _angular_core.InputSignal<IgoMap>;
2814
- readonly color: _angular_core.InputSignal<string>;
2815
- readonly extentOverride: _angular_core.InputSignal<MapExtent>;
2816
- readonly centerOverride: _angular_core.InputSignal<[number, number]>;
2817
- readonly zoomOverride: _angular_core.InputSignal<number>;
2818
- private homeExtentButtonExtent;
2819
- private homeExtentButtonCenter;
2820
- private homeExtentButtonZoom;
2838
+ readonly color: _angular_core.InputSignal<string | undefined>;
2839
+ readonly extentOverride: _angular_core.InputSignal<MapExtent | undefined>;
2840
+ readonly centerOverride: _angular_core.InputSignal<[number, number] | undefined>;
2841
+ readonly zoomOverride: _angular_core.InputSignal<number | undefined>;
2842
+ private homeExtentButtonExtent?;
2843
+ private homeExtentButtonCenter?;
2844
+ private homeExtentButtonZoom?;
2821
2845
  constructor();
2822
2846
  computeHomeExtent(): void;
2823
2847
  onToggleClick(): void;
2824
2848
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<HomeExtentButtonComponent, never>;
2825
- static ɵcmp: _angular_core.ɵɵ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>;
2849
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<HomeExtentButtonComponent, "igo-home-extent-button", never, { "map": { "alias": "map"; "required": true; "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>;
2826
2850
  }
2827
2851
 
2828
2852
  interface HomeExtentButtonOptions {
@@ -2834,13 +2858,13 @@ interface HomeExtentButtonOptions {
2834
2858
  declare class OfflineButtonComponent implements OnInit {
2835
2859
  btnStyle: string;
2836
2860
  readonly map: _angular_core.InputSignal<IgoMap>;
2837
- readonly color: _angular_core.InputSignal<string>;
2861
+ readonly color: _angular_core.InputSignal<string | undefined>;
2838
2862
  enabled: _angular_core.ModelSignal<boolean>;
2839
2863
  ngOnInit(): void;
2840
2864
  onClick(): void;
2841
2865
  private handleButtonStyle;
2842
2866
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OfflineButtonComponent, never>;
2843
- static ɵcmp: _angular_core.ɵɵ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>;
2867
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<OfflineButtonComponent, "igo-offline-button", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "enabled": { "alias": "enabled"; "required": false; "isSignal": true; }; }, { "enabled": "enabledChange"; }, never, never, true, never>;
2844
2868
  }
2845
2869
 
2846
2870
  declare class WakeLockButtonComponent {
@@ -2871,7 +2895,7 @@ declare class WakeLockButtonComponent {
2871
2895
  declare class BaseLayersSwitcherComponent implements AfterViewInit, OnDestroy {
2872
2896
  private mediaService;
2873
2897
  readonly map: _angular_core.InputSignal<IgoMap>;
2874
- readonly useStaticIcon: _angular_core.ModelSignal<boolean>;
2898
+ readonly useStaticIcon: _angular_core.ModelSignal<boolean | undefined>;
2875
2899
  _baseLayers: Layer[];
2876
2900
  expand: boolean;
2877
2901
  showButton: boolean;
@@ -2883,17 +2907,17 @@ declare class BaseLayersSwitcherComponent implements AfterViewInit, OnDestroy {
2883
2907
  collapseOrExpand(): void;
2884
2908
  get baseLayers(): Layer[];
2885
2909
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BaseLayersSwitcherComponent, never>;
2886
- static ɵcmp: _angular_core.ɵɵ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>;
2910
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BaseLayersSwitcherComponent, "igo-baselayers-switcher", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "useStaticIcon": { "alias": "useStaticIcon"; "required": false; "isSignal": true; }; }, { "useStaticIcon": "useStaticIconChange"; }, never, never, true, never>;
2887
2911
  }
2888
2912
 
2889
2913
  declare class MiniBaseMapComponent implements AfterViewInit {
2890
2914
  private layerService;
2891
2915
  private appRef;
2892
2916
  readonly map: _angular_core.InputSignal<IgoMap>;
2893
- readonly disabled: _angular_core.InputSignal<boolean>;
2894
- readonly title: _angular_core.InputSignal<string>;
2895
- readonly display: _angular_core.InputSignal<boolean>;
2896
2917
  readonly baseLayer: _angular_core.InputSignal<Layer>;
2918
+ readonly disabled: _angular_core.InputSignal<boolean | undefined>;
2919
+ readonly title: _angular_core.InputSignal<string | undefined>;
2920
+ readonly display: _angular_core.InputSignal<boolean | undefined>;
2897
2921
  basemap: IgoMap;
2898
2922
  constructor();
2899
2923
  ngAfterViewInit(): void;
@@ -2901,7 +2925,7 @@ declare class MiniBaseMapComponent implements AfterViewInit {
2901
2925
  private handleBaseLayerChanged;
2902
2926
  private handleLinkedBaseLayer;
2903
2927
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MiniBaseMapComponent, never>;
2904
- static ɵcmp: _angular_core.ɵɵ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>;
2928
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MiniBaseMapComponent, "igo-mini-basemap", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "baseLayer": { "alias": "baseLayer"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "display": { "alias": "display"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2905
2929
  }
2906
2930
 
2907
2931
  declare class RotationButtonComponent implements AfterContentInit {
@@ -2912,11 +2936,11 @@ declare class RotationButtonComponent implements AfterContentInit {
2912
2936
  transform: string;
2913
2937
  }>;
2914
2938
  readonly map: _angular_core.InputSignal<IgoMap>;
2915
- readonly showIfNoRotation: _angular_core.InputSignal<boolean>;
2916
- readonly color: _angular_core.InputSignal<string>;
2939
+ readonly showIfNoRotation: _angular_core.InputSignal<boolean | undefined>;
2940
+ readonly color: _angular_core.InputSignal<string | undefined>;
2917
2941
  ngAfterContentInit(): void;
2918
2942
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RotationButtonComponent, never>;
2919
- static ɵcmp: _angular_core.ɵɵ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>;
2943
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<RotationButtonComponent, "igo-rotation-button", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "showIfNoRotation": { "alias": "showIfNoRotation"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2920
2944
  }
2921
2945
 
2922
2946
  /**
@@ -2970,7 +2994,7 @@ declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
2970
2994
  /**
2971
2995
  * Getter of element
2972
2996
  */
2973
- get swipeId(): HTMLElement;
2997
+ get swipeId(): HTMLElement | null;
2974
2998
  /**
2975
2999
  * Get the list of layers for swipe
2976
3000
  */
@@ -3004,7 +3028,7 @@ declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
3004
3028
  */
3005
3029
  postrender(event: any): void;
3006
3030
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SwipeControlComponent, never>;
3007
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SwipeControlComponent, "igo-swipe-control", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3031
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SwipeControlComponent, "igo-swipe-control", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
3008
3032
  }
3009
3033
 
3010
3034
  /**
@@ -3032,7 +3056,7 @@ declare class MapCenterComponent implements AfterViewInit, OnDestroy {
3032
3056
  */
3033
3057
  private letZoom;
3034
3058
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MapCenterComponent, never>;
3035
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MapCenterComponent, "igo-map-center", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
3059
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MapCenterComponent, "igo-map-center", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
3036
3060
  }
3037
3061
 
3038
3062
  declare class InfoSectionComponent {
@@ -3042,14 +3066,14 @@ declare class InfoSectionComponent {
3042
3066
  }
3043
3067
 
3044
3068
  declare class OgcFilterButtonComponent {
3045
- readonly layer: _angular_core.InputSignal<Layer>;
3046
- readonly options: _angular_core.Signal<OgcFilterableDataSourceOptions>;
3047
- readonly map: _angular_core.InputSignal<MapBase>;
3069
+ readonly layer: _angular_core.InputSignal<Layer | undefined>;
3070
+ readonly options: _angular_core.Signal<OgcFilterableDataSourceOptions | undefined>;
3071
+ readonly map: _angular_core.InputSignal<MapBase | undefined>;
3048
3072
  readonly color: _angular_core.InputSignal<string>;
3049
3073
  readonly header: _angular_core.InputSignal<boolean>;
3050
3074
  ogcFilterCollapse: boolean;
3051
- readonly badge: _angular_core.Signal<string | number>;
3052
- getBadge(): string | number;
3075
+ readonly badge: _angular_core.Signal<string | number | undefined>;
3076
+ getBadge(): string | number | undefined;
3053
3077
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OgcFilterButtonComponent, never>;
3054
3078
  static ɵcmp: _angular_core.ɵɵ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>;
3055
3079
  }
@@ -3059,28 +3083,40 @@ declare class OgcFilterFormComponent implements OnInit {
3059
3083
  ogcFilterOperator: typeof OgcFilterOperator;
3060
3084
  filteredValues$: Observable<string[]>;
3061
3085
  filteredFields$: Observable<SourceFieldsOptionsParams[]>;
3062
- allOgcFilterOperators: any;
3063
- ogcFilterOperators$: BehaviorSubject<Record<string, any>>;
3064
- igoSpatialSelectors: any;
3086
+ allOgcFilterOperators: {
3087
+ [x: string]: {
3088
+ spatial: boolean;
3089
+ fieldRestrict: string[];
3090
+ };
3091
+ };
3092
+ ogcFilterOperators$: BehaviorSubject<Record<string, any> | undefined>;
3093
+ igoSpatialSelectors: {
3094
+ type: string;
3095
+ }[];
3065
3096
  value: string;
3066
3097
  inputOperator: any;
3067
- selectedField$: BehaviorSubject<SourceFieldsOptionsParams>;
3098
+ selectedField$: BehaviorSubject<SourceFieldsOptionsParams | undefined>;
3068
3099
  fields$: BehaviorSubject<SourceFieldsOptionsParams[]>;
3069
3100
  color: string;
3070
3101
  disabled: any;
3071
3102
  currentFilterIsSpatial$: BehaviorSubject<boolean>;
3072
3103
  defaultStepMillisecond: number;
3073
- inputClearable: string;
3074
- readonly refreshFilters: _angular_core.InputSignal<() => void>;
3075
- readonly datasource: _angular_core.InputSignal<OgcFilterableDataSource>;
3076
- readonly map: _angular_core.InputSignal<MapBase>;
3104
+ inputClearable?: string;
3105
+ readonly refreshFilters: _angular_core.InputSignal<(() => void) | undefined>;
3106
+ readonly datasource: _angular_core.InputSignal<OgcFilterableDataSource | undefined>;
3107
+ readonly map: _angular_core.InputSignal<MapBase | undefined>;
3077
3108
  readonly currentFilter: _angular_core.InputSignal<any>;
3078
3109
  set snrc(value: any);
3079
3110
  get snrc(): any;
3080
3111
  private _snrc;
3081
- readonly floatLabel: _angular_core.InputSignal<FloatLabelType>;
3112
+ readonly floatLabel: _angular_core.InputSignal<FloatLabelType | undefined>;
3082
3113
  get activeFilters(): _igo2_geo.OgcInterfaceFilterOptions[];
3083
- get allowedOperators(): any;
3114
+ get allowedOperators(): {
3115
+ [x: string]: {
3116
+ spatial: boolean;
3117
+ fieldRestrict: string[];
3118
+ };
3119
+ };
3084
3120
  constructor();
3085
3121
  ngOnInit(): void;
3086
3122
  updateFieldsList(value?: string): void;
@@ -3089,7 +3125,7 @@ declare class OgcFilterFormComponent implements OnInit {
3089
3125
  private _filterValues;
3090
3126
  clearSelectedField(): void;
3091
3127
  isClearable(pos?: number): any;
3092
- clearProperty(pos?: number): string;
3128
+ clearProperty(pos?: number): "" | undefined;
3093
3129
  toggleFilterState(event: any): void;
3094
3130
  deleteFilter(): void;
3095
3131
  changeLogical(logical: string): void;
@@ -3103,24 +3139,25 @@ declare class OgcFilterFormComponent implements OnInit {
3103
3139
  changeSNRC(value: any): void;
3104
3140
  changeSNRCGeometry(): void;
3105
3141
  changeMapExtentGeometry(refresh?: boolean): void;
3106
- detectProperty(pos?: number): string;
3142
+ detectProperty(pos?: number): string | undefined;
3107
3143
  private currentFilterIsSpatial;
3108
3144
  isTemporalOperator(): boolean;
3109
3145
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OgcFilterFormComponent, never>;
3110
3146
  static ɵcmp: _angular_core.ɵɵ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>;
3111
3147
  }
3112
3148
 
3149
+ type OgcSelectorItem = OgcPushButton | OgcCheckbox | OgcRadioButton | OgcSelect | OgcAutocomplete;
3113
3150
  declare class OgcFilterSelectionComponent implements OnInit {
3114
3151
  private ogcFilterService;
3115
3152
  private formBuilder;
3116
3153
  private domService;
3117
3154
  private configService;
3118
3155
  private cdRef;
3119
- readonly sel: _angular_core.Signal<MatSelect>;
3120
- readonly matAutocomplete: _angular_core.Signal<MatAutocompleteTrigger>;
3121
- readonly refreshFilters: _angular_core.InputSignal<() => void>;
3122
- readonly datasource: _angular_core.InputSignal<OgcFilterableDataSource>;
3123
- readonly map: _angular_core.InputSignal<MapBase>;
3156
+ readonly sel: _angular_core.Signal<MatSelect | undefined>;
3157
+ readonly matAutocomplete: _angular_core.Signal<MatAutocompleteTrigger | undefined>;
3158
+ readonly refreshFilters: _angular_core.InputSignal<(() => void) | undefined>;
3159
+ readonly datasource: _angular_core.InputSignal<OgcFilterableDataSource | undefined>;
3160
+ readonly map: _angular_core.InputSignal<MapBase | undefined>;
3124
3161
  checkboxesIndex: _angular_core.ModelSignal<number>;
3125
3162
  radioButtonsIndex: _angular_core.ModelSignal<number>;
3126
3163
  baseIndex: _angular_core.ModelSignal<number>;
@@ -3133,36 +3170,36 @@ declare class OgcFilterSelectionComponent implements OnInit {
3133
3170
  private ogcFilterWriter;
3134
3171
  color: string;
3135
3172
  selectAllSelected: boolean;
3136
- selectEnabled$: BehaviorSubject<any>;
3137
- selectEnableds$: BehaviorSubject<any[]>;
3173
+ selectEnabled$: BehaviorSubject<OgcSelectorItem | undefined>;
3174
+ selectEnableds$: BehaviorSubject<OgcSelectorItem[]>;
3138
3175
  autocompleteEnableds$: BehaviorSubject<string[]>;
3139
3176
  filteredOgcAutocomplete: Record<string, Observable<any[]>>;
3140
3177
  applyFiltersTimeout: any;
3141
- get ogcFiltersSelectors(): any[];
3142
- get currentPushButtonsGroup(): any;
3143
- set currentPushButtonsGroup(value: any);
3144
- get currentCheckboxesGroup(): any;
3145
- set currentCheckboxesGroup(value: any);
3146
- get currentRadioButtonsGroup(): any;
3147
- set currentRadioButtonsGroup(value: any);
3148
- get currentSelectGroup(): any;
3149
- set currentSelectGroup(value: any);
3150
- get currentAutocompleteGroup(): any;
3151
- set currentAutocompleteGroup(value: any);
3152
- get selectEnabled(): any;
3153
- set selectEnabled(value: any);
3154
- get selectEnableds(): any[];
3155
- set selectEnableds(value: any[]);
3178
+ get ogcFiltersSelectors(): _igo2_geo.IgoOgcSelector[];
3179
+ get currentPushButtonsGroup(): SelectorGroup;
3180
+ set currentPushButtonsGroup(value: SelectorGroup);
3181
+ get currentCheckboxesGroup(): SelectorGroup;
3182
+ set currentCheckboxesGroup(value: SelectorGroup);
3183
+ get currentRadioButtonsGroup(): SelectorGroup;
3184
+ set currentRadioButtonsGroup(value: SelectorGroup);
3185
+ get currentSelectGroup(): SelectorGroup;
3186
+ set currentSelectGroup(value: SelectorGroup);
3187
+ get currentAutocompleteGroup(): SelectorGroup;
3188
+ set currentAutocompleteGroup(value: SelectorGroup);
3189
+ get selectEnabled(): OgcSelectorItem | undefined;
3190
+ set selectEnabled(value: OgcSelectorItem | undefined);
3191
+ get selectEnableds(): OgcSelectorItem[];
3192
+ set selectEnableds(value: OgcSelectorItem[]);
3156
3193
  get autocompleteEnableds(): string[];
3157
3194
  set autocompleteEnableds(filterList: string[]);
3158
3195
  checkedStatus(autocompleteFilter: string): boolean;
3159
3196
  constructor();
3160
3197
  private buildForm;
3161
- getPushButtonsGroups(): SelectorGroup[];
3162
- getCheckboxesGroups(): SelectorGroup[];
3163
- getRadioButtonsGroups(): SelectorGroup[];
3164
- getSelectGroups(): SelectorGroup[];
3165
- getAutocompleteGroups(): SelectorGroup[];
3198
+ getPushButtonsGroups(): SelectorGroup[] | undefined;
3199
+ getCheckboxesGroups(): SelectorGroup[] | undefined;
3200
+ getRadioButtonsGroups(): SelectorGroup[] | undefined;
3201
+ getSelectGroups(): SelectorGroup[] | undefined;
3202
+ getAutocompleteGroups(): SelectorGroup[] | undefined;
3166
3203
  ngOnInit(): Promise<void>;
3167
3204
  private initSelectEnabled;
3168
3205
  private initAutocompleteEnableds;
@@ -3170,30 +3207,32 @@ declare class OgcFilterSelectionComponent implements OnInit {
3170
3207
  getSelectDomValues(): Promise<void>;
3171
3208
  onInputChange(): void;
3172
3209
  getAutocompleteDomValues(): Promise<void>;
3173
- getButtonColor(pushButton: OgcPushButton): any;
3210
+ getButtonColor(pushButton: OgcPushButton): {
3211
+ 'background-color': string;
3212
+ } | undefined;
3174
3213
  bundleIsVertical(bundle: OgcSelectorBundle): boolean;
3175
3214
  private onPushButtonsChangeGroup;
3176
3215
  private onCheckboxesChangeGroup;
3177
3216
  private onRadioButtonsChangeGroup;
3178
3217
  private onSelectChangeGroup;
3179
3218
  private onAutocompleteChangeGroup;
3180
- onSelectionChange(currentOgcSelection?: any, selectorType?: any): void;
3219
+ onSelectionChange(currentOgcSelection?: any, selectorType?: string): void;
3181
3220
  emptyRadioButtons(): void;
3182
3221
  emptySelect(): void;
3183
3222
  emptyAutocomplete(): void;
3184
3223
  toggleAllSelection(): void;
3185
- selectOptionClick(value: any, bundle: any, event?: any): void;
3224
+ selectOptionClick(value: OgcSelectorItem, bundle: OgcSelectorBundle, event?: any): void;
3186
3225
  toggleAutocompleteOption(event: Event, toggledFilter: string): void;
3187
3226
  toggleSelection(toggledFilter: string): void;
3188
3227
  displayFn(): string;
3189
3228
  private applyFilters;
3190
- isMoreResults(bundle: any, type: any): boolean;
3191
- displayMoreResults(type: any): void;
3192
- isLessResults(bundle: any, type: any): boolean;
3193
- displayLessResults(type: any): void;
3229
+ isMoreResults(bundle: any, type: string): boolean;
3230
+ displayMoreResults(type: string): void;
3231
+ isLessResults(bundle: any, type: string): boolean;
3232
+ displayLessResults(type: string): void;
3194
3233
  isTemporalOperator(): boolean;
3195
3234
  changeProperty(value: any, pos?: number, refreshFilter?: boolean): void;
3196
- detectProperty(pos?: number): string;
3235
+ detectProperty(pos?: number): string | undefined;
3197
3236
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OgcFilterSelectionComponent, never>;
3198
3237
  static ɵcmp: _angular_core.ɵɵ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>;
3199
3238
  }
@@ -3209,8 +3248,8 @@ declare class OGCFilterTimeService {
3209
3248
  stepIsHourDuration(step: string): boolean;
3210
3249
  stepIsMinuteDuration(step: string): boolean;
3211
3250
  dateToNumber(date: Date): number;
3212
- addStep(value: any, stepMillisecond: any): Date;
3213
- subtractStep(value: any, stepMillisecond: any): Date;
3251
+ addStep(value: moment.MomentInput, stepMillisecond: number): Date;
3252
+ subtractStep(value: moment.MomentInput, stepMillisecond: number): Date;
3214
3253
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OGCFilterTimeService, never>;
3215
3254
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<OGCFilterTimeService>;
3216
3255
  }
@@ -3222,8 +3261,8 @@ declare class OgcFilterTimeSliderComponent implements OnInit {
3222
3261
  readonly max: _angular_core.InputSignal<any>;
3223
3262
  readonly datasource: _angular_core.InputSignal<any>;
3224
3263
  readonly changeProperty: _angular_core.OutputEmitterRef<any>;
3225
- readonly slider: _angular_core.Signal<MatSlider>;
3226
- interval: any;
3264
+ readonly slider: _angular_core.Signal<MatSlider | undefined>;
3265
+ interval?: number;
3227
3266
  sliderValue: _angular_core.WritableSignal<number>;
3228
3267
  calculatedStep: number;
3229
3268
  readonly _defaultDisplayFormat: string;
@@ -3237,11 +3276,11 @@ declare class OgcFilterTimeSliderComponent implements OnInit {
3237
3276
  get stepMillisecond(): number;
3238
3277
  constructor();
3239
3278
  ngOnInit(): void;
3240
- sliderDisplayWith: (value: any) => string;
3279
+ sliderDisplayWith: (value: number) => string;
3241
3280
  playFilter(): void;
3242
3281
  stopFilter(): void;
3243
3282
  resetFilter(): void;
3244
- handleSliderInput(matSliderChange: any): void;
3283
+ handleSliderInput(value: number): void;
3245
3284
  calculateStep(): void;
3246
3285
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OgcFilterTimeSliderComponent, never>;
3247
3286
  static ɵcmp: _angular_core.ɵɵ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>;
@@ -3249,7 +3288,7 @@ declare class OgcFilterTimeSliderComponent implements OnInit {
3249
3288
 
3250
3289
  declare class OgcFilterTimeComponent implements OnInit {
3251
3290
  ogcFilterTimeService: OGCFilterTimeService;
3252
- readonly datasource: _angular_core.InputSignal<OgcFilterableDataSource>;
3291
+ readonly datasource: _angular_core.InputSignal<OgcFilterableDataSource | undefined>;
3253
3292
  readonly currentFilter: _angular_core.InputSignal<any>;
3254
3293
  readonly changeProperty: _angular_core.OutputEmitterRef<any>;
3255
3294
  readonly _defaultMin: string;
@@ -3260,15 +3299,15 @@ declare class OgcFilterTimeComponent implements OnInit {
3260
3299
  sliderMode: _angular_core.WritableSignal<boolean>;
3261
3300
  readonly defaultStepMillisecond = 60000;
3262
3301
  options: OgcFilterableDataSourceOptions;
3263
- onlyYearBegin: number;
3264
- onlyYearEnd: number;
3302
+ onlyYearBegin: number | undefined;
3303
+ onlyYearEnd: number | undefined;
3265
3304
  calendarTypeYear: boolean;
3266
3305
  resetIcon: string;
3267
3306
  filterStateDisable: boolean;
3268
- readonly beginDatepicker: _angular_core.Signal<DatepickerComponent>;
3269
- readonly endDatepicker: _angular_core.Signal<DatepickerComponent>;
3270
- readonly beginTime: _angular_core.Signal<TimepickerComponent>;
3271
- readonly endTime: _angular_core.Signal<TimepickerComponent>;
3307
+ readonly beginDatepicker: _angular_core.Signal<DatepickerComponent | undefined>;
3308
+ readonly endDatepicker: _angular_core.Signal<DatepickerComponent | undefined>;
3309
+ readonly beginTime: _angular_core.Signal<TimepickerComponent | undefined>;
3310
+ readonly endTime: _angular_core.Signal<TimepickerComponent | undefined>;
3272
3311
  private filterOriginConfig;
3273
3312
  get step(): string;
3274
3313
  get stepMilliseconds(): number;
@@ -3282,7 +3321,7 @@ declare class OgcFilterTimeComponent implements OnInit {
3282
3321
  resolveDate: typeof resolveDate;
3283
3322
  ngOnInit(): void;
3284
3323
  changeTemporalProperty(value: Date | TimeFrame, position: number, refreshFilter?: boolean): void;
3285
- handleDate(value: string): Date;
3324
+ handleDate(value: string | undefined): Date | undefined;
3286
3325
  calendarType(): 'year' | 'month' | 'date' | 'datetime';
3287
3326
  yearSelected(year: Date | TimeFrame, property?: string, refreshFilter?: boolean): void;
3288
3327
  monthSelected(month: Date | TimeFrame, property?: 'begin' | 'end', refreshFilter?: boolean): void;
@@ -3296,7 +3335,7 @@ declare class OgcFilterTimeComponent implements OnInit {
3296
3335
  hour: number;
3297
3336
  minute: number;
3298
3337
  }, position: number): void;
3299
- dateNotTimeFrame(value: Date | TimeFrame | undefined, fallbackDate: string): boolean;
3338
+ dateNotTimeFrame(value: Date | TimeFrame | undefined, fallbackDate: string | undefined): boolean;
3300
3339
  restrictedToStep(): boolean;
3301
3340
  private isCalendarYearMode;
3302
3341
  private initDateValues;
@@ -3314,11 +3353,11 @@ declare class OgcFilterTimeComponent implements OnInit {
3314
3353
  }
3315
3354
 
3316
3355
  declare class OgcFilterableFormComponent {
3317
- readonly datasource: _angular_core.InputSignal<OgcFilterableDataSource>;
3318
- readonly map: _angular_core.InputSignal<MapBase>;
3319
- readonly refreshFilters: _angular_core.InputSignal<() => void>;
3320
- get refreshFunc(): () => void;
3321
- get advancedOgcFilters(): boolean;
3356
+ readonly datasource: _angular_core.InputSignal<OgcFilterableDataSource | undefined>;
3357
+ readonly map: _angular_core.InputSignal<MapBase | undefined>;
3358
+ readonly refreshFilters: _angular_core.InputSignal<(() => void) | undefined>;
3359
+ get refreshFunc(): (() => void) | undefined;
3360
+ get advancedOgcFilters(): boolean | undefined;
3322
3361
  get currentFilter(): any;
3323
3362
  color: string;
3324
3363
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OgcFilterableFormComponent, never>;
@@ -3338,10 +3377,10 @@ declare class OgcFilterableItemComponent implements OnInit, OnDestroy {
3338
3377
  inResolutionRange$: BehaviorSubject<boolean>;
3339
3378
  private resolution$$;
3340
3379
  private ogcFilterWriter;
3341
- readonly layer: _angular_core.InputSignal<Layer>;
3342
- readonly map: _angular_core.InputSignal<MapBase>;
3380
+ readonly layer: _angular_core.InputSignal<Layer | undefined>;
3381
+ readonly map: _angular_core.InputSignal<MapBase | undefined>;
3343
3382
  readonly header: _angular_core.InputSignal<boolean>;
3344
- get refreshFunc(): any;
3383
+ get refreshFunc(): (force?: boolean) => void;
3345
3384
  get datasource(): OgcFilterableDataSource;
3346
3385
  constructor();
3347
3386
  toggleLayerVisibility(): void;
@@ -3361,23 +3400,21 @@ declare class OgcFilterableItemComponent implements OnInit, OnDestroy {
3361
3400
  static ɵcmp: _angular_core.ɵɵ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>;
3362
3401
  }
3363
3402
 
3364
- declare class OgcFilterableListBindingDirective implements OnInit, OnDestroy {
3403
+ declare class OgcFilterableListBindingDirective implements OnInit {
3365
3404
  private mapService;
3405
+ private destroyRef;
3366
3406
  private component;
3367
- private layers$$;
3368
3407
  constructor();
3369
3408
  ngOnInit(): void;
3370
- ngOnDestroy(): void;
3371
3409
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OgcFilterableListBindingDirective, never>;
3372
3410
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<OgcFilterableListBindingDirective, "[igoOgcFilterableListBinding]", never, {}, {}, never, never, true, never>;
3373
3411
  }
3374
3412
 
3375
3413
  declare class OgcFilterableListComponent {
3376
3414
  readonly layers: _angular_core.ModelSignal<AnyLayer[]>;
3377
- readonly map: _angular_core.InputSignal<MapBase>;
3378
3415
  setLayers(layers: AnyLayer[]): void;
3379
3416
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OgcFilterableListComponent, never>;
3380
- static ɵcmp: _angular_core.ɵɵ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>;
3417
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<OgcFilterableListComponent, "igo-ogc-filterable-list", never, { "layers": { "alias": "layers"; "required": true; "isSignal": true; }; }, { "layers": "layersChange"; }, never, never, true, never>;
3381
3418
  }
3382
3419
 
3383
3420
  declare enum GeometryType {
@@ -3400,9 +3437,9 @@ declare enum CoordinatesUnit {
3400
3437
 
3401
3438
  declare class DrawIconService {
3402
3439
  protected config: ConfigService<any>;
3403
- protected icons: string[];
3440
+ protected icons?: string[];
3404
3441
  constructor();
3405
- getIcons(): string[];
3442
+ getIcons(): string[] | undefined;
3406
3443
  getPath(): string[];
3407
3444
  getIconsList(): void;
3408
3445
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DrawIconService, never>;
@@ -3454,16 +3491,16 @@ declare class DrawControl {
3454
3491
  * Observables from predefined radius (defaults to false and undefined)
3455
3492
  */
3456
3493
  ispredefinedRadius$: BehaviorSubject<boolean>;
3457
- predefinedRadius$: BehaviorSubject<number>;
3458
- radiusDrawEnd$: BehaviorSubject<number>;
3494
+ predefinedRadius$: BehaviorSubject<number | undefined>;
3495
+ radiusDrawEnd$: BehaviorSubject<number | undefined>;
3459
3496
  private keyDown$$;
3460
- private olGeometryType;
3497
+ private olGeometryType?;
3461
3498
  private olInteractionStyle;
3462
3499
  private olMap;
3463
3500
  private olDrawingLayer;
3464
- private olDrawInteraction;
3465
- private olSelectInteraction;
3466
- private olModifyInteraction;
3501
+ private olDrawInteraction?;
3502
+ private olSelectInteraction?;
3503
+ private olModifyInteraction?;
3467
3504
  private onDrawStartKey;
3468
3505
  private onDrawEndKey;
3469
3506
  private onDrawAbortKey;
@@ -3494,7 +3531,7 @@ declare class DrawControl {
3494
3531
  * Return the drawing layer source
3495
3532
  */
3496
3533
  getSource(): olSourceVector;
3497
- setOlInteractionStyle(style: any): void;
3534
+ setOlInteractionStyle(style: StyleLike): void;
3498
3535
  /**
3499
3536
  * Set the current geometry type
3500
3537
  * @param geometryType the geometry type
@@ -3503,7 +3540,7 @@ declare class DrawControl {
3503
3540
  /**
3504
3541
  * Get the current geometry type
3505
3542
  */
3506
- getGeometryType(): string | typeof OlGeometry;
3543
+ getGeometryType(): string | typeof OlGeometry | undefined;
3507
3544
  /**
3508
3545
  * Create a drawing source if none is defined in the options
3509
3546
  */
@@ -3603,9 +3640,9 @@ type FeatureWithDraw = Feature<FeatureWithDrawProperties>;
3603
3640
  interface FeatureWithDrawProperties {
3604
3641
  id: string;
3605
3642
  draw: string;
3606
- longitude: number;
3607
- latitude: number;
3608
- rad: number;
3643
+ longitude: number | undefined;
3644
+ latitude: number | undefined;
3645
+ rad: number | undefined;
3609
3646
  fontStyle: string;
3610
3647
  drawingStyle: DrawingStyle;
3611
3648
  offsetX: number;
@@ -3657,7 +3694,7 @@ declare function DDtoDMS(value: Coordinate, unit: CoordinatesUnit): string[] | u
3657
3694
  * @param projectionOut Feature object projection
3658
3695
  * @returns OpenLayers feature object
3659
3696
  */
3660
- declare function featureToOl(feature: Feature, projectionOut: string, getId?: (Feature: any) => EntityKey): OlFeature<OlGeometry>;
3697
+ declare function featureToOl(feature: Feature, projectionOut: string, getId?: (arg0: Feature) => EntityKey): OlFeature<OlGeometry>;
3661
3698
  declare function renderFeatureFromOl(olRenderFeature: RenderFeature, projectionIn: string, olLayer?: OlLayer<olSource>, projectionOut?: string): Feature;
3662
3699
  /**
3663
3700
  * Create a feature object out of an OL feature
@@ -3764,12 +3801,12 @@ declare class FeatureStoreInMapExtentStrategy extends EntityStoreStrategy {
3764
3801
  * Bind this strategy to a store and start watching for Ol source changes
3765
3802
  * @param store Feature store
3766
3803
  */
3767
- bindStore(store: FeatureStore): void;
3804
+ bindStore(store: EntityStore): void;
3768
3805
  /**
3769
3806
  * Unbind this strategy from a store and stop watching for Ol source changes
3770
3807
  * @param store Feature store
3771
3808
  */
3772
- unbindStore(store: FeatureStore): void;
3809
+ unbindStore(store: EntityStore): void;
3773
3810
  /**
3774
3811
  * Start watching all stores already bound to that strategy at once.
3775
3812
  * @internal
@@ -3815,12 +3852,12 @@ declare class FeatureStoreInMapResolutionStrategy extends EntityStoreStrategy {
3815
3852
  * Bind this strategy to a store and start watching for Ol source changes
3816
3853
  * @param store Feature store
3817
3854
  */
3818
- bindStore(store: FeatureStore): void;
3855
+ bindStore(store: EntityStore): void;
3819
3856
  /**
3820
3857
  * Unbind this strategy from a store and stop watching for Ol source changes
3821
3858
  * @param store Feature store
3822
3859
  */
3823
- unbindStore(store: FeatureStore): void;
3860
+ unbindStore(store: EntityStore): void;
3824
3861
  /**
3825
3862
  * Start watching all stores already bound to that strategy at once.
3826
3863
  * @internal
@@ -3848,6 +3885,170 @@ declare class FeatureStoreInMapResolutionStrategy extends EntityStoreStrategy {
3848
3885
  private unwatchAll;
3849
3886
  }
3850
3887
 
3888
+ declare enum QueryFormat {
3889
+ GML2 = "gml2",
3890
+ GML3 = "gml3",
3891
+ JSON = "json",
3892
+ GEOJSON = "geojson",
3893
+ GEOJSON2 = "geojson2",
3894
+ ESRIJSON = "esrijson",
3895
+ TEXT = "text",
3896
+ HTML = "html",
3897
+ HTMLGML2 = "htmlgml2"
3898
+ }
3899
+ declare enum QueryFormatMimeType {
3900
+ GML2 = "application/vnd.ogc.gml",
3901
+ GML3 = "application/vnd.ogc.gml/3.1.1",
3902
+ JSON = "application/json",
3903
+ GEOJSON = "application/geojson",
3904
+ GEOJSON2 = "geojson",
3905
+ ESRIJSON = "application/json",
3906
+ TEXT = "text/plain",
3907
+ HTML = "text/html",
3908
+ HTMLGML2 = "text/html"
3909
+ }
3910
+ declare enum QueryHtmlTarget {
3911
+ IFRAME = "iframe",
3912
+ BLANK = "_blank"
3913
+ }
3914
+
3915
+ type CatalogQueryFormatTypes = Record<QueryFormat, string | string[]>;
3916
+ declare enum CatalogItemType {
3917
+ Layer = "layer",
3918
+ Group = "group"
3919
+ }
3920
+ declare enum TypeCatalog {
3921
+ wms = 0,
3922
+ wmts = 1,
3923
+ baselayers = 2,
3924
+ arcgisrest = 3,
3925
+ tilearcgisrest = 4,
3926
+ imagearcgisrest = 5,
3927
+ composite = 6
3928
+ }
3929
+ type TypeCatalogStrings = keyof typeof TypeCatalog;
3930
+
3931
+ interface MetadataOptions {
3932
+ url: string;
3933
+ extern?: boolean;
3934
+ abstract?: string;
3935
+ keywordList?: string[];
3936
+ layerTitle?: string;
3937
+ type?: TypeCatalogStrings;
3938
+ }
3939
+ interface MetadataLayerOptions extends LayerOptions {
3940
+ metadata?: MetadataOptions;
3941
+ }
3942
+
3943
+ interface AddedChangeEmitter {
3944
+ added: boolean;
3945
+ layer: CatalogItemLayer;
3946
+ event: Event;
3947
+ }
3948
+ interface AddedChangeGroupEmitter {
3949
+ added: boolean;
3950
+ group: CatalogItemGroup;
3951
+ event: Event;
3952
+ }
3953
+ interface ICatalog {
3954
+ id: string;
3955
+ title?: string;
3956
+ url: string;
3957
+ removable?: boolean;
3958
+ externalProvider?: boolean;
3959
+ items?: CatalogItem[];
3960
+ type?: TypeCatalogStrings;
3961
+ version?: string;
3962
+ matrixSet?: string;
3963
+ forcedProperties?: ForcedProperty[];
3964
+ requestEncoding?: string;
3965
+ regFilters?: string[];
3966
+ groupImpose?: CatalogItemGroup;
3967
+ groupSeparator?: string;
3968
+ queryFormat?: QueryFormat | CatalogQueryFormatTypes;
3969
+ queryParams?: Record<string, string>;
3970
+ sourceOptions?: Record<string, any>;
3971
+ tooltipType?: TooltipType.ABSTRACT | TooltipType.TITLE;
3972
+ sortDirection?: 'asc' | 'desc';
3973
+ setCrossOriginAnonymous?: boolean;
3974
+ showLegend?: boolean;
3975
+ }
3976
+ interface ForcedProperty {
3977
+ layerName: any;
3978
+ title?: string;
3979
+ metadataUrl?: string;
3980
+ metadataAbstract?: string;
3981
+ metadataAbstractAll?: string;
3982
+ metadataUrlAll?: string;
3983
+ }
3984
+ interface ICompositeCatalog extends Omit<ICatalog, 'url'> {
3985
+ composite: ICatalog[];
3986
+ }
3987
+ interface CatalogItem {
3988
+ id: string;
3989
+ title: string;
3990
+ type?: CatalogItemType;
3991
+ address?: string;
3992
+ externalProvider?: boolean;
3993
+ }
3994
+ interface CatalogItemLayer<L = MetadataLayerOptions> extends CatalogItem {
3995
+ options: L;
3996
+ }
3997
+ interface CatalogItemGroup extends CatalogItem {
3998
+ items?: CatalogItem[];
3999
+ sortDirection?: 'asc' | 'desc';
4000
+ }
4001
+ interface CatalogItemState extends EntityState {
4002
+ added?: boolean;
4003
+ }
4004
+ interface CatalogServiceOptions {
4005
+ /** @deprecated Use baselayers instead*/
4006
+ baseLayers?: boolean;
4007
+ baselayers?: boolean;
4008
+ /** @deprecated Not used anymore*/
4009
+ emailAddress?: string;
4010
+ url?: string;
4011
+ sources?: (ICatalog | ICompositeCatalog)[];
4012
+ /** @deprecated Use url instead */
4013
+ sourcesUrl?: string;
4014
+ }
4015
+ interface WmtsCapabilities {
4016
+ Contents: {
4017
+ Layer: WmtsCapabilityLayer[];
4018
+ };
4019
+ ServiceIdentification?: {
4020
+ Abstract?: string;
4021
+ };
4022
+ }
4023
+ interface WmtsCapabilityLayer {
4024
+ Identifier: string;
4025
+ Title?: string;
4026
+ }
4027
+ interface WmsCapabilityLayer {
4028
+ Name?: string;
4029
+ Title: string;
4030
+ Abstract?: string;
4031
+ Layer?: WmsCapabilityLayer[];
4032
+ DataURL?: {
4033
+ OnlineResource: string;
4034
+ }[];
4035
+ MinScaleDenominator?: number;
4036
+ MaxScaleDenominator?: number;
4037
+ EX_GeographicBoundingBox?: number[];
4038
+ Style?: WmsStyle[];
4039
+ Dimension?: WmsDimension[];
4040
+ queryable?: boolean;
4041
+ KeywordList?: string[];
4042
+ }
4043
+ interface WmsStyle {
4044
+ Name: string;
4045
+ Title: string;
4046
+ }
4047
+ interface WmsDimension {
4048
+ values?: string;
4049
+ default?: string;
4050
+ }
4051
+
3851
4052
  declare enum TypeCapabilities {
3852
4053
  wms = "wms",
3853
4054
  wmts = "wmts",
@@ -3872,6 +4073,75 @@ declare enum ArcGISRestCapabilitiesLayerTypes {
3872
4073
  RasterLayer = "Raster Layer",
3873
4074
  GroupLayer = "Group Layer"
3874
4075
  }
4076
+ /**
4077
+ * Interface representing an ArcGIS Vector Tile Service response.
4078
+ * For detailed information, see the ArcGIS Vector Tile Service documentation:
4079
+ * https://developers.arcgis.com/rest/services-reference/enterprise/vector-tile-service/
4080
+ */
4081
+ interface IArcgisVectorTileServerCapabilities {
4082
+ currentVersion: number;
4083
+ name: string;
4084
+ capabilities?: string;
4085
+ type: 'indexedVector';
4086
+ tileMap?: string;
4087
+ defaultStyles?: string;
4088
+ tiles: string[];
4089
+ exportTilesAllowed?: boolean;
4090
+ maxExportTilesCount?: number;
4091
+ initialExtent: vectorTileExtent;
4092
+ fullExtent: vectorTileExtent;
4093
+ minScale?: number;
4094
+ maxScale?: number;
4095
+ tileInfo: TileInfo;
4096
+ maxzoom?: number;
4097
+ minLOD?: number;
4098
+ maxLOD?: number;
4099
+ resourceInfo?: ResourceInfo;
4100
+ copyrightText?: string;
4101
+ [key: string]: unknown;
4102
+ }
4103
+ interface Lod {
4104
+ level: number;
4105
+ resolution: number;
4106
+ scale: number;
4107
+ }
4108
+ interface Point {
4109
+ x: number;
4110
+ y: number;
4111
+ }
4112
+ interface SpatialReference {
4113
+ wkid?: number;
4114
+ latestWkid?: number;
4115
+ [key: string]: any;
4116
+ }
4117
+ interface vectorTileExtent {
4118
+ xmin: number;
4119
+ ymin: number;
4120
+ xmax: number;
4121
+ ymax: number;
4122
+ spatialReference: SpatialReference;
4123
+ }
4124
+ interface TileInfo {
4125
+ rows: number;
4126
+ cols: number;
4127
+ dpi: number;
4128
+ format: string;
4129
+ origin: Point;
4130
+ spatialReference: SpatialReference;
4131
+ lods: Lod[];
4132
+ }
4133
+ interface ResourceInfo {
4134
+ styleVersion: number;
4135
+ tileCompression: string;
4136
+ cacheInfo: {
4137
+ storageInfo: {
4138
+ packetSize: number;
4139
+ storageFormat: string;
4140
+ };
4141
+ };
4142
+ }
4143
+ declare const GetCapabilitiesParams: readonly ["request", "service", "version"];
4144
+ type GetCapabilitiesParams = (typeof GetCapabilitiesParams)[number];
3875
4145
 
3876
4146
  declare class CapabilitiesService {
3877
4147
  private http;
@@ -3890,8 +4160,8 @@ declare class CapabilitiesService {
3890
4160
  private parseArcgisOptions;
3891
4161
  private parseTileOrImageArcgisOptions;
3892
4162
  private findDataSourceInCapabilities;
3893
- getTimeFilter(layer: any): TimeFilterOptions;
3894
- getStyle(Style: any): LegendOptions;
4163
+ getTimeFilter(layer: WmsCapabilityLayer): TimeFilterOptions | undefined;
4164
+ getStyle(Style: WmsStyle[]): LegendOptions;
3895
4165
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CapabilitiesService, never>;
3896
4166
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<CapabilitiesService>;
3897
4167
  }
@@ -3906,10 +4176,10 @@ declare class PropertyTypeDetectorService {
3906
4176
  private regexService;
3907
4177
  geoServiceRegexes: GeoServiceDefinition[];
3908
4178
  constructor();
3909
- getPropertyType(value: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
4179
+ getPropertyType(value: unknown): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
3910
4180
  private isUrl;
3911
- isGeoService(value: any): boolean;
3912
- getGeoService(url: string, availableProperties: string[]): GeoServiceDefinition;
4181
+ isGeoService(value: unknown): boolean;
4182
+ getGeoService(url: string, availableProperties: string[]): GeoServiceDefinition | undefined;
3913
4183
  private getGeoServiceRegexes;
3914
4184
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PropertyTypeDetectorService, never>;
3915
4185
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<PropertyTypeDetectorService>;
@@ -3939,12 +4209,12 @@ declare class GeoPropertiesStrategy extends EntityStoreStrategy {
3939
4209
  * Bind this strategy to a store and start watching for Ol source changes
3940
4210
  * @param store Feature store
3941
4211
  */
3942
- bindStore(store: FeatureStore): void;
4212
+ bindStore(store: any): void;
3943
4213
  /**
3944
4214
  * Unbind this strategy from a store and stop watching for Ol source changes
3945
4215
  * @param store Feature store
3946
4216
  */
3947
- unbindStore(store: FeatureStore): void;
4217
+ unbindStore(store: any): void;
3948
4218
  /**
3949
4219
  * Start watching all stores already bound to that strategy at once.
3950
4220
  * @internal
@@ -3992,12 +4262,12 @@ declare class FeatureStoreLoadingStrategy extends EntityStoreStrategy {
3992
4262
  * Bind this strategy to a store and start watching for entities changes
3993
4263
  * @param store Feature store
3994
4264
  */
3995
- bindStore(store: FeatureStore): void;
4265
+ bindStore(store: EntityStore): void;
3996
4266
  /**
3997
4267
  * Unbind this strategy from a store and stop watching for entities changes
3998
4268
  * @param store Feature store
3999
4269
  */
4000
- unbindStore(store: FeatureStore): void;
4270
+ unbindStore(store: EntityStore): void;
4001
4271
  /**
4002
4272
  * Define the motion to apply on load
4003
4273
  * @param motion Feature motion
@@ -4063,12 +4333,12 @@ declare class FeatureStoreLoadingLayerStrategy extends EntityStoreStrategy {
4063
4333
  * Bind this strategy to a store and start watching for Ol source changes
4064
4334
  * @param store Feature store
4065
4335
  */
4066
- bindStore(store: FeatureStore): void;
4336
+ bindStore(store: EntityStore): void;
4067
4337
  /**
4068
4338
  * Unbind this strategy from a store and stop watching for Ol source changes
4069
4339
  * @param store Feature store
4070
4340
  */
4071
- unbindStore(store: FeatureStore): void;
4341
+ unbindStore(store: EntityStore): void;
4072
4342
  /**
4073
4343
  * Start watching all stores already bound to that strategy at once.
4074
4344
  * @internal
@@ -4144,13 +4414,13 @@ declare class FeatureStoreSelectionStrategy extends EntityStoreStrategy {
4144
4414
  * reactivation to properly setup watchers.
4145
4415
  * @param store Feature store
4146
4416
  */
4147
- bindStore(store: FeatureStore): void;
4417
+ bindStore(store: any): void;
4148
4418
  /**
4149
4419
  * Unbind this strategy from a store and force this strategy's
4150
4420
  * reactivation to properly setup watchers.
4151
4421
  * @param store Feature store
4152
4422
  */
4153
- unbindStore(store: FeatureStore): void;
4423
+ unbindStore(store: any): void;
4154
4424
  /**
4155
4425
  * Define the motion to apply on select
4156
4426
  * @param motion Feature motion
@@ -4287,12 +4557,12 @@ declare class FeatureStoreSearchIndexStrategy extends EntityStoreStrategy {
4287
4557
  * Bind this strategy to a store and start watching for entities changes
4288
4558
  * @param store Feature store
4289
4559
  */
4290
- bindStore(store: FeatureStore): void;
4560
+ bindStore(store: any): void;
4291
4561
  /**
4292
4562
  * Unbind this strategy from a store and stop watching for entities changes
4293
4563
  * @param store Feature store
4294
4564
  */
4295
- unbindStore(store: FeatureStore): void;
4565
+ unbindStore(store: any): void;
4296
4566
  /**
4297
4567
  * Start watching all stores already bound to that strategy at once.
4298
4568
  * @internal
@@ -4352,12 +4622,12 @@ declare class FeatureFormComponent {
4352
4622
  * Form
4353
4623
  */
4354
4624
  readonly form: _angular_core.InputSignal<Form>;
4355
- readonly feature: _angular_core.InputSignal<Feature<Record<string, any>>>;
4625
+ readonly feature: _angular_core.InputSignal<Feature<Record<string, any>> | undefined>;
4356
4626
  /**
4357
4627
  * Event emitted when the form is submitted
4358
4628
  */
4359
4629
  readonly submitForm: _angular_core.OutputEmitterRef<Feature<Record<string, any>>>;
4360
- readonly igoForm: _angular_core.Signal<FormComponent>;
4630
+ readonly igoForm: _angular_core.Signal<FormComponent | undefined>;
4361
4631
  /**
4362
4632
  * Transform the form data to a feature and emit an event
4363
4633
  * @param event Form submit event
@@ -4372,7 +4642,7 @@ declare class FeatureFormComponent {
4372
4642
  */
4373
4643
  private formDataToFeature;
4374
4644
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FeatureFormComponent, never>;
4375
- static ɵcmp: _angular_core.ɵɵ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>;
4645
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FeatureFormComponent, "igo-feature-form", never, { "form": { "alias": "form"; "required": true; "isSignal": true; }; "feature": { "alias": "feature"; "required": false; "isSignal": true; }; }, { "submitForm": "submitForm"; }, never, ["*", "[formButtons]"], true, never>;
4376
4646
  }
4377
4647
 
4378
4648
  interface SearchSourceOptions {
@@ -4462,7 +4732,7 @@ declare class SearchSource {
4462
4732
  */
4463
4733
  protected options: SearchSourceOptions;
4464
4734
  protected defaultOptions: SearchSourceOptions;
4465
- constructor(options: SearchSourceOptions, storageService?: StorageService);
4735
+ constructor(options: SearchSourceOptions, storageService?: StorageService | undefined);
4466
4736
  /**
4467
4737
  * Search source's title
4468
4738
  */
@@ -4485,7 +4755,7 @@ declare class SearchSource {
4485
4755
  /**
4486
4756
  * Search query params
4487
4757
  */
4488
- get params(): ISearchSourceParams | null;
4758
+ get params(): ISearchSourceParams | null | undefined;
4489
4759
  /**
4490
4760
  * Search settings
4491
4761
  */
@@ -4523,7 +4793,7 @@ declare class SearchSource {
4523
4793
  * @param hashtag hashtag from query
4524
4794
  */
4525
4795
  getHashtagsValid(term: string, settingsName: string): string[];
4526
- getSettingsValues(search: string): SearchSourceSettings;
4796
+ getSettingsValues(search: string): SearchSourceSettings | undefined;
4527
4797
  }
4528
4798
 
4529
4799
  declare class FeatureDetailsComponent implements OnInit, OnDestroy {
@@ -4537,10 +4807,10 @@ declare class FeatureDetailsComponent implements OnInit, OnDestroy {
4537
4807
  private state;
4538
4808
  private unsubscribe$;
4539
4809
  ready: boolean;
4540
- readonly source: _angular_core.InputSignal<SearchSource>;
4541
- readonly map: _angular_core.InputSignal<IgoMap>;
4542
- readonly toolbox: _angular_core.InputSignal<Toolbox>;
4543
- readonly feature: _angular_core.InputSignal<Feature<Record<string, any>>>;
4810
+ readonly source: _angular_core.InputSignal<SearchSource | undefined>;
4811
+ readonly map: _angular_core.InputSignal<IgoMap | undefined>;
4812
+ readonly toolbox: _angular_core.InputSignal<Toolbox | undefined>;
4813
+ readonly feature: _angular_core.InputSignal<Feature<Record<string, any>> | undefined>;
4544
4814
  readonly routeEvent: _angular_core.OutputEmitterRef<boolean>;
4545
4815
  readonly selectFeature: _angular_core.OutputEmitterRef<boolean>;
4546
4816
  readonly htmlDisplayEvent: _angular_core.OutputEmitterRef<boolean>;
@@ -4557,14 +4827,15 @@ declare class FeatureDetailsComponent implements OnInit, OnDestroy {
4557
4827
  ngOnDestroy(): void;
4558
4828
  urlSanitizer(value: any): SafeResourceUrl;
4559
4829
  isHtmlDisplay(): boolean;
4560
- htmlSanitizer(value: any): SafeResourceUrl;
4830
+ htmlSanitizer(value: any): SafeResourceUrl | undefined;
4561
4831
  isObject(value: any): boolean;
4562
4832
  openSecureUrl(value: any): void;
4563
4833
  isUrl(value: unknown): boolean;
4564
4834
  isDoc(value: unknown): boolean;
4565
4835
  isImg(value: unknown): boolean;
4566
4836
  hasEmbeddedLinks(value: unknown): boolean;
4567
- getEmbeddedLinkText(value: any): string;
4837
+ getEmbeddedLinks(value: string): string[];
4838
+ getEmbeddedLinkText(value: string): string;
4568
4839
  filterFeatureProperties(feature: any): Record<string, any>;
4569
4840
  /**
4570
4841
  * Copy the url to a clipboard
@@ -4577,8 +4848,8 @@ declare class FeatureDetailsComponent implements OnInit, OnDestroy {
4577
4848
  declare class FeatureDetailsDirective implements OnInit {
4578
4849
  private el;
4579
4850
  private component;
4580
- get feature(): _angular_core.InputSignal<_igo2_geo.Feature<Record<string, any>>>;
4581
- feature$: BehaviorSubject<any>;
4851
+ get feature(): _angular_core.InputSignal<Feature<Record<string, any>> | undefined>;
4852
+ feature$: BehaviorSubject<Feature<Record<string, any>> | undefined>;
4582
4853
  readonly routingEvent: _angular_core.OutputEmitterRef<void>;
4583
4854
  setFeature(): void;
4584
4855
  constructor();
@@ -4639,8 +4910,8 @@ declare class DrawComponent implements OnInit, OnDestroy {
4639
4910
  readonly map: _angular_core.InputSignal<IgoMap>;
4640
4911
  readonly stores: _angular_core.ModelSignal<FeatureStore<FeatureWithDraw>[]>;
4641
4912
  readonly drawControls: _angular_core.ModelSignal<[LayerId, DrawControl][]>;
4642
- readonly activeDrawingLayer: _angular_core.ModelSignal<VectorLayer>;
4643
- readonly activeLayerChange: _angular_core.OutputEmitterRef<VectorLayer>;
4913
+ readonly activeDrawingLayer: _angular_core.ModelSignal<VectorLayer | undefined>;
4914
+ readonly activeLayerChange: _angular_core.OutputEmitterRef<VectorLayer | undefined>;
4644
4915
  readonly drawControlsEvent: _angular_core.OutputEmitterRef<[LayerId, DrawControl][]>;
4645
4916
  readonly layersIDEvent: _angular_core.OutputEmitterRef<LayerId>;
4646
4917
  fillColor: string;
@@ -4652,9 +4923,9 @@ declare class DrawComponent implements OnInit, OnDestroy {
4652
4923
  private layerCounterID;
4653
4924
  draw$: BehaviorSubject<Draw>;
4654
4925
  private activeDrawingLayerSource;
4655
- private activeDrawControl;
4656
- private drawEnd$$;
4657
- private drawSelect$$;
4926
+ private activeDrawControl?;
4927
+ private drawEnd$$?;
4928
+ private drawSelect$$?;
4658
4929
  selectedFeatures$: BehaviorSubject<FeatureWithDraw[]>;
4659
4930
  fillForm: string;
4660
4931
  strokeForm: string;
@@ -4665,13 +4936,13 @@ declare class DrawComponent implements OnInit, OnDestroy {
4665
4936
  private subscriptions$$;
4666
4937
  position: string;
4667
4938
  form: UntypedFormGroup;
4668
- icons: string[];
4939
+ icons?: string[];
4669
4940
  icon: string;
4670
4941
  radiusFormControl: UntypedFormControl;
4671
4942
  measureUnit: MeasureLengthUnit;
4672
4943
  radiusFormControlChange$$: Subscription;
4673
- predefinedRadius$: BehaviorSubject<number>;
4674
- radiusDrawEnd$: BehaviorSubject<number>;
4944
+ predefinedRadius$: BehaviorSubject<number | undefined>;
4945
+ radiusDrawEnd$: BehaviorSubject<number | undefined>;
4675
4946
  /**
4676
4947
  * Available measure units for the measure type given
4677
4948
  * @internal
@@ -4680,7 +4951,7 @@ declare class DrawComponent implements OnInit, OnDestroy {
4680
4951
  private numberOfDrawings;
4681
4952
  isCreatingNewLayer: boolean;
4682
4953
  private currGeometryType;
4683
- readonly select: _angular_core.Signal<MatSelect>;
4954
+ readonly select: _angular_core.Signal<MatSelect | undefined>;
4684
4955
  constructor();
4685
4956
  ngOnInit(): void;
4686
4957
  /**
@@ -4728,7 +4999,7 @@ declare class DrawComponent implements OnInit, OnDestroy {
4728
4999
  /**
4729
5000
  * Called when the user double-clicks the selected drawing
4730
5001
  */
4731
- editLabelDrawing(feature: any): void;
5002
+ editLabelDrawing(feature: FeatureWithDraw): void;
4732
5003
  openShorcutsDialog(): void;
4733
5004
  deleteDrawings(): void;
4734
5005
  /**
@@ -4745,7 +5016,7 @@ declare class DrawComponent implements OnInit, OnDestroy {
4745
5016
  * Display the current layer with the current store and the current layerSource
4746
5017
  */
4747
5018
  onLayerChange(currLayer?: VectorLayer): void;
4748
- createLayer(newTitle?: any, isNewLayer?: any): void;
5019
+ createLayer(newTitle?: string, isNewLayer?: boolean): void;
4749
5020
  /**
4750
5021
  * Called when the user changes the color in a color picker
4751
5022
  * @param labelsAreShown wheter the labels are shown or not
@@ -4768,7 +5039,7 @@ declare class DrawComponent implements OnInit, OnDestroy {
4768
5039
  * @param offsetY vertical offset of the label
4769
5040
  */
4770
5041
  onOffsetLabelChange(labelsAreShown: boolean, offsetX: number, offsetY: number): void;
4771
- onIconChange(event?: any): void;
5042
+ onIconChange(event?: string): void;
4772
5043
  /**
4773
5044
  * Called when the user selects a new geometry type
4774
5045
  * @param geometryType the geometry type selected by the user
@@ -4787,8 +5058,8 @@ declare class DrawComponent implements OnInit, OnDestroy {
4787
5058
  private updateMeasureUnit;
4788
5059
  getFeatureFontSize(): string;
4789
5060
  getFeatureFontStyle(): string;
4790
- getFeatureFillColor(): string;
4791
- getFeatureStrokeColor(): string;
5061
+ getFeatureFillColor(): string | undefined;
5062
+ getFeatureStrokeColor(): string | undefined;
4792
5063
  getFeatureOffsetX(): number;
4793
5064
  getFeatureOffsetY(): number | "0";
4794
5065
  get allFontStyles(): string[];
@@ -4838,7 +5109,7 @@ declare class DrawComponent implements OnInit, OnDestroy {
4838
5109
  private elementStyle;
4839
5110
  private getRadius;
4840
5111
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DrawComponent, never>;
4841
- static ɵcmp: _angular_core.ɵɵ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>;
5112
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawComponent, "igo-draw", never, { "map": { "alias": "map"; "required": true; "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>;
4842
5113
  }
4843
5114
 
4844
5115
  interface GeometryFormFieldInputs extends FormFieldInputs {
@@ -5010,7 +5281,7 @@ declare function updateOlTooltipsAtMidpoints(olGeometry: OlPoint | OlLineString
5010
5281
  * @param olGeometry OL Geometry
5011
5282
  * @returns OL overlays
5012
5283
  */
5013
- declare function getOlTooltipsAtMidpoints(olGeometry: OlPoint | OlLineString | OlPolygon | OlCircle): OlOverlay[];
5284
+ declare function getOlTooltipsAtMidpoints(olGeometry: Geometry$1): OlOverlay[];
5014
5285
  /**
5015
5286
  * Update an OL geometry center and return it
5016
5287
  * @param olGeometry OL Geometry
@@ -5028,13 +5299,13 @@ declare function updateOlTooltipAtCenter(olGeometry: OlPoint | OlLineString | Ol
5028
5299
  * @param olGeometry OL Geometry
5029
5300
  * @returns OL overlays
5030
5301
  */
5031
- declare function getOlTooltipAtCenter(olGeometry: OlPoint | OlLineString | OlPolygon | OlCircle): OlOverlay;
5302
+ declare function getOlTooltipAtCenter(olGeometry: Geometry$1): OlOverlay | undefined;
5032
5303
  /**
5033
5304
  * Get all the tooltips of an OL geometry
5034
5305
  * @param olGeometry OL Geometry
5035
5306
  * @returns OL overlays
5036
5307
  */
5037
- declare function getTooltipsOfOlGeometry(olGeometry: OlPoint | OlLineString | OlPolygon | OlCircle): OlOverlay[];
5308
+ declare function getTooltipsOfOlGeometry(olGeometry: Geometry$1): OlOverlay[];
5038
5309
  /**
5039
5310
  * Create an OL overlay at a point and bind the overlay to the point
5040
5311
  * @param olPoint OL Point
@@ -5215,15 +5486,15 @@ declare class MeasurerComponent implements OnInit, OnDestroy {
5215
5486
  * Measure type
5216
5487
  * @internal
5217
5488
  */
5218
- set activeMeasureType(value: MeasureType);
5219
- get activeMeasureType(): MeasureType;
5220
- private _activeMeasureType;
5489
+ set activeMeasureType(value: MeasureType | undefined);
5490
+ get activeMeasureType(): MeasureType | undefined;
5491
+ private _activeMeasureType?;
5221
5492
  /**
5222
5493
  * The minimum length a segment must have to display a tooltip.
5223
5494
  * It also applies to area tooltips.
5224
5495
  */
5225
5496
  readonly minSegmentLength: _angular_core.InputSignal<number>;
5226
- readonly table: _angular_core.Signal<EntityTableComponent>;
5497
+ readonly table: _angular_core.Signal<EntityTableComponent | undefined>;
5227
5498
  /**
5228
5499
  * Wheter one of the draw control is active
5229
5500
  * @internal
@@ -5443,7 +5714,7 @@ declare class MeasurerComponent implements OnInit, OnDestroy {
5443
5714
  private saveCurrentUnits;
5444
5715
  private getSavedUnits;
5445
5716
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MeasurerComponent, never>;
5446
- static ɵcmp: _angular_core.ɵɵ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>;
5717
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MeasurerComponent, "igo-measurer", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "store": { "alias": "store"; "required": true; "isSignal": true; }; "activeMeasureType": { "alias": "activeMeasureType"; "required": false; }; "minSegmentLength": { "alias": "minSegmentLength"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5447
5718
  }
5448
5719
 
5449
5720
  declare const MEASURER_DIRECTIVES: (typeof MeasureFormatPipe | typeof MeasurerComponent)[];
@@ -5460,9 +5731,9 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
5460
5731
  get type(): SpatialFilterType;
5461
5732
  set type(type: SpatialFilterType);
5462
5733
  private _type;
5463
- readonly queryType: _angular_core.InputSignal<SpatialFilterQueryType>;
5464
- readonly zones: _angular_core.InputSignal<Feature<Record<string, any>>[]>;
5465
- readonly loading: _angular_core.ModelSignal<any>;
5734
+ readonly queryType: _angular_core.InputSignal<SpatialFilterQueryType | undefined>;
5735
+ readonly zones: _angular_core.InputSignal<Feature<Record<string, any>>[] | undefined>;
5736
+ readonly loading: _angular_core.ModelSignal<boolean | undefined>;
5466
5737
  get store(): EntityStore<Feature>;
5467
5738
  set store(store: EntityStore<Feature>);
5468
5739
  private _store;
@@ -5492,7 +5763,7 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
5492
5763
  openWorkspace: EventEmitter<any>;
5493
5764
  entityChange: EventEmitter<any>;
5494
5765
  selectedItemType: SpatialFilterItemType;
5495
- selectedSourceAddress: any;
5766
+ selectedSourceAddress?: string;
5496
5767
  treeControl: NestedTreeControl<SpatialFilterThematic>;
5497
5768
  displayedColumns: string[];
5498
5769
  childrens: SpatialFilterThematic[];
@@ -5500,10 +5771,10 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
5500
5771
  thematics: SpatialFilterThematic[];
5501
5772
  dataSource: MatTreeNestedDataSource<SpatialFilterThematic>;
5502
5773
  selectedThematics: SelectionModel<SpatialFilterThematic>;
5503
- value$: BehaviorSubject<GeoJSONGeometry>;
5504
- drawGuide$: BehaviorSubject<number>;
5505
- overlayStyle$: BehaviorSubject<olStyle.Style | ((feature: any, resolution: any) => olStyle.Style)>;
5506
- drawStyle$: BehaviorSubject<olStyle.Style | ((feature: any, resolution: any) => olStyle.Style)>;
5774
+ value$: BehaviorSubject<GeoJSONGeometry | undefined>;
5775
+ drawGuide$: BehaviorSubject<number | null>;
5776
+ overlayStyle$: BehaviorSubject<olStyle.Style | ((feature: any, resolution: any) => olStyle.Style) | undefined>;
5777
+ drawStyle$: BehaviorSubject<olStyle.Style | ((feature: any, resolution: any) => olStyle.Style) | undefined>;
5507
5778
  private value$$;
5508
5779
  private radiusChanges$$;
5509
5780
  private bufferChanges$$;
@@ -5512,24 +5783,24 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
5512
5783
  geometryTypeField: boolean;
5513
5784
  geometryTypes: GeometryType[];
5514
5785
  drawGuideField: boolean;
5515
- drawGuide: number;
5786
+ drawGuide: number | null;
5516
5787
  drawGuidePlaceholder: string;
5517
5788
  measure: boolean;
5518
5789
  drawControlIsActive: boolean;
5519
5790
  freehandDrawIsActive: boolean;
5520
5791
  drawStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
5521
- drawZone: Feature;
5792
+ drawZone?: Feature;
5522
5793
  overlayStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
5523
5794
  PointStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
5524
5795
  PolyStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
5525
- radius: number;
5796
+ radius?: number;
5526
5797
  buffer: number;
5527
5798
  radiusFormControl: UntypedFormControl;
5528
5799
  bufferFormControl: UntypedFormControl;
5529
5800
  measureUnit: MeasureLengthUnit;
5530
5801
  zoneWithBuffer: any;
5531
5802
  listIsVisible: boolean;
5532
- tableTemplate: EntityTableTemplate;
5803
+ tableTemplate?: EntityTableTemplate;
5533
5804
  ngOnInit(): void;
5534
5805
  /**
5535
5806
  * Unsubscribe to the value stream
@@ -5656,16 +5927,16 @@ declare class SpatialFilterTypeComponent implements OnInit {
5656
5927
  */
5657
5928
  spatialType: typeof SpatialFilterType;
5658
5929
  activeDrawType: SpatialFilterType;
5659
- readonly store: _angular_core.InputSignal<EntityStore<Feature<Record<string, any>>, _igo2_common_entity.EntityState>>;
5660
- selectedQueryType: _angular_core.ModelSignal<SpatialFilterQueryType>;
5661
- readonly zones: _angular_core.InputSignal<Feature<Record<string, any>>[]>;
5930
+ readonly store: _angular_core.InputSignal<EntityStore<Feature<Record<string, any>>, _igo2_common_entity.EntityState> | undefined>;
5931
+ selectedQueryType: _angular_core.ModelSignal<SpatialFilterQueryType | undefined>;
5932
+ readonly zones: _angular_core.InputSignal<Feature<Record<string, any>>[] | undefined>;
5662
5933
  readonly layers: _angular_core.InputSignal<AnyLayer[]>;
5663
5934
  type: SpatialFilterType;
5664
5935
  readonly eventType: _angular_core.OutputEmitterRef<SpatialFilterType>;
5665
5936
  readonly eventQueryType: _angular_core.OutputEmitterRef<SpatialFilterQueryType>;
5666
5937
  readonly bufferChange: _angular_core.OutputEmitterRef<number>;
5667
5938
  readonly measureUnitChange: _angular_core.OutputEmitterRef<MeasureLengthUnit>;
5668
- readonly addZone: _angular_core.OutputEmitterRef<Feature<Record<string, any>>>;
5939
+ readonly addZone: _angular_core.OutputEmitterRef<Feature<Record<string, any>> | undefined>;
5669
5940
  readonly removeZone: _angular_core.OutputEmitterRef<Feature<Record<string, any>>>;
5670
5941
  readonly zonesWithBufferChange: _angular_core.OutputEmitterRef<Feature<Record<string, any>>[]>;
5671
5942
  ngOnInit(): void;
@@ -5679,20 +5950,19 @@ declare class SpatialFilterTypeComponent implements OnInit {
5679
5950
  declare class TimeFilterButtonComponent {
5680
5951
  readonly layer: _angular_core.InputSignal<Layer>;
5681
5952
  readonly options: _angular_core.Signal<TimeFilterableDataSourceOptions>;
5682
- readonly map: _angular_core.InputSignal<IgoMap>;
5683
5953
  readonly color: _angular_core.InputSignal<string>;
5684
5954
  readonly header: _angular_core.InputSignal<boolean>;
5685
5955
  timeFilterCollapse: boolean;
5686
- get badge(): number;
5956
+ get badge(): 1 | undefined;
5687
5957
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimeFilterButtonComponent, never>;
5688
- static ɵcmp: _angular_core.ɵɵ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>;
5958
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimeFilterButtonComponent, "igo-time-filter-button", never, { "layer": { "alias": "layer"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5689
5959
  }
5690
5960
 
5691
5961
  declare class TimeFilterFormComponent implements OnInit {
5692
5962
  private dateAdapter;
5693
5963
  private cdRef;
5694
5964
  color: ThemePalette;
5695
- date: Date;
5965
+ date: Date | undefined;
5696
5966
  startDate: Date;
5697
5967
  endDate: Date;
5698
5968
  year: any;
@@ -5707,20 +5977,20 @@ declare class TimeFilterFormComponent implements OnInit {
5707
5977
  playIcon: string;
5708
5978
  resetIcon: string;
5709
5979
  readonly enabled: _angular_core.WritableSignal<boolean>;
5710
- readonly layer: _angular_core.InputSignal<Layer>;
5711
- readonly options: _angular_core.InputSignal<TimeFilterOptions>;
5712
- readonly currentValue: _angular_core.InputSignal<string>;
5713
- readonly rangeDate: _angular_core.Signal<Date[]>;
5714
- readonly dateChange: _angular_core.OutputEmitterRef<Date | [Date, Date]>;
5715
- readonly yearChange: _angular_core.OutputEmitterRef<string | [string, string]>;
5716
- readonly mySlider: _angular_core.Signal<MatSlider>;
5980
+ readonly layer: _angular_core.InputSignal<Layer | undefined>;
5981
+ readonly options: _angular_core.InputSignal<TimeFilterOptions | undefined>;
5982
+ readonly currentValue: _angular_core.InputSignal<string | undefined>;
5983
+ readonly rangeDate: _angular_core.Signal<Date[] | undefined>;
5984
+ readonly dateChange: _angular_core.OutputEmitterRef<Date | [Date, Date] | undefined>;
5985
+ readonly yearChange: _angular_core.OutputEmitterRef<string | [string, string] | undefined>;
5986
+ readonly mySlider: _angular_core.Signal<MatSlider | undefined>;
5717
5987
  get type(): TimeFilterType;
5718
5988
  get isRange(): boolean;
5719
5989
  get style(): TimeFilterStyle;
5720
5990
  get step(): number;
5721
5991
  get timeInterval(): number;
5722
- get min(): Date;
5723
- get max(): Date;
5992
+ get min(): Date | undefined;
5993
+ get max(): Date | undefined;
5724
5994
  get is(): boolean;
5725
5995
  get allYearsInterval(): string[];
5726
5996
  constructor();
@@ -5748,7 +6018,7 @@ declare class TimeFilterFormComponent implements OnInit {
5748
6018
  handleSliderDateChange(event: any): void;
5749
6019
  handleSliderYearChange(event: any): void;
5750
6020
  handleSliderValue(): number;
5751
- handleSliderTooltip(): string;
6021
+ handleSliderTooltip(): string | undefined;
5752
6022
  setupDateOutput(): void;
5753
6023
  applyTypeChange(): void;
5754
6024
  getRangeMinDate(): Date;
@@ -5759,13 +6029,13 @@ declare class TimeFilterFormComponent implements OnInit {
5759
6029
  * @param atMinute - round to closest 'atMinute' minute, rounded 10 by default
5760
6030
  * @return the rounded date
5761
6031
  */
5762
- getRoundedDate(date: any, atMinute?: number): Date;
6032
+ getRoundedDate(date: Date, atMinute?: number): Date;
5763
6033
  /**
5764
6034
  * Get the step (period) definition from the layer dimension tag
5765
6035
  * @param step The step as ISO 8601 example: PT10M for 10 Minutes
5766
6036
  * @return the duration in milliseconds
5767
6037
  */
5768
- getStepDefinition(step: any): number;
6038
+ getStepDefinition(step: string): number;
5769
6039
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimeFilterFormComponent, never>;
5770
6040
  static ɵcmp: _angular_core.ɵɵ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>;
5771
6041
  }
@@ -5778,12 +6048,12 @@ declare class TimeFilterItemComponent implements OnInit, OnDestroy {
5778
6048
  private resolution$$;
5779
6049
  filtersCollapsed: boolean;
5780
6050
  readonly header: _angular_core.InputSignal<boolean>;
5781
- readonly layer: _angular_core.InputSignal<Layer>;
6051
+ readonly layer: _angular_core.InputSignal<Layer | undefined>;
5782
6052
  get datasource(): TimeFilterableDataSource;
5783
6053
  ngOnInit(): void;
5784
6054
  ngOnDestroy(): void;
5785
6055
  handleYearChange(year: string | [string, string] | undefined): void;
5786
- handleDateChange(date: Date | [Date, Date]): void;
6056
+ handleDateChange(date: Date | [Date, Date] | undefined): undefined;
5787
6057
  private reformDate;
5788
6058
  private toggleLegend;
5789
6059
  toggleLegendOnClick(): void;
@@ -5794,13 +6064,12 @@ declare class TimeFilterItemComponent implements OnInit, OnDestroy {
5794
6064
  static ɵcmp: _angular_core.ɵɵ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>;
5795
6065
  }
5796
6066
 
5797
- declare class TimeFilterListBindingDirective implements OnInit, OnDestroy {
6067
+ declare class TimeFilterListBindingDirective implements OnInit {
5798
6068
  private mapService;
6069
+ private destroyRef;
5799
6070
  private component;
5800
- private layers$$;
5801
6071
  constructor();
5802
6072
  ngOnInit(): void;
5803
- ngOnDestroy(): void;
5804
6073
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimeFilterListBindingDirective, never>;
5805
6074
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TimeFilterListBindingDirective, "[igoTimeFilterListBinding]", never, {}, {}, never, never, true, never>;
5806
6075
  }
@@ -5860,7 +6129,7 @@ declare class WFSService extends DataService {
5860
6129
  getData(): string;
5861
6130
  getSourceFieldsFromWFS(dataSourceOptions: WFSDataSourceOptions | WMSDataSourceOptions): void;
5862
6131
  private wfsGetFeature;
5863
- defineFieldAndValuefromWFS(dataSourceOptions: WFSDataSourceOptions | WMSDataSourceOptions): Observable<any>;
6132
+ defineFieldAndValuefromWFS(dataSourceOptions: WFSDataSourceOptions | WMSDataSourceOptions): Observable<SourceFieldsOptionsParams[]>;
5864
6133
  private built_properties_value;
5865
6134
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<WFSService, never>;
5866
6135
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<WFSService>;
@@ -5868,7 +6137,7 @@ declare class WFSService extends DataService {
5868
6137
 
5869
6138
  declare class WMSDataSource extends DataSource {
5870
6139
  options: WMSDataSourceOptions;
5871
- protected wfsService?: WFSService;
6140
+ protected wfsService?: WFSService | undefined;
5872
6141
  private ogcFilterService?;
5873
6142
  ol: olSourceImageWMS;
5874
6143
  get params(): any;
@@ -5877,10 +6146,10 @@ declare class WMSDataSource extends DataSource {
5877
6146
  get mapLabel(): string;
5878
6147
  get queryHtmlTarget(): string;
5879
6148
  set ogcFilters(value: OgcFiltersOptions);
5880
- get ogcFilters(): OgcFiltersOptions;
6149
+ get ogcFilters(): OgcFiltersOptions | undefined;
5881
6150
  set timeFilter(value: TimeFilterOptions);
5882
- get timeFilter(): TimeFilterOptions;
5883
- readonly timeFilter$: BehaviorSubject<TimeFilterOptions>;
6151
+ get timeFilter(): TimeFilterOptions | undefined;
6152
+ readonly timeFilter$: BehaviorSubject<TimeFilterOptions | undefined>;
5884
6153
  get saveableOptions(): Partial<WMSDataSourceOptions>;
5885
6154
  /**
5886
6155
  * @workaround
@@ -5889,7 +6158,7 @@ declare class WMSDataSource extends DataSource {
5889
6158
  * is enable by default even if the workspace is not use the layer will still be refreshed.
5890
6159
  */
5891
6160
  enableRefresh: boolean;
5892
- constructor(options: WMSDataSourceOptions, wfsService?: WFSService, ogcFilterService?: OGCFilterService);
6161
+ constructor(options: WMSDataSourceOptions, wfsService?: WFSService | undefined, ogcFilterService?: OGCFilterService | undefined);
5893
6162
  private dateFormat;
5894
6163
  addEvents(): void;
5895
6164
  protected createOlSource(): olSourceImageWMS;
@@ -5902,17 +6171,10 @@ declare class WMSDataSource extends DataSource {
5902
6171
  }
5903
6172
  interface TimeFilterableDataSource extends WMSDataSource {
5904
6173
  options: TimeFilterableDataSourceOptions;
5905
- timeFilter$: BehaviorSubject<TimeFilterOptions>;
5906
- setTimeFilter(ogcFilters: TimeFilterOptions, triggerEvent?: boolean): any;
5907
- filterByDate(date: Date | [Date, Date]): any;
5908
- filterByYear(year: string | [string, string]): any;
5909
- }
5910
- interface TimeFilterableDataSource extends WMSDataSource {
5911
- options: TimeFilterableDataSourceOptions;
5912
- timeFilter$: BehaviorSubject<TimeFilterOptions>;
5913
- setTimeFilter(ogcFilters: TimeFilterOptions, triggerEvent?: boolean): any;
5914
- filterByDate(date: Date | [Date, Date]): any;
5915
- filterByYear(year: string | [string, string]): any;
6174
+ timeFilter$: BehaviorSubject<TimeFilterOptions | undefined>;
6175
+ setTimeFilter(ogcFilters: TimeFilterOptions, triggerEvent?: boolean): void;
6176
+ filterByDate(date: Date | [Date, Date]): void;
6177
+ filterByYear(year: string | [string, string]): void;
5916
6178
  }
5917
6179
 
5918
6180
  declare class OGCFilterService {
@@ -5928,7 +6190,7 @@ declare class OGCFilterService {
5928
6190
  }
5929
6191
 
5930
6192
  interface FetchFeatureOptions {
5931
- extent: Extent;
6193
+ extent: Extent | undefined;
5932
6194
  projection: olProjection;
5933
6195
  httpClient: HttpClient;
5934
6196
  }
@@ -5939,9 +6201,9 @@ declare class WFSDataSource extends DataSource {
5939
6201
  private authInterceptor?;
5940
6202
  ol: olSourceVector;
5941
6203
  set ogcFilters(value: OgcFiltersOptions);
5942
- get ogcFilters(): OgcFiltersOptions;
6204
+ get ogcFilters(): OgcFiltersOptions | undefined;
5943
6205
  get saveableOptions(): Partial<WFSDataSourceOptions>;
5944
- constructor(options: WFSDataSourceOptions, wfsService: WFSService, ogcFilterService: OGCFilterService, authInterceptor?: AuthInterceptor);
6206
+ constructor(options: WFSDataSourceOptions, wfsService: WFSService, ogcFilterService: OGCFilterService, authInterceptor?: AuthInterceptor | undefined);
5945
6207
  protected createOlSource(): olSourceVector;
5946
6208
  setOgcFilters(ogcFilters: OgcFiltersOptions, triggerEvent?: boolean): void;
5947
6209
  onUnwatch(): void;
@@ -5968,7 +6230,7 @@ declare const jsonRegex: RegExp;
5968
6230
  * @param ogcFilters OgcFiltersOptions
5969
6231
  * @returns A string representing the datasource options, based on filter and views
5970
6232
  */
5971
- declare function buildUrl(options: WFSDataSourceOptions, extent: Extent, proj: olProjection, randomParam?: boolean): string;
6233
+ declare function buildUrl(options: WFSDataSourceOptions, extent: Extent | undefined, proj: olProjection, randomParam?: boolean): string;
5972
6234
  /**
5973
6235
  * This method build/standardize WFS call query params based on the layer property.
5974
6236
  * @param wfsDataSourceOptions WFSDataSourceOptions The common wfs datasource options interface
@@ -5989,8 +6251,10 @@ declare function formatWFSQueryString(dataSourceOptions: WFSDataSourceOptions |
5989
6251
  * @param wfsDataSourceOptions WFSDataSourceOptions The common wfs datasource options interface
5990
6252
  * @returns An array array of {name: '', value: ''} of predefined query params.
5991
6253
  */
5992
- declare function checkWfsParams(wfsDataSourceOptions: any, srcType?: string): any;
5993
- declare function getFormatFromOptions(options: WFSDataSourceOptions | WMSDataSourceOptions): any;
6254
+ declare function checkWfsParams(wfsDataSourceOptions: WFSDataSourceOptions | WMSDataSourceOptions, srcType?: string): WFSDataSourceOptions | WMSDataSourceOptions;
6255
+ declare function getFormatFromOptions(options: WFSDataSourceOptions | WMSDataSourceOptions): olFormatFeature<ol.Feature<ol_geom.Geometry, {
6256
+ [x: string]: any;
6257
+ }>>;
5994
6258
  declare function getSaveableOgcParams(options: OgcFiltersOptions): IOgcFiltersOptionSaveable;
5995
6259
  declare function getFilterBadge(dataSourceOptions: AnyDataSourceOptions): number | undefined;
5996
6260
 
@@ -5998,8 +6262,8 @@ type AnyDataSource = DataSource | OSMDataSource | FeatureDataSource | WFSDataSou
5998
6262
 
5999
6263
  declare abstract class Layer extends LayerBase<LayerGroup> {
6000
6264
  options: LayerOptions;
6001
- protected messageService?: MessageService;
6002
- protected authInterceptor?: AuthInterceptor;
6265
+ protected messageService?: MessageService | undefined;
6266
+ protected authInterceptor?: AuthInterceptor | undefined;
6003
6267
  dataSource: DataSource;
6004
6268
  ol: OlLayer<Source>;
6005
6269
  hasBeenVisible$: BehaviorSubject<boolean>;
@@ -6007,15 +6271,15 @@ declare abstract class Layer extends LayerBase<LayerGroup> {
6007
6271
  legendCollapsed: boolean;
6008
6272
  link?: Linked;
6009
6273
  linkMaster?: Linked;
6010
- private resolution$$;
6274
+ private resolution$$?;
6011
6275
  get visible(): boolean;
6012
6276
  set visible(value: boolean);
6013
6277
  get maxResolution(): number;
6014
6278
  set maxResolution(value: number);
6015
6279
  get minResolution(): number;
6016
6280
  set minResolution(value: number);
6017
- get saveableOptions(): Partial<LayerOptions> | undefined;
6018
- constructor(options: LayerOptions, messageService?: MessageService, authInterceptor?: AuthInterceptor);
6281
+ get saveableOptions(): Partial<LayerOptions>;
6282
+ constructor(options: LayerOptions, messageService?: MessageService | undefined, authInterceptor?: AuthInterceptor | undefined);
6019
6283
  protected abstract createOlLayer(): OlLayer<Source>;
6020
6284
  init(map: MapBase): void;
6021
6285
  createLink(): void;
@@ -6033,10 +6297,10 @@ declare abstract class Layer extends LayerBase<LayerGroup> {
6033
6297
  type AnyLayer = Layer | LayerGroup;
6034
6298
 
6035
6299
  declare class LayerGroupComponent implements OnInit {
6036
- readonly layer: _angular_core.InputSignal<LayerGroup>;
6037
- readonly viewerOptions: _angular_core.InputSignal<LayerViewerOptions>;
6038
- readonly selected: _angular_core.InputSignal<boolean>;
6039
- readonly selectionDisabled: _angular_core.InputSignal<boolean>;
6300
+ readonly layer: _angular_core.InputSignal<LayerGroup | undefined>;
6301
+ readonly viewerOptions: _angular_core.InputSignal<LayerViewerOptions | undefined>;
6302
+ readonly selected: _angular_core.InputSignal<boolean | undefined>;
6303
+ readonly selectionDisabled: _angular_core.InputSignal<boolean | undefined>;
6040
6304
  readonly action: _angular_core.OutputEmitterRef<AnyLayer>;
6041
6305
  readonly visibilityChange: _angular_core.OutputEmitterRef<Event>;
6042
6306
  readonly expand: _angular_core.OutputEmitterRef<void>;
@@ -6069,9 +6333,9 @@ declare class LayerItemComponent implements OnInit, OnDestroy {
6069
6333
  readonly layer: _angular_core.InputSignal<Layer>;
6070
6334
  /** Pass the visibility to trigger change detection */
6071
6335
  readonly visible: _angular_core.InputSignal<boolean>;
6072
- readonly selected: _angular_core.InputSignal<boolean>;
6073
- readonly selectionDisabled: _angular_core.InputSignal<boolean>;
6074
- readonly viewerOptions: _angular_core.InputSignal<LayerViewerOptions>;
6336
+ readonly selected: _angular_core.InputSignal<boolean | undefined>;
6337
+ readonly selectionDisabled: _angular_core.InputSignal<boolean | undefined>;
6338
+ readonly viewerOptions: _angular_core.InputSignal<LayerViewerOptions | undefined>;
6075
6339
  readonly action: _angular_core.OutputEmitterRef<Layer>;
6076
6340
  readonly selectChange: _angular_core.OutputEmitterRef<boolean>;
6077
6341
  readonly visibilityChange: _angular_core.OutputEmitterRef<Event>;
@@ -6100,7 +6364,7 @@ declare class LayerLegendItemComponent implements OnInit, OnDestroy {
6100
6364
  state: ConnectionState;
6101
6365
  private resolution$$;
6102
6366
  private network$$;
6103
- readonly layer: _angular_core.InputSignal<Layer>;
6367
+ readonly layer: _angular_core.InputSignal<Layer | undefined>;
6104
6368
  readonly updateLegendOnResolutionChange: _angular_core.InputSignal<boolean>;
6105
6369
  ngOnInit(): void;
6106
6370
  ngOnDestroy(): void;
@@ -6116,7 +6380,7 @@ declare class ImageWatcher extends Watcher {
6116
6380
  protected loaded: number;
6117
6381
  protected loading: number;
6118
6382
  private source;
6119
- constructor(layer: ImageLayer, messageService?: MessageService);
6383
+ constructor(layer: ImageLayer, messageService?: MessageService | undefined);
6120
6384
  protected watch(): void;
6121
6385
  protected unwatch(): void;
6122
6386
  private handleLoadStart;
@@ -6184,7 +6448,7 @@ declare class LayerLegendListComponent {
6184
6448
  layersInUi: _angular_core.WritableSignal<AnyLayer[]>;
6185
6449
  layersLegend: _angular_core.WritableSignal<AnyLayer[]>;
6186
6450
  showAllLegend: boolean;
6187
- readonly layers: _angular_core.ModelSignal<AnyLayer[]>;
6451
+ readonly layers: _angular_core.ModelSignal<AnyLayer[] | undefined>;
6188
6452
  readonly excludeBaseLayers: _angular_core.InputSignal<boolean>;
6189
6453
  readonly updateLegendOnResolutionChange: _angular_core.InputSignal<boolean>;
6190
6454
  readonly allowShowAllLegends: _angular_core.InputSignal<boolean>;
@@ -6235,7 +6499,7 @@ declare class LayerLegendComponent implements OnInit, OnDestroy {
6235
6499
  /**
6236
6500
  * The extent used to make the legend
6237
6501
  */
6238
- private view;
6502
+ private view?;
6239
6503
  /**
6240
6504
  * Get list of images display
6241
6505
  */
@@ -6244,7 +6508,7 @@ declare class LayerLegendComponent implements OnInit, OnDestroy {
6244
6508
  * List of size of images displayed
6245
6509
  */
6246
6510
  imagesHeight: Record<string, number>;
6247
- readonly layer: _angular_core.InputSignal<Layer>;
6511
+ readonly layer: _angular_core.InputSignal<Layer | undefined>;
6248
6512
  /**
6249
6513
  * if getLegendGraphic is authorized
6250
6514
  */
@@ -6281,10 +6545,10 @@ declare class LayerLegendComponent implements OnInit, OnDestroy {
6281
6545
  declare class LayerListToolComponent {
6282
6546
  private layerListToolService;
6283
6547
  readonly mode: _angular_core.InputSignal<"selection">;
6284
- readonly viewerOptions: _angular_core.InputSignal<LayerViewerOptions>;
6548
+ readonly viewerOptions: _angular_core.InputSignal<LayerViewerOptions | undefined>;
6285
6549
  readonly floatLabel: _angular_core.InputSignal<FloatLabelType>;
6286
- readonly onlyVisible: _angular_core.InputSignal<boolean>;
6287
- readonly term: _angular_core.InputSignal<string>;
6550
+ readonly onlyVisible: _angular_core.InputSignal<boolean | undefined>;
6551
+ readonly term: _angular_core.InputSignal<string | undefined>;
6288
6552
  readonly searchChange: _angular_core.OutputEmitterRef<string>;
6289
6553
  readonly visibilityOnlyChange: _angular_core.OutputEmitterRef<boolean>;
6290
6554
  readonly modeChange: _angular_core.OutputEmitterRef<boolean>;
@@ -6312,12 +6576,12 @@ declare class LayerListComponent implements AfterViewInit {
6312
6576
  expansionKey: (node: AnyLayer) => string;
6313
6577
  readonly controller: _angular_core.InputSignal<LayerController>;
6314
6578
  readonly layers: _angular_core.InputSignal<AnyLayer[]>;
6315
- readonly isDesktop: _angular_core.InputSignal<boolean>;
6316
- readonly isDragDropDisabled: _angular_core.InputSignal<boolean>;
6317
- readonly selectAll: _angular_core.InputSignal<boolean>;
6318
- readonly viewerOptions: _angular_core.InputSignal<LayerViewerOptions>;
6579
+ readonly isDesktop: _angular_core.InputSignal<boolean | undefined>;
6580
+ readonly isDragDropDisabled: _angular_core.InputSignal<boolean | undefined>;
6581
+ readonly selectAll: _angular_core.InputSignal<boolean | undefined>;
6582
+ readonly viewerOptions: _angular_core.InputSignal<LayerViewerOptions | undefined>;
6319
6583
  readonly activeChange: _angular_core.OutputEmitterRef<AnyLayer>;
6320
- readonly tree: _angular_core.Signal<MatTree<AnyLayer, string>>;
6584
+ readonly tree: _angular_core.Signal<MatTree<AnyLayer, string> | undefined>;
6321
6585
  childrenAccessor: (layer: AnyLayer) => AnyLayer[];
6322
6586
  treeConfig: ITreeConfig<AnyLayer>;
6323
6587
  isNodeGroup: (_: number, node: AnyLayer) => node is LayerGroup;
@@ -6342,11 +6606,11 @@ declare class LayerListComponent implements AfterViewInit {
6342
6606
 
6343
6607
  declare class LayerSearchComponent implements OnInit {
6344
6608
  control: FormControl<any>;
6345
- readonly initialValue: _angular_core.InputSignal<string>;
6609
+ readonly initialValue: _angular_core.InputSignal<string | undefined>;
6346
6610
  readonly floatLabel: _angular_core.InputSignal<FloatLabelType>;
6347
- readonly placeholder: _angular_core.InputSignal<string>;
6348
- readonly tooltip: _angular_core.InputSignal<string>;
6349
- readonly searchChange: _angular_core.OutputEmitterRef<string>;
6611
+ readonly placeholder: _angular_core.InputSignal<string | undefined>;
6612
+ readonly tooltip: _angular_core.InputSignal<string | undefined>;
6613
+ readonly searchChange: _angular_core.OutputEmitterRef<string | undefined>;
6350
6614
  ngOnInit(): void;
6351
6615
  clearTerm(): void;
6352
6616
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<LayerSearchComponent, never>;
@@ -6354,7 +6618,7 @@ declare class LayerSearchComponent implements OnInit {
6354
6618
  }
6355
6619
 
6356
6620
  declare class LayerUnavailableComponent {
6357
- readonly layerOptions: _angular_core.InputSignal<AnyLayerItemOptions>;
6621
+ readonly layerOptions: _angular_core.InputSignal<AnyLayerItemOptions | undefined>;
6358
6622
  readonly remove: _angular_core.OutputEmitterRef<AnyLayerOptions>;
6359
6623
  get title(): string | undefined;
6360
6624
  handleRemove(layerOptions: AnyLayerOptions): void;
@@ -6364,7 +6628,7 @@ declare class LayerUnavailableComponent {
6364
6628
 
6365
6629
  declare class LayerUnavailableListComponent {
6366
6630
  private layerService;
6367
- readonly layersOptions: _angular_core.InputSignal<AnyLayerOptions[]>;
6631
+ readonly layersOptions: _angular_core.InputSignal<AnyLayerOptions[] | undefined>;
6368
6632
  deleteUnavailableLayer(options: AnyLayerOptions): void;
6369
6633
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<LayerUnavailableListComponent, never>;
6370
6634
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<LayerUnavailableListComponent, "igo-layer-unavailable-list", never, { "layersOptions": { "alias": "layersOptions"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -6376,7 +6640,7 @@ declare class LayerViewerBottomActionsComponent {
6376
6640
  readonly map: _angular_core.InputSignal<MapBase>;
6377
6641
  readonly controller: _angular_core.InputSignal<LayerController>;
6378
6642
  readonly searchTerm: _angular_core.InputSignal<string>;
6379
- readonly viewerOptions: _angular_core.InputSignal<LayerViewerOptions>;
6643
+ readonly viewerOptions: _angular_core.InputSignal<LayerViewerOptions | undefined>;
6380
6644
  readonly layerChange: _angular_core.OutputEmitterRef<void>;
6381
6645
  get layersFlattened(): AnyLayer[];
6382
6646
  get hasMultipleSelection(): boolean;
@@ -6410,17 +6674,30 @@ declare class LayerViewerComponent implements OnInit {
6410
6674
  private cdr;
6411
6675
  private layerService;
6412
6676
  layers: AnyLayer[];
6413
- baselayers: AnyLayer[];
6414
- keyword$: BehaviorSubject<string>;
6415
- mode: LayerToolMode;
6677
+ baselayers?: AnyLayer[];
6678
+ keyword$: BehaviorSubject<string | undefined>;
6679
+ mode?: LayerToolMode;
6416
6680
  isDragDropDisabled: boolean;
6681
+ isLoading: _angular_core.WritableSignal<boolean>;
6682
+ hasLayers: _angular_core.WritableSignal<boolean>;
6417
6683
  readonly map: _angular_core.InputSignal<MapBase>;
6418
- readonly options: _angular_core.InputSignal<LayerViewerOptions>;
6419
- readonly isDesktop: _angular_core.InputSignal<boolean>;
6420
- readonly excludeBaseLayers: _angular_core.InputSignal<boolean>;
6684
+ readonly options: _angular_core.InputSignal<LayerViewerOptions | undefined>;
6685
+ readonly isDesktop: _angular_core.InputSignal<boolean | undefined>;
6686
+ readonly excludeBaseLayers: _angular_core.InputSignal<boolean | undefined>;
6421
6687
  readonly appliedFilterAndSort: _angular_core.OutputEmitterRef<LayerListControlsOptions>;
6422
- readonly customBottomActions: _angular_core.Signal<TemplateRef<any>>;
6423
- get layerViewerOptions(): LayerViewerOptions;
6688
+ readonly customBottomActions: _angular_core.Signal<TemplateRef<any> | undefined>;
6689
+ readonly layerViewerOptions: _angular_core.Signal<{
6690
+ mode: "selection" | undefined;
6691
+ queryBadge?: boolean;
6692
+ legend?: Partial<_igo2_geo.ViewerLegendOptions>;
6693
+ filterAndSortOptions?: LayerListControlsOptions;
6694
+ group?: {
6695
+ enable: boolean;
6696
+ maxHierarchyLevel?: number;
6697
+ canCreate?: boolean;
6698
+ canRename?: boolean;
6699
+ };
6700
+ }>;
6424
6701
  get layerController(): LayerController;
6425
6702
  get unavailableLayers(): LayerOptionsBase[];
6426
6703
  isLayerItem: typeof isLayerItem;
@@ -6454,13 +6731,13 @@ declare class LayerVisibilityButtonComponent {
6454
6731
  private languageService;
6455
6732
  eyeClosedByGroupSvg: IconSvg;
6456
6733
  readonly layer: _angular_core.InputSignal<AnyLayer>;
6457
- readonly tooltip: _angular_core.InputSignal<string>;
6458
- readonly disabled: _angular_core.InputSignal<boolean>;
6459
- readonly showQueryBadge: _angular_core.InputSignal<boolean>;
6460
- readonly inResolutionsRange: _angular_core.InputSignal<boolean>;
6461
- readonly parentDisplayed: _angular_core.Signal<boolean>;
6462
- readonly visible: _angular_core.Signal<boolean>;
6463
- readonly badge: _angular_core.Signal<number>;
6734
+ readonly tooltip: _angular_core.InputSignal<string | undefined>;
6735
+ readonly disabled: _angular_core.InputSignal<boolean | undefined>;
6736
+ readonly showQueryBadge: _angular_core.InputSignal<boolean | undefined>;
6737
+ readonly inResolutionsRange: _angular_core.InputSignal<boolean | undefined>;
6738
+ readonly parentDisplayed: _angular_core.Signal<boolean | undefined>;
6739
+ readonly visible: _angular_core.Signal<boolean | undefined>;
6740
+ readonly badge: _angular_core.Signal<number | undefined>;
6464
6741
  defaultTooltipText: _angular_core.Signal<any>;
6465
6742
  readonly tooltipText: _angular_core.Signal<any>;
6466
6743
  readonly visibilityChange: _angular_core.OutputEmitterRef<Event>;
@@ -6479,7 +6756,7 @@ declare class TrackFeatureButtonComponent implements OnInit {
6479
6756
  ngOnInit(): void;
6480
6757
  toggleTrackFeature(): void;
6481
6758
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TrackFeatureButtonComponent, never>;
6482
- static ɵcmp: _angular_core.ɵɵ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>;
6759
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TrackFeatureButtonComponent, "igo-track-feature-button", never, { "layer": { "alias": "layer"; "required": true; "isSignal": true; }; "trackFeature": { "alias": "trackFeature"; "required": false; "isSignal": true; }; }, { "trackFeature": "trackFeatureChange"; }, never, never, true, never>;
6483
6760
  }
6484
6761
 
6485
6762
  declare class DownloadButtonComponent {
@@ -6489,7 +6766,7 @@ declare class DownloadButtonComponent {
6489
6766
  readonly options: _angular_core.Signal<DownloadDataSourceOptions>;
6490
6767
  openDownload(): void;
6491
6768
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DownloadButtonComponent, never>;
6492
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DownloadButtonComponent, "igo-download-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6769
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DownloadButtonComponent, "igo-download-button", never, { "layer": { "alias": "layer"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6493
6770
  }
6494
6771
 
6495
6772
  /**
@@ -6520,7 +6797,7 @@ declare class ExportButtonComponent {
6520
6797
  readonly color: _angular_core.InputSignal<string>;
6521
6798
  readonly isExportable: _angular_core.Signal<boolean>;
6522
6799
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExportButtonComponent, never>;
6523
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExportButtonComponent, "igo-export-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6800
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ExportButtonComponent, "igo-export-button", never, { "layer": { "alias": "layer"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6524
6801
  }
6525
6802
 
6526
6803
  declare const RADIUS_NAME = "rad";
@@ -6575,7 +6852,7 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
6575
6852
  private confirmDialogService;
6576
6853
  form: UntypedFormGroup;
6577
6854
  importForm: UntypedFormGroup;
6578
- formats$: BehaviorSubject<("GeoJSON" | "Excel" | "Shapefile" | "GML" | "GPX" | "KML" | "CSV" | "URL")[]>;
6855
+ formats$: BehaviorSubject<("GeoJSON" | "Excel" | "Shapefile" | "GML" | "GPX" | "KML" | "CSV" | "URL")[] | undefined>;
6579
6856
  exportableLayers$: BehaviorSubject<Layer[]>;
6580
6857
  loading$: BehaviorSubject<boolean>;
6581
6858
  forceNaming: boolean;
@@ -6597,16 +6874,16 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
6597
6874
  private configFormats;
6598
6875
  private previousLayerSpecs$;
6599
6876
  readonly selectFirstProj: _angular_core.InputSignal<boolean>;
6600
- readonly map: _angular_core.InputSignal<IgoMap>;
6601
- readonly contextUri: _angular_core.InputSignal<string>;
6602
- readonly projectionsLimitations: _angular_core.InputSignal<ProjectionsLimitationsOptions>;
6877
+ readonly map: _angular_core.InputSignal<IgoMap | undefined>;
6878
+ readonly contextUri: _angular_core.InputSignal<string | undefined>;
6879
+ readonly projectionsLimitations: _angular_core.InputSignal<ProjectionsLimitationsOptions | undefined>;
6603
6880
  /**
6604
6881
  * Store that holds the available workspaces.
6605
6882
  */
6606
- readonly store: _angular_core.InputSignal<WorkspaceStore>;
6883
+ readonly store: _angular_core.InputSignal<WorkspaceStore | undefined>;
6607
6884
  readonly selectedMode: _angular_core.ModelSignal<SelectMode>;
6608
6885
  readonly selectMode: _angular_core.OutputEmitterRef<SelectMode>;
6609
- readonly exportOptions$: _angular_core.InputSignal<BehaviorSubject<ExportOptions>>;
6886
+ readonly exportOptions$: _angular_core.InputSignal<BehaviorSubject<ExportOptions | undefined>>;
6610
6887
  readonly exportOptionsChange: _angular_core.OutputEmitterRef<ExportOptions>;
6611
6888
  get layers(): any;
6612
6889
  set layers(value: any);
@@ -6616,10 +6893,10 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
6616
6893
  set popupAllowed(value: boolean);
6617
6894
  constructor();
6618
6895
  ngOnInit(): void;
6619
- getLayerTitleById(id: any): string;
6896
+ getLayerTitleById(id: string): string;
6620
6897
  layerHasSelectedFeatures(layer: Layer): boolean;
6621
6898
  onlySelected(event: MatSlideToggleChange, id: LayerId): void;
6622
- onlySelectedClick(event: any, id: LayerId): void;
6899
+ onlySelectedClick(event: Event, id: LayerId): void;
6623
6900
  inLayersIdToExportSelectionOnly(layer: Layer): boolean;
6624
6901
  ngOnDestroy(): void;
6625
6902
  private handlePreviousLayerSpecs;
@@ -6665,13 +6942,13 @@ declare class DropGeoFileDirective extends DragAndDropDirective implements OnIni
6665
6942
  private epsgCode$$;
6666
6943
  private filesDropped$$;
6667
6944
  get map(): IgoMap;
6668
- readonly contextUri: _angular_core.InputSignal<string>;
6669
- readonly projectionsLimitations: _angular_core.InputSignal<ProjectionsLimitationsOptions>;
6945
+ readonly contextUri: _angular_core.InputSignal<string | undefined>;
6946
+ readonly projectionsLimitations: _angular_core.InputSignal<ProjectionsLimitationsOptions | undefined>;
6670
6947
  ngOnInit(): void;
6671
6948
  ngOnDestroy(): void;
6672
- onDragOver(evt: any): void;
6673
- onDragLeave(evt: any): void;
6674
- onDrop(evt: any): void;
6949
+ onDragOver(evt: DragEvent): void;
6950
+ onDragLeave(evt: DragEvent): void;
6951
+ onDrop(evt: DragEvent): void;
6675
6952
  private onFilesDropped;
6676
6953
  private onFileImportSuccess;
6677
6954
  private onFileImportError;
@@ -6702,61 +6979,6 @@ declare class IgoLayerModule {
6702
6979
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<IgoLayerModule>;
6703
6980
  }
6704
6981
 
6705
- declare enum QueryFormat {
6706
- GML2 = "gml2",
6707
- GML3 = "gml3",
6708
- JSON = "json",
6709
- GEOJSON = "geojson",
6710
- GEOJSON2 = "geojson2",
6711
- ESRIJSON = "esrijson",
6712
- TEXT = "text",
6713
- HTML = "html",
6714
- HTMLGML2 = "htmlgml2"
6715
- }
6716
- declare enum QueryFormatMimeType {
6717
- GML2 = "application/vnd.ogc.gml",
6718
- GML3 = "application/vnd.ogc.gml/3.1.1",
6719
- JSON = "application/json",
6720
- GEOJSON = "application/geojson",
6721
- GEOJSON2 = "geojson",
6722
- ESRIJSON = "application/json",
6723
- TEXT = "text/plain",
6724
- HTML = "text/html",
6725
- HTMLGML2 = "text/html"
6726
- }
6727
- declare enum QueryHtmlTarget {
6728
- IFRAME = "iframe",
6729
- BLANK = "_blank"
6730
- }
6731
-
6732
- type CatalogQueryFormatTypes = Record<QueryFormat, string | string[]>;
6733
- declare enum CatalogItemType {
6734
- Layer = "layer",
6735
- Group = "group"
6736
- }
6737
- declare enum TypeCatalog {
6738
- wms = 0,
6739
- wmts = 1,
6740
- baselayers = 2,
6741
- arcgisrest = 3,
6742
- tilearcgisrest = 4,
6743
- imagearcgisrest = 5,
6744
- composite = 6
6745
- }
6746
- type TypeCatalogStrings = keyof typeof TypeCatalog;
6747
-
6748
- interface MetadataOptions {
6749
- url: string;
6750
- extern?: boolean;
6751
- abstract?: string;
6752
- keywordList?: string[];
6753
- layerTitle?: string;
6754
- type?: TypeCatalogStrings;
6755
- }
6756
- interface MetadataLayerOptions extends LayerOptions {
6757
- metadata?: MetadataOptions;
6758
- }
6759
-
6760
6982
  declare class MetadataButtonComponent {
6761
6983
  private metadataService;
6762
6984
  private dialog;
@@ -6765,7 +6987,7 @@ declare class MetadataButtonComponent {
6765
6987
  openMetadata(metadata: MetadataOptions): void;
6766
6988
  get options(): MetadataLayerOptions;
6767
6989
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MetadataButtonComponent, never>;
6768
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MetadataButtonComponent, "igo-metadata-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6990
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MetadataButtonComponent, "igo-metadata-button", never, { "layer": { "alias": "layer"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6769
6991
  }
6770
6992
  declare class MetadataAbstractComponent {
6771
6993
  data: MetadataOptions;
@@ -6803,7 +7025,7 @@ declare class QueryDirective implements AfterViewInit, OnDestroy {
6803
7025
  /**
6804
7026
  * OL drag box interaction
6805
7027
  */
6806
- private olDragSelectInteraction;
7028
+ private olDragSelectInteraction?;
6807
7029
  /**
6808
7030
  * Ol drag box "end" event key
6809
7031
  */
@@ -6819,7 +7041,7 @@ declare class QueryDirective implements AfterViewInit, OnDestroy {
6819
7041
  /**
6820
7042
  * Feature query hit tolerance
6821
7043
  */
6822
- readonly queryFeaturesCondition: _angular_core.InputSignal<(olLayer: OlLayer<olSource>) => boolean>;
7044
+ readonly queryFeaturesCondition: _angular_core.InputSignal<((olLayer: OlLayer<olSource>) => boolean) | undefined>;
6823
7045
  /**
6824
7046
  * Whether all query should complete before emitting an event
6825
7047
  */
@@ -7072,7 +7294,7 @@ declare class SearchService {
7072
7294
  private mapService;
7073
7295
  private storageService;
7074
7296
  private analyticsService;
7075
- searchTerm: WritableSignal<string>;
7297
+ searchTerm: WritableSignal<string | null>;
7076
7298
  constructor();
7077
7299
  private handleAnalytics;
7078
7300
  /**
@@ -7197,7 +7419,7 @@ declare function findDiff(str1: string, str2: string): string;
7197
7419
  * @param caseSensitive boolean
7198
7420
  * @returns number
7199
7421
  */
7200
- declare function computeTermSimilarity(from: any, to: any, caseSensitive?: boolean): number;
7422
+ declare function computeTermSimilarity(from: string, to: string, caseSensitive?: boolean): number;
7201
7423
 
7202
7424
  /**
7203
7425
  * Cadastre search source
@@ -7646,7 +7868,7 @@ declare class StoredQueriesSearchSource extends SearchSource implements TextSear
7646
7868
  static id: string;
7647
7869
  static type: string;
7648
7870
  static propertiesBlacklist: string[];
7649
- resultTitle: 'title';
7871
+ resultTitle: string;
7650
7872
  storedQueriesOptions: StoredQueriesSearchSourceOptions;
7651
7873
  multipleFieldsQuery: boolean;
7652
7874
  constructor();
@@ -7679,7 +7901,7 @@ declare class StoredQueriesReverseSearchSource extends SearchSource implements R
7679
7901
  static id: string;
7680
7902
  static type: string;
7681
7903
  static propertiesBlacklist: string[];
7682
- resultTitle: 'title';
7904
+ resultTitle: string;
7683
7905
  storedQueriesOptions: StoredQueriesReverseSearchSourceOptions;
7684
7906
  multipleFieldsQuery: boolean;
7685
7907
  constructor();
@@ -7860,6 +8082,7 @@ declare function withWorkspaceSource(): SearchSourceFeature<SearchSourceKind.Wor
7860
8082
  * into that store. An event is always emitted when a research is completed.
7861
8083
  */
7862
8084
  declare class SearchBarComponent implements OnInit, OnDestroy {
8085
+ private layerService;
7863
8086
  private configService;
7864
8087
  private searchService;
7865
8088
  private searchSourceService;
@@ -7894,13 +8117,13 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
7894
8117
  * List of available search types
7895
8118
  */
7896
8119
  readonly searchTypes: _angular_core.InputSignal<string[]>;
7897
- readonly withDivider: _angular_core.InputSignal<boolean>;
8120
+ readonly withDivider: _angular_core.InputSignal<boolean | undefined>;
7898
8121
  /**
7899
8122
  * Search term
7900
8123
  */
7901
8124
  set searchType(value: string);
7902
8125
  get searchType(): string;
7903
- readonly searchType$: BehaviorSubject<string>;
8126
+ readonly searchType$: BehaviorSubject<string | undefined>;
7904
8127
  /**
7905
8128
  * Event emitted when the pointer summary is activated by the searchbar setting
7906
8129
  */
@@ -7913,6 +8136,10 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
7913
8136
  * Event emitted when the coords format setting is changed
7914
8137
  */
7915
8138
  readonly reverseSearchCoordsFormatStatus: _angular_core.OutputEmitterRef<boolean>;
8139
+ /**
8140
+ * Map to add layer
8141
+ */
8142
+ readonly map: _angular_core.InputSignal<IgoMap | undefined>;
7916
8143
  /**
7917
8144
  * Search term
7918
8145
  */
@@ -7939,8 +8166,8 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
7939
8166
  */
7940
8167
  readonly floatLabel: _angular_core.InputSignal<FloatLabelType>;
7941
8168
  readonly appearance: _angular_core.InputSignal<MatFormFieldAppearance>;
7942
- readonly placeholder: _angular_core.InputSignal<string>;
7943
- readonly label: _angular_core.InputSignal<string>;
8169
+ readonly placeholder: _angular_core.InputSignal<string | undefined>;
8170
+ readonly label: _angular_core.InputSignal<string | undefined>;
7944
8171
  /**
7945
8172
  * Icons color (search and clear)
7946
8173
  */
@@ -7969,7 +8196,7 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
7969
8196
  /**
7970
8197
  * Search results store
7971
8198
  */
7972
- readonly store: _angular_core.InputSignal<EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>>;
8199
+ readonly store: _angular_core.InputSignal<EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState> | undefined>;
7973
8200
  /**
7974
8201
  * Event emitted when the search term changes
7975
8202
  */
@@ -7997,7 +8224,7 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
7997
8224
  * Input element
7998
8225
  * @internal
7999
8226
  */
8000
- readonly input: _angular_core.Signal<ElementRef<any>>;
8227
+ readonly input: _angular_core.Signal<ElementRef<any> | undefined>;
8001
8228
  /**
8002
8229
  * Whether the search bar is empty
8003
8230
  * @internal
@@ -8074,8 +8301,10 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
8074
8301
  * @param results Research results
8075
8302
  */
8076
8303
  private onResearchCompleted;
8304
+ selectFirstElement(): void;
8305
+ private handleMap;
8077
8306
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchBarComponent, never>;
8078
- static ɵcmp: _angular_core.ɵɵ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>;
8307
+ static ɵcmp: _angular_core.ɵɵ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; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "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>;
8079
8308
  }
8080
8309
 
8081
8310
  /**
@@ -8092,7 +8321,7 @@ declare class SearchSelectorComponent implements OnInit {
8092
8321
  * List of available search types
8093
8322
  */
8094
8323
  readonly searchTypes: _angular_core.InputSignal<string[]>;
8095
- readonly searchType: _angular_core.ModelSignal<string>;
8324
+ readonly searchType: _angular_core.ModelSignal<string | undefined>;
8096
8325
  /**
8097
8326
  * Event emitted when the enabled search type changes
8098
8327
  */
@@ -8133,7 +8362,7 @@ declare class SearchSettingsComponent implements OnInit {
8133
8362
  private storageService;
8134
8363
  hasPointerReverseSearchSource: boolean;
8135
8364
  searchSourcesAllEnabled: boolean;
8136
- buffer: any[];
8365
+ buffer: never[];
8137
8366
  lastKeyTime: number;
8138
8367
  displayBlock: string;
8139
8368
  get isTouchScreen(): boolean;
@@ -8188,17 +8417,17 @@ declare class SearchSettingsComponent implements OnInit {
8188
8417
  * @internal
8189
8418
  */
8190
8419
  computeSourcesCheckAllBehavior(sources: SearchSource[]): void;
8191
- resetSourceOptions(event: any): void;
8420
+ resetSourceOptions(event: Event): void;
8192
8421
  /**
8193
8422
  * Triggered when the check all / uncheck all type is clicked,
8194
8423
  * @internal
8195
8424
  */
8196
- checkUncheckAll(event: any, source: SearchSource, setting: SearchSourceSettings): void;
8425
+ checkUncheckAll(event: Event, source: SearchSource, setting: SearchSourceSettings): void;
8197
8426
  /**
8198
8427
  * Triggered when the check all / uncheck all type is clicked,
8199
8428
  * @internal
8200
8429
  */
8201
- checkUncheckAllSources(event: any): void;
8430
+ checkUncheckAllSources(event: Event): void;
8202
8431
  /**
8203
8432
  * Triggered when a setting is checked (radiobutton style)
8204
8433
  * @internal
@@ -8206,11 +8435,11 @@ declare class SearchSettingsComponent implements OnInit {
8206
8435
  settingsValueCheckedRadioButton(event: MatRadioChange, source: SearchSource, setting: SearchSourceSettings, settingValue: SettingOptions): void;
8207
8436
  onCheckSearchSource(event: MatCheckboxChange, source: SearchSource): void;
8208
8437
  getAvailableValues(setting: SearchSourceSettings): SettingOptions[];
8209
- getAvailableHashtagsValues(setting: SettingOptions): string;
8210
- stopPropagation(event: any): void;
8211
- changePointerReverseSearch(event: any): void;
8212
- changeSearchResultsGeometry(event: any): void;
8213
- reverseSearchCoordsFormat(event: any): void;
8438
+ getAvailableHashtagsValues(setting: SettingOptions): string | undefined;
8439
+ stopPropagation(event: Event): void;
8440
+ changePointerReverseSearch(event: MatSlideToggleChange): void;
8441
+ changeSearchResultsGeometry(event: MatSlideToggleChange): void;
8442
+ reverseSearchCoordsFormat(event: MatSlideToggleChange): void;
8214
8443
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchSettingsComponent, never>;
8215
8444
  static ɵcmp: _angular_core.ɵɵ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>;
8216
8445
  }
@@ -8237,6 +8466,10 @@ declare enum SearchResultMode {
8237
8466
  Grouped = "grouped",
8238
8467
  Flat = "flat"
8239
8468
  }
8469
+ type Result = {
8470
+ source: SearchSource;
8471
+ results: SearchResult[] | undefined;
8472
+ };
8240
8473
  /**
8241
8474
  * List of search results with focus and selection capabilities.
8242
8475
  * This component is dumb and only emits events.
@@ -8254,15 +8487,10 @@ declare class SearchResultsComponent implements OnInit, OnDestroy {
8254
8487
  /**
8255
8488
  * Search results store watcher
8256
8489
  */
8257
- private watcher;
8258
- private settingsChange$$;
8259
- pageIterator: {
8260
- sourceId: string;
8261
- }[];
8262
- collapsed: {
8263
- sourceId: string;
8264
- }[];
8265
- readonly map: _angular_core.InputSignal<IgoMap>;
8490
+ private watcher?;
8491
+ pageIterator: Record<string, number>;
8492
+ collapsed: Record<string, boolean>;
8493
+ readonly map: _angular_core.InputSignal<IgoMap | undefined>;
8266
8494
  /**
8267
8495
  * Search results store
8268
8496
  */
@@ -8270,7 +8498,7 @@ declare class SearchResultsComponent implements OnInit, OnDestroy {
8270
8498
  /**
8271
8499
  * to show hide results icons
8272
8500
  */
8273
- readonly showIcons: _angular_core.InputSignal<boolean>;
8501
+ readonly showIcons: _angular_core.InputSignal<boolean | undefined>;
8274
8502
  /**
8275
8503
  * Search results display mode
8276
8504
  */
@@ -8289,7 +8517,6 @@ declare class SearchResultsComponent implements OnInit, OnDestroy {
8289
8517
  get term(): string;
8290
8518
  set term(value: string);
8291
8519
  _term: string;
8292
- readonly settingsChange$: _angular_core.InputSignal<BehaviorSubject<boolean>>;
8293
8520
  readonly termSplitter: _angular_core.InputSignal<string>;
8294
8521
  /**
8295
8522
  * Event emitted when a result is focused
@@ -8315,12 +8542,9 @@ declare class SearchResultsComponent implements OnInit, OnDestroy {
8315
8542
  */
8316
8543
  readonly resultMouseenter: _angular_core.OutputEmitterRef<SearchResult<Record<string, any>>>;
8317
8544
  readonly resultMouseleave: _angular_core.OutputEmitterRef<SearchResult<Record<string, any>>>;
8318
- readonly templateSearchToolbar: _angular_core.Signal<TemplateRef<any>>;
8319
- get results$(): Observable<{
8320
- source: SearchSource;
8321
- results: SearchResult[];
8322
- }[]>;
8323
- private _results$;
8545
+ readonly templateSearchToolbar: _angular_core.Signal<TemplateRef<unknown> | undefined>;
8546
+ get results$(): Observable<Result[]> | undefined;
8547
+ private _results$?;
8324
8548
  /**
8325
8549
  * Bind the search results store to the watcher
8326
8550
  * @internal
@@ -8331,16 +8555,14 @@ declare class SearchResultsComponent implements OnInit, OnDestroy {
8331
8555
  * @internal
8332
8556
  */
8333
8557
  ngOnDestroy(): void;
8558
+ resetPage(): void;
8334
8559
  /**
8335
8560
  * Compute a group title
8336
8561
  * @param group Search results group
8337
8562
  * @returns Group title
8338
8563
  * @internal
8339
8564
  */
8340
- computeGroupTitle(group: {
8341
- source: SearchSource;
8342
- results: SearchResult[];
8343
- }): string;
8565
+ computeGroupTitle(group: Result): string;
8344
8566
  /**
8345
8567
  * When a result is selected, update it's state in the store and emit
8346
8568
  * an event. A selected result is also considered focused
@@ -8366,16 +8588,10 @@ declare class SearchResultsComponent implements OnInit, OnDestroy {
8366
8588
  * @returns Search results grouped by source
8367
8589
  */
8368
8590
  private groupResults;
8369
- isMoreResults(group: {
8370
- source: SearchSource;
8371
- results: SearchResult[];
8372
- }): boolean;
8373
- displayMoreResults(group: {
8374
- source: SearchSource;
8375
- results: SearchResult[];
8376
- }): void;
8591
+ isMoreResults(group: Result): boolean | undefined;
8592
+ displayMoreResults(group: Result): void;
8377
8593
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchResultsComponent, never>;
8378
- static ɵcmp: _angular_core.ɵɵ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>;
8594
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchResultsComponent, "igo-search-results", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": true; "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; }; "termSplitter": { "alias": "termSplitter"; "required": false; "isSignal": true; }; }, { "resultFocus": "resultFocus"; "resultUnfocus": "resultUnfocus"; "resultSelect": "resultSelect"; "moreResults": "moreResults"; "resultMouseenter": "resultMouseenter"; "resultMouseleave": "resultMouseleave"; }, ["templateSearchToolbar"], never, true, never>;
8379
8595
  }
8380
8596
 
8381
8597
  declare class SearchResultAddButtonComponent implements OnInit, OnDestroy {
@@ -8385,8 +8601,8 @@ declare class SearchResultAddButtonComponent implements OnInit, OnDestroy {
8385
8601
  private mediaService;
8386
8602
  tooltip$: BehaviorSubject<string>;
8387
8603
  addFeatureToLayerTooltip$: BehaviorSubject<string>;
8388
- private resolution$$;
8389
- private layers$$;
8604
+ private resolution$$?;
8605
+ private layers$$?;
8390
8606
  inRange$: BehaviorSubject<boolean>;
8391
8607
  isVisible$: BehaviorSubject<boolean>;
8392
8608
  isPreview$: BehaviorSubject<boolean>;
@@ -8394,11 +8610,11 @@ declare class SearchResultAddButtonComponent implements OnInit, OnDestroy {
8394
8610
  private lastTimeoutRequest;
8395
8611
  private mouseInsideAdd;
8396
8612
  readonly layer: _angular_core.InputSignal<SearchResult<Record<string, any>>>;
8397
- readonly store: _angular_core.InputSignal<EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>>;
8613
+ readonly store: _angular_core.InputSignal<EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState> | undefined>;
8398
8614
  /**
8399
8615
  * Whether the layer is already added to the map
8400
8616
  */
8401
- readonly added: _angular_core.ModelSignal<boolean>;
8617
+ readonly added: _angular_core.ModelSignal<boolean | undefined>;
8402
8618
  /**
8403
8619
  * The map to add the search result layer to
8404
8620
  */
@@ -8445,7 +8661,7 @@ declare class SearchResultAddButtonComponent implements OnInit, OnDestroy {
8445
8661
  addFeature(feature: SearchResult, activeStore: FeatureStore<Feature>): void;
8446
8662
  private clearLabelsOfOlGeometry;
8447
8663
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchResultAddButtonComponent, never>;
8448
- static ɵcmp: _angular_core.ɵɵ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>;
8664
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchResultAddButtonComponent, "igo-search-add-button", never, { "layer": { "alias": "layer"; "required": true; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; "added": { "alias": "added"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": true; "isSignal": true; }; "saveSearchResultInLayer": { "alias": "saveSearchResultInLayer"; "required": false; "isSignal": true; }; "stores": { "alias": "stores"; "required": false; "isSignal": true; }; }, { "added": "addedChange"; }, never, never, true, never>;
8449
8665
  }
8450
8666
 
8451
8667
  /**
@@ -8676,6 +8892,18 @@ interface OsrmWaypoint {
8676
8892
  location: [number, number];
8677
8893
  name?: string;
8678
8894
  }
8895
+ interface OsrmApiResponse {
8896
+ routes: OsrmRawRoute[];
8897
+ waypoints: OsrmWaypoint[];
8898
+ }
8899
+ interface OsrmRawRoute {
8900
+ legs: OsrmRouteLeg[];
8901
+ distance: number;
8902
+ duration: number;
8903
+ geometry: DirectionsGeometry;
8904
+ weight: number;
8905
+ weight_name: string;
8906
+ }
8679
8907
 
8680
8908
  /**
8681
8909
  * The class is a specialized version of an EntityStore that stores
@@ -8693,8 +8921,8 @@ declare class StepsFeatureStore extends FeatureStore<FeatureWithStep> {
8693
8921
  }
8694
8922
 
8695
8923
  declare class DirectionsComponent implements OnInit, OnDestroy {
8924
+ isLoading: boolean;
8696
8925
  private cdRef;
8697
- private http;
8698
8926
  private languageService;
8699
8927
  private directionsService;
8700
8928
  private directionsSourceService;
@@ -8712,7 +8940,7 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
8712
8940
  private isTranslating;
8713
8941
  previousStops: Stop[];
8714
8942
  private searchs$$;
8715
- readonly contextUri: _angular_core.InputSignal<string>;
8943
+ readonly contextUri: _angular_core.InputSignal<string | undefined>;
8716
8944
  readonly stopsStore: _angular_core.InputSignal<StopsStore>;
8717
8945
  readonly stopsFeatureStore: _angular_core.InputSignal<StopsFeatureStore>;
8718
8946
  readonly routesFeatureStore: _angular_core.InputSignal<RoutesFeatureStore>;
@@ -8728,7 +8956,7 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
8728
8956
  */
8729
8957
  get directionControlIsActive(): boolean;
8730
8958
  get interactions(): olInteraction.Interaction[];
8731
- get enabledProfileHasAuthorization(): _igo2_geo.BaseDirectionsSourceOptionsProfileAuthorization;
8959
+ get enabledProfileHasAuthorization(): _igo2_geo.BaseDirectionsSourceOptionsProfileAuthorization | undefined;
8732
8960
  constructor();
8733
8961
  ngOnInit(): void;
8734
8962
  ngOnDestroy(): void;
@@ -8761,7 +8989,7 @@ declare class DirectionsInputsComponent implements OnDestroy {
8761
8989
  readonly stopInputHasFocus: _angular_core.OutputEmitterRef<boolean>;
8762
8990
  private readonly invalidKeys;
8763
8991
  private onMapClickEventKeys;
8764
- stopWithHover: Stop;
8992
+ stopWithHover?: Stop;
8765
8993
  stopIsDragged: boolean;
8766
8994
  /**
8767
8995
  * Returns the position property of the geolocationController.
@@ -8895,7 +9123,7 @@ declare class DirectionsButtonsComponent {
8895
9123
  private messageService;
8896
9124
  private routeService;
8897
9125
  private directionsService;
8898
- readonly contextUri: _angular_core.InputSignal<string>;
9126
+ readonly contextUri: _angular_core.InputSignal<string | undefined>;
8899
9127
  readonly stopsStore: _angular_core.InputSignal<StopsStore>;
8900
9128
  readonly routesFeatureStore: _angular_core.InputSignal<RoutesFeatureStore>;
8901
9129
  readonly stepsFeatureStore: _angular_core.InputSignal<StepsFeatureStore>;
@@ -8948,7 +9176,7 @@ declare class DirectionsButtonsComponent {
8948
9176
  */
8949
9177
  private getLink;
8950
9178
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DirectionsButtonsComponent, never>;
8951
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DirectionsButtonsComponent, "igo-directions-buttons", never, { "contextUri": { "alias": "contextUri"; "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": "zoomOnActiveRoute"; }, never, never, true, never>;
9179
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DirectionsButtonsComponent, "igo-directions-buttons", never, { "contextUri": { "alias": "contextUri"; "required": false; "isSignal": true; }; "stopsStore": { "alias": "stopsStore"; "required": true; "isSignal": true; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; "isSignal": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; "isSignal": true; }; }, { "zoomOnActiveRoute": "zoomOnActiveRoute"; }, never, never, true, never>;
8952
9180
  }
8953
9181
 
8954
9182
  declare class DirectionsResultsComponent implements OnInit, OnDestroy {
@@ -8956,7 +9184,7 @@ declare class DirectionsResultsComponent implements OnInit, OnDestroy {
8956
9184
  private cdRef;
8957
9185
  readonly routesFeatureStore: _angular_core.InputSignal<RoutesFeatureStore>;
8958
9186
  readonly stepsFeatureStore: _angular_core.InputSignal<StepsFeatureStore>;
8959
- activeRoute: Directions;
9187
+ activeRoute?: Directions;
8960
9188
  routes: Directions[];
8961
9189
  private entities$$;
8962
9190
  ngOnInit(): void;
@@ -8972,7 +9200,7 @@ declare class DirectionsResultsComponent implements OnInit, OnDestroy {
8972
9200
  * @param {number} distance - The distance in meters to be formatted.
8973
9201
  * @return {string} The formatted distance string.
8974
9202
  */
8975
- formatDistance(distance: number): string;
9203
+ formatDistance(distance: number): string | undefined;
8976
9204
  /**
8977
9205
  * Formats the given duration in seconds.
8978
9206
  *
@@ -9026,9 +9254,9 @@ declare class ToastComponent {
9026
9254
  DOWN: string;
9027
9255
  };
9028
9256
  private format;
9029
- readonly expanded: _angular_core.ModelSignal<boolean>;
9030
- readonly map: _angular_core.InputSignal<IgoMap>;
9031
- readonly feature: _angular_core.InputSignal<Feature<Record<string, any>>>;
9257
+ readonly expanded: _angular_core.ModelSignal<boolean | undefined>;
9258
+ readonly map: _angular_core.InputSignal<IgoMap | undefined>;
9259
+ readonly feature: _angular_core.InputSignal<Feature<Record<string, any>> | undefined>;
9032
9260
  readonly opened: _angular_core.OutputEmitterRef<boolean>;
9033
9261
  state: _angular_core.Signal<FlexibleState>;
9034
9262
  /**
@@ -9054,8 +9282,8 @@ declare class IgoToastModule {
9054
9282
 
9055
9283
  declare class OgcFilterComponent implements OnUpdateInputs, WidgetComponent {
9056
9284
  private cdRef;
9057
- readonly layer: _angular_core.InputSignal<Layer>;
9058
- readonly map: _angular_core.InputSignal<IgoMap>;
9285
+ readonly layer: _angular_core.InputSignal<Layer | undefined>;
9286
+ readonly map: _angular_core.InputSignal<IgoMap | undefined>;
9059
9287
  /**
9060
9288
  * Event emitted on complete
9061
9289
  */
@@ -9093,7 +9321,7 @@ declare class WorkspaceSelectorDirective implements OnInit, OnDestroy {
9093
9321
  private featureWorkspaceService;
9094
9322
  private layers$$;
9095
9323
  private entities$$;
9096
- readonly map: _angular_core.InputSignal<IgoMap>;
9324
+ readonly map: _angular_core.InputSignal<IgoMap | undefined>;
9097
9325
  readonly changeWorkspace: _angular_core.OutputEmitterRef<string>;
9098
9326
  readonly disableSwitch: _angular_core.OutputEmitterRef<boolean>;
9099
9327
  readonly relationLayers: _angular_core.OutputEmitterRef<VectorLayer[] | ImageLayer[]>;
@@ -9203,7 +9431,7 @@ declare class StyleModalLayerComponent implements OnInit {
9203
9431
 
9204
9432
  declare class StyleModalLayerButtonComponent {
9205
9433
  private dialog;
9206
- readonly layer: _angular_core.InputSignal<VectorLayer>;
9434
+ readonly layer: _angular_core.InputSignal<VectorLayer | undefined>;
9207
9435
  /**
9208
9436
  * Open the style modal dialog box
9209
9437
  */
@@ -9235,79 +9463,6 @@ declare class IgoGeoModule {
9235
9463
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<IgoGeoModule>;
9236
9464
  }
9237
9465
 
9238
- interface AddedChangeEmitter {
9239
- added: boolean;
9240
- layer: CatalogItemLayer;
9241
- event: Event;
9242
- }
9243
- interface AddedChangeGroupEmitter {
9244
- added: boolean;
9245
- group: CatalogItemGroup;
9246
- event: Event;
9247
- }
9248
- interface ICatalog {
9249
- id: string;
9250
- title?: string;
9251
- url: string;
9252
- removable?: boolean;
9253
- externalProvider?: boolean;
9254
- items?: CatalogItem[];
9255
- type?: TypeCatalogStrings;
9256
- version?: string;
9257
- matrixSet?: string;
9258
- forcedProperties?: ForcedProperty[];
9259
- requestEncoding?: string;
9260
- regFilters?: string[];
9261
- groupImpose?: CatalogItemGroup;
9262
- groupSeparator?: string;
9263
- queryFormat?: QueryFormat | CatalogQueryFormatTypes;
9264
- queryParams?: Record<string, string>;
9265
- sourceOptions?: Record<string, any>;
9266
- tooltipType?: TooltipType.ABSTRACT | TooltipType.TITLE;
9267
- sortDirection?: 'asc' | 'desc';
9268
- setCrossOriginAnonymous?: boolean;
9269
- showLegend?: boolean;
9270
- }
9271
- interface ForcedProperty {
9272
- layerName: any;
9273
- title?: string;
9274
- metadataUrl?: string;
9275
- metadataAbstract?: string;
9276
- metadataAbstractAll?: string;
9277
- metadataUrlAll?: string;
9278
- }
9279
- interface ICompositeCatalog extends Omit<ICatalog, 'url'> {
9280
- composite: ICatalog[];
9281
- }
9282
- interface CatalogItem {
9283
- id: string;
9284
- title: string;
9285
- type?: CatalogItemType;
9286
- address?: string;
9287
- externalProvider?: boolean;
9288
- }
9289
- interface CatalogItemLayer<L = MetadataLayerOptions> extends CatalogItem {
9290
- options: L;
9291
- }
9292
- interface CatalogItemGroup extends CatalogItem {
9293
- items?: CatalogItem[];
9294
- sortDirection?: 'asc' | 'desc';
9295
- }
9296
- interface CatalogItemState extends EntityState {
9297
- added?: boolean;
9298
- }
9299
- interface CatalogServiceOptions {
9300
- /** @deprecated Use baselayers instead*/
9301
- baseLayers?: boolean;
9302
- baselayers?: boolean;
9303
- /** @deprecated Not used anymore*/
9304
- emailAddress?: string;
9305
- url?: string;
9306
- sources?: (ICatalog | ICompositeCatalog)[];
9307
- /** @deprecated Use url instead */
9308
- sourcesUrl?: string;
9309
- }
9310
-
9311
9466
  declare abstract class Catalog implements ICatalog {
9312
9467
  id: string;
9313
9468
  title: string;
@@ -9315,7 +9470,7 @@ declare abstract class Catalog implements ICatalog {
9315
9470
  removable?: boolean;
9316
9471
  externalProvider?: boolean;
9317
9472
  abstract?: string;
9318
- forcedProperties?: any[];
9473
+ forcedProperties?: ForcedProperty[];
9319
9474
  items?: CatalogItem[];
9320
9475
  /** Default to wms */
9321
9476
  type?: TypeCatalogStrings;
@@ -9336,7 +9491,7 @@ declare abstract class Catalog implements ICatalog {
9336
9491
  setCrossOriginAnonymous?: boolean;
9337
9492
  showLegend?: boolean;
9338
9493
  profils?: string[];
9339
- constructor(options: Catalog);
9494
+ constructor(options: ICatalog | ICompositeCatalog);
9340
9495
  abstract collectCatalogItems(): Observable<CatalogItem[]>;
9341
9496
  }
9342
9497
  type CollectCatalogItemsFn = (_this: Catalog) => Observable<CatalogItem[]>;
@@ -9347,23 +9502,22 @@ declare class CatalogService {
9347
9502
  private languageService;
9348
9503
  private messageService;
9349
9504
  private capabilitiesService;
9505
+ private arcgisCatalog;
9350
9506
  loadCatalogs(): Observable<Catalog[]>;
9351
9507
  loadCatalogItems(catalog: Catalog): Observable<CatalogItem[]>;
9352
9508
  loadCatalogBaseLayerItems(catalog: Catalog): Observable<CatalogItemGroup[]>;
9353
9509
  private getCatalogBaseLayersOptions;
9354
9510
  loadCatalogWMSLayerItems(catalog: Catalog): Observable<CatalogItem[]>;
9355
- flattenWmsCapabilities(parent: any, level: number, finalLayers: any, separator?: string): void;
9511
+ flattenWmsCapabilities(parent: WmsCapabilityLayer, level: number | undefined, finalLayers: WmsCapabilityLayer[], separator?: string): void;
9356
9512
  loadCatalogWMTSLayerItems(catalog: Catalog): Observable<CatalogItem[]>;
9357
9513
  loadCatalogArcGISRestItems(catalog: Catalog): Observable<CatalogItem[]>;
9514
+ private showError;
9358
9515
  loadCatalogCompositeLayerItems(catalog: Catalog): Observable<CatalogItem[]>;
9359
9516
  private getCatalogCapabilities;
9360
- private computeForcedProperties;
9361
9517
  private prepareCatalogItemLayer;
9362
9518
  private prepareCatalogItemGroup;
9363
9519
  private includeRecursiveItems;
9364
9520
  private getWMTSItems;
9365
- private getArcGISRESTItems;
9366
- private testLayerRegexes;
9367
9521
  private retrieveLayerInfoFormat;
9368
9522
  private findCatalogInfoFormat;
9369
9523
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CatalogService, never>;
@@ -9380,7 +9534,7 @@ declare class CatalogBrowserComponent implements OnInit, OnDestroy {
9380
9534
  * Catalog items store watcher
9381
9535
  */
9382
9536
  private watcher;
9383
- get resolution$(): BehaviorSubject<number>;
9537
+ get resolution$(): BehaviorSubject<number | undefined>;
9384
9538
  readonly catalogAllowLegend: _angular_core.ModelSignal<boolean>;
9385
9539
  /**
9386
9540
  * Catalog
@@ -9461,7 +9615,7 @@ declare class CatalogBrowserComponent implements OnInit, OnDestroy {
9461
9615
  */
9462
9616
  private removeGroupFromMap;
9463
9617
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CatalogBrowserComponent, never>;
9464
- static ɵcmp: _angular_core.ɵɵ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>;
9618
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CatalogBrowserComponent, "igo-catalog-browser", never, { "catalogAllowLegend": { "alias": "catalogAllowLegend"; "required": false; "isSignal": true; }; "catalog": { "alias": "catalog"; "required": true; "isSignal": true; }; "store": { "alias": "store"; "required": true; "isSignal": true; }; "map": { "alias": "map"; "required": true; "isSignal": true; }; "toggleCollapsedGroup": { "alias": "toggleCollapsedGroup"; "required": false; "isSignal": true; }; }, { "catalogAllowLegend": "catalogAllowLegendChange"; }, never, never, true, never>;
9465
9619
  }
9466
9620
 
9467
9621
  /**
@@ -9485,17 +9639,17 @@ declare class AddCatalogDialogComponent implements OnInit, OnDestroy {
9485
9639
  addedCatalog: Catalog;
9486
9640
  isPredefinedCatalog: boolean;
9487
9641
  };
9488
- predefinedForm$: BehaviorSubject<Form>;
9489
- customForm$: BehaviorSubject<Form>;
9490
- data$: BehaviorSubject<Catalog>;
9491
- customData$: BehaviorSubject<Catalog>;
9642
+ predefinedForm$: BehaviorSubject<Form | undefined>;
9643
+ customForm$: BehaviorSubject<Form | undefined>;
9644
+ data$: BehaviorSubject<Catalog | undefined>;
9645
+ customData$: BehaviorSubject<Catalog | undefined>;
9492
9646
  emailAddress: string;
9493
9647
  private storeViewAll$$;
9494
9648
  ngOnInit(): void;
9495
9649
  onPredefinedSubmit(data: Catalog): void;
9496
9650
  onCustomSubmit(catalog: Catalog): void;
9497
9651
  ngOnDestroy(): void;
9498
- checkFieldsValidity(form$: BehaviorSubject<Form>): boolean;
9652
+ checkFieldsValidity(form$: BehaviorSubject<Form | undefined>): boolean;
9499
9653
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AddCatalogDialogComponent, never>;
9500
9654
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<AddCatalogDialogComponent, "igo-add-catalog-dialog", never, {}, {}, never, never, true, never>;
9501
9655
  }
@@ -9512,10 +9666,6 @@ declare class CatalogLibraryComponent implements OnInit, OnDestroy {
9512
9666
  * Store holding the catalogs
9513
9667
  */
9514
9668
  readonly store: _angular_core.InputSignal<EntityStore<Catalog, _igo2_common_entity.EntityState>>;
9515
- /**
9516
- * Map to add the catalog items to
9517
- */
9518
- readonly map: _angular_core.InputSignal<IgoMap>;
9519
9669
  /**
9520
9670
  * Determine if the form to add a catalog is allowed
9521
9671
  */
@@ -9552,10 +9702,10 @@ declare class CatalogLibraryComponent implements OnInit, OnDestroy {
9552
9702
  addCatalog(addedCatalog: Catalog): void;
9553
9703
  ngOnDestroy(): void;
9554
9704
  private handleAddCatalogToStore;
9555
- onCatalogRemove(catalog: any): void;
9556
- addCatalogDialog(error?: any, addedCatalog?: Catalog, isPredefinedCatalog?: boolean): void;
9705
+ onCatalogRemove(catalog: Catalog): void;
9706
+ addCatalogDialog(error?: boolean, addedCatalog?: Catalog, isPredefinedCatalog?: boolean): void;
9557
9707
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CatalogLibraryComponent, never>;
9558
- static ɵcmp: _angular_core.ɵɵ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>;
9708
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CatalogLibraryComponent, "igo-catalog-library", never, { "store": { "alias": "store"; "required": true; "isSignal": true; }; "addCatalogAllowed": { "alias": "addCatalogAllowed"; "required": false; "isSignal": true; }; "predefinedCatalogs": { "alias": "predefinedCatalogs"; "required": false; "isSignal": true; }; }, { "predefinedCatalogs": "predefinedCatalogsChange"; "catalogSelectChange": "catalogSelectChange"; }, never, never, true, never>;
9559
9709
  }
9560
9710
 
9561
9711
  declare const CATALOG_LIBRARY_DIRECTIVES: readonly [typeof CatalogLibraryComponent, typeof AddCatalogDialogComponent];
@@ -9630,19 +9780,19 @@ declare class ModifyControl {
9630
9780
  * Geometry changes observable
9631
9781
  */
9632
9782
  changes$: Subject<OlGeometry>;
9633
- private olMap;
9783
+ private olMap?;
9634
9784
  private olOverlayLayer;
9635
- olModifyInteraction: OlModify;
9785
+ olModifyInteraction?: OlModify;
9636
9786
  private onModifyStartKey;
9637
9787
  private onModifyEndKey;
9638
9788
  private onModifyKey;
9639
9789
  private olModifyInteractionIsActive;
9640
- private olTranslateInteraction;
9790
+ private olTranslateInteraction?;
9641
9791
  private onTranslateStartKey;
9642
9792
  private onTranslateEndKey;
9643
9793
  private onTranslateKey;
9644
9794
  private olTranslateInteractionIsActive;
9645
- private olDrawInteraction;
9795
+ private olDrawInteraction?;
9646
9796
  private onDrawStartKey;
9647
9797
  private onDrawEndKey;
9648
9798
  private onDrawKey;
@@ -9653,7 +9803,7 @@ declare class ModifyControl {
9653
9803
  private drawKeyDown$$;
9654
9804
  private removedOlInteractions;
9655
9805
  private olLinearRingsLayer;
9656
- private olOuterGeometry;
9806
+ private olOuterGeometry?;
9657
9807
  /**
9658
9808
  * Wheter the control is active
9659
9809
  */
@@ -9857,7 +10007,7 @@ declare class SliceControl {
9857
10007
  /**
9858
10008
  * Slice error, if any
9859
10009
  */
9860
- error$: Subject<GeometrySliceError>;
10010
+ error$: Subject<GeometrySliceError | undefined>;
9861
10011
  private olMap;
9862
10012
  private olOverlayLayer;
9863
10013
  /**
@@ -9954,11 +10104,11 @@ declare class GeometryFormFieldInputComponent implements OnInit, OnDestroy, Cont
9954
10104
  * Active control
9955
10105
  * @internal
9956
10106
  */
9957
- activeControl: DrawControl | ModifyControl;
10107
+ activeControl?: DrawControl | ModifyControl;
9958
10108
  /**
9959
10109
  * The map to draw the geometry on
9960
10110
  */
9961
- readonly map: _angular_core.InputSignal<IgoMap>;
10111
+ readonly map: _angular_core.InputSignal<IgoMap | undefined>;
9962
10112
  /**
9963
10113
  * The geometry type
9964
10114
  */
@@ -9968,7 +10118,7 @@ declare class GeometryFormFieldInputComponent implements OnInit, OnDestroy, Cont
9968
10118
  /**
9969
10119
  * The drawGuide around the mouse pointer to help drawing
9970
10120
  */
9971
- readonly drawGuide: _angular_core.InputSignal<number>;
10121
+ readonly drawGuide: _angular_core.InputSignal<number | null>;
9972
10122
  /**
9973
10123
  * Whether a measure tooltip should be displayed
9974
10124
  */
@@ -10130,7 +10280,7 @@ declare class GeometryFormFieldInputComponent implements OnInit, OnDestroy, Cont
10130
10280
  */
10131
10281
  declare class GeometryFormFieldComponent implements OnInit, OnDestroy {
10132
10282
  private cdRef;
10133
- readonly value$: BehaviorSubject<GeoJSONGeometry>;
10283
+ readonly value$: BehaviorSubject<GeoJSONGeometry | undefined>;
10134
10284
  private value$$;
10135
10285
  set drawControlIsActive(value: boolean);
10136
10286
  get drawControlIsActive(): boolean;
@@ -10141,14 +10291,14 @@ declare class GeometryFormFieldComponent implements OnInit, OnDestroy {
10141
10291
  /**
10142
10292
  * The field's form control
10143
10293
  */
10144
- readonly formControl: _angular_core.InputSignal<UntypedFormControl>;
10294
+ readonly formControl: _angular_core.InputSignal<UntypedFormControl | undefined>;
10145
10295
  /**
10146
10296
  * The map to draw the geometry on
10147
10297
  */
10148
10298
  readonly map: _angular_core.InputSignal<IgoMap>;
10149
10299
  set geometryType(value: Type);
10150
10300
  get geometryType(): Type;
10151
- readonly geometryType$: BehaviorSubject<Type>;
10301
+ readonly geometryType$: BehaviorSubject<Type | undefined>;
10152
10302
  /**
10153
10303
  * Whether a geometry type toggle should be displayed
10154
10304
  */
@@ -10184,12 +10334,12 @@ declare class GeometryFormFieldComponent implements OnInit, OnDestroy {
10184
10334
  /**
10185
10335
  * Style for the draw control (applies while the geometry is being drawn)
10186
10336
  */
10187
- readonly drawStyle: _angular_core.InputSignal<StyleLike>;
10337
+ readonly drawStyle: _angular_core.InputSignal<StyleLike | undefined>;
10188
10338
  /**
10189
10339
  * Style for the overlay layer (applies once the geometry is added to the map)
10190
10340
  * If not specified, drawStyle applies
10191
10341
  */
10192
- readonly overlayStyle: _angular_core.InputSignal<StyleLike>;
10342
+ readonly overlayStyle: _angular_core.InputSignal<StyleLike | undefined>;
10193
10343
  /**
10194
10344
  * Set up a value stream
10195
10345
  * @internal
@@ -10201,7 +10351,7 @@ declare class GeometryFormFieldComponent implements OnInit, OnDestroy {
10201
10351
  */
10202
10352
  ngOnDestroy(): void;
10203
10353
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GeometryFormFieldComponent, never>;
10204
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<GeometryFormFieldComponent, "igo-geometry-form-field", never, { "formControl": { "alias": "formControl"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "geometryType": { "alias": "geometryType"; "required": false; }; "geometryTypeField": { "alias": "geometryTypeField"; "required": false; "isSignal": true; }; "geometryTypes": { "alias": "geometryTypes"; "required": false; "isSignal": true; }; "drawGuideField": { "alias": "drawGuideField"; "required": false; "isSignal": true; }; "drawGuide": { "alias": "drawGuide"; "required": false; }; "drawGuidePlaceholder": { "alias": "drawGuidePlaceholder"; "required": false; "isSignal": true; }; "measure": { "alias": "measure"; "required": false; "isSignal": true; }; "controlOptions": { "alias": "controlOptions"; "required": false; "isSignal": true; }; "drawStyle": { "alias": "drawStyle"; "required": false; "isSignal": true; }; "overlayStyle": { "alias": "overlayStyle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
10354
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GeometryFormFieldComponent, "igo-geometry-form-field", never, { "formControl": { "alias": "formControl"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": true; "isSignal": true; }; "geometryType": { "alias": "geometryType"; "required": false; }; "geometryTypeField": { "alias": "geometryTypeField"; "required": false; "isSignal": true; }; "geometryTypes": { "alias": "geometryTypes"; "required": false; "isSignal": true; }; "drawGuideField": { "alias": "drawGuideField"; "required": false; "isSignal": true; }; "drawGuide": { "alias": "drawGuide"; "required": false; }; "drawGuidePlaceholder": { "alias": "drawGuidePlaceholder"; "required": false; "isSignal": true; }; "measure": { "alias": "measure"; "required": false; "isSignal": true; }; "controlOptions": { "alias": "controlOptions"; "required": false; "isSignal": true; }; "drawStyle": { "alias": "drawStyle"; "required": false; "isSignal": true; }; "overlayStyle": { "alias": "overlayStyle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
10205
10355
  }
10206
10356
 
10207
10357
  declare const GEOMETRY_FORM_FIELD_DIRECTIVES: readonly [typeof GeometryFormFieldComponent, typeof GeometryFormFieldInputComponent];
@@ -10319,15 +10469,15 @@ declare class PrintComponent {
10319
10469
  private printService;
10320
10470
  disabled$: BehaviorSubject<boolean>;
10321
10471
  readonly map: _angular_core.InputSignal<IgoMap>;
10322
- readonly outputFormat: _angular_core.InputSignal<"Pdf" | "Image">;
10323
- readonly paperFormat: _angular_core.InputSignal<"A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "Letter" | "Legal">;
10324
- readonly orientation: _angular_core.InputSignal<"landscape" | "portrait">;
10325
- readonly imageFormat: _angular_core.InputSignal<"Bmp" | "Gif" | "Jpeg" | "Png" | "Tiff">;
10326
- readonly legendPosition: _angular_core.InputSignal<"none" | "topright" | "topleft" | "bottomleft" | "bottomright" | "newpage">;
10327
- readonly resolution: _angular_core.InputSignal<"72" | "96" | "150" | "300">;
10472
+ readonly outputFormat: _angular_core.InputSignal<"Pdf" | "Image" | undefined>;
10473
+ readonly paperFormat: _angular_core.InputSignal<"A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "Letter" | "Legal" | undefined>;
10474
+ readonly orientation: _angular_core.InputSignal<"landscape" | "portrait" | undefined>;
10475
+ readonly imageFormat: _angular_core.InputSignal<"Bmp" | "Gif" | "Jpeg" | "Png" | "Tiff" | undefined>;
10476
+ readonly legendPosition: _angular_core.InputSignal<"none" | "topright" | "topleft" | "bottomleft" | "bottomright" | "newpage" | undefined>;
10477
+ readonly resolution: _angular_core.InputSignal<"72" | "96" | "150" | "300" | undefined>;
10328
10478
  handleFormSubmit(data: PrintOptions): void;
10329
10479
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PrintComponent, never>;
10330
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<PrintComponent, "igo-print", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "outputFormat": { "alias": "outputFormat"; "required": false; "isSignal": true; }; "paperFormat": { "alias": "paperFormat"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "imageFormat": { "alias": "imageFormat"; "required": false; "isSignal": true; }; "legendPosition": { "alias": "legendPosition"; "required": false; "isSignal": true; }; "resolution": { "alias": "resolution"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
10480
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<PrintComponent, "igo-print", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "outputFormat": { "alias": "outputFormat"; "required": false; "isSignal": true; }; "paperFormat": { "alias": "paperFormat"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "imageFormat": { "alias": "imageFormat"; "required": false; "isSignal": true; }; "legendPosition": { "alias": "legendPosition"; "required": false; "isSignal": true; }; "resolution": { "alias": "resolution"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
10331
10481
  }
10332
10482
 
10333
10483
  declare class PrintFormComponent implements OnInit {
@@ -10369,19 +10519,19 @@ declare class PrintFormComponent implements OnInit {
10369
10519
  newpage: "newpage";
10370
10520
  };
10371
10521
  isPrintService: boolean;
10372
- readonly disabled$: _angular_core.InputSignal<BehaviorSubject<boolean>>;
10522
+ readonly disabled$: _angular_core.InputSignal<BehaviorSubject<boolean> | undefined>;
10373
10523
  get imageFormat(): PrintSaveImageFormat;
10374
- set imageFormat(value: PrintSaveImageFormat);
10524
+ set imageFormat(value: PrintSaveImageFormat | undefined);
10375
10525
  get outputFormat(): PrintOutputFormat;
10376
- set outputFormat(value: PrintOutputFormat);
10526
+ set outputFormat(value: PrintOutputFormat | undefined);
10377
10527
  get paperFormat(): PrintPaperFormat;
10378
- set paperFormat(value: PrintPaperFormat);
10528
+ set paperFormat(value: PrintPaperFormat | undefined);
10379
10529
  get orientation(): PrintOrientation;
10380
- set orientation(value: PrintOrientation);
10530
+ set orientation(value: PrintOrientation | undefined);
10381
10531
  get resolution(): PrintResolution;
10382
- set resolution(value: PrintResolution);
10532
+ set resolution(value: PrintResolution | undefined);
10383
10533
  get legendPosition(): PrintLegendPosition;
10384
- set legendPosition(value: PrintLegendPosition);
10534
+ set legendPosition(value: PrintLegendPosition | undefined);
10385
10535
  get title(): string;
10386
10536
  set title(value: string);
10387
10537
  get subtitle(): string;
@@ -10440,7 +10590,6 @@ declare class DataSourceService {
10440
10590
  private languageService;
10441
10591
  private messageService;
10442
10592
  private authInterceptor;
10443
- datasources$: BehaviorSubject<DataSource[]>;
10444
10593
  createAsyncDataSource(options: AnyDataSourceOptions, detailedContextUri?: string): Observable<DataSource>;
10445
10594
  private createOSMDataSource;
10446
10595
  private createFeatureDataSource;
@@ -10468,7 +10617,7 @@ declare abstract class OptionsService {
10468
10617
 
10469
10618
  declare class OptionsApiService extends OptionsService {
10470
10619
  private http;
10471
- private urlApi;
10620
+ private urlApi?;
10472
10621
  private provideContextUri;
10473
10622
  constructor();
10474
10623
  getWMSOptions(baseOptions: WMSDataSourceOptions, detailedContextUri?: string): Observable<WMSDataSourceOptions>;
@@ -10506,7 +10655,7 @@ declare class DirectionsService {
10506
10655
  * @param {DirectionOptions} [directionsOptions={}] - The optional direction options.
10507
10656
  * @return {Observable<Directions[]>} An observable that emits an array of directions.
10508
10657
  */
10509
- route(coordinates: Position[], directionsOptions?: DirectionOptions): Observable<Directions[]>;
10658
+ route(coordinates: Position[], directionsOptions?: DirectionOptions): Observable<Directions[]> | undefined;
10510
10659
  /**
10511
10660
  * Downloads directions for a given map and directions object.
10512
10661
  *
@@ -10556,7 +10705,7 @@ declare class DirectionsService {
10556
10705
  * @param {'asc' | 'desc'} [direction='asc'] - The direction of sorting ('asc' for ascending, 'desc' for descending).
10557
10706
  * @param {string} [field='position'] - The field to sort the stops by.
10558
10707
  */
10559
- declare function updateStoreSorting(stopsStore: StopsStore, direction?: 'asc' | 'desc', field?: string): void;
10708
+ declare function updateStoreSorting(stopsStore: StopsStore, direction?: 'asc' | 'desc', field?: keyof Stop): void;
10560
10709
  /**
10561
10710
  * Computes the relative position of a stop in a list of stops.
10562
10711
  *
@@ -10590,7 +10739,7 @@ declare function removeStopFromStore(stopsStore: StopsStore, stop: Stop): void;
10590
10739
  * @param feature OlFeature
10591
10740
  * @returns OL style function
10592
10741
  */
10593
- declare function directionsStyle(feature: OlFeature<OlGeometry>): olStyle.Style | olStyle.Style[];
10742
+ declare function directionsStyle(feature: OlFeature<OlGeometry> | RenderFeature): olStyle.Style | olStyle.Style[] | undefined;
10594
10743
  /**
10595
10744
  * Initializes the stops feature store with the provided language service.
10596
10745
  *
@@ -10635,7 +10784,7 @@ declare function addRouteToRoutesFeatureStore(routesFeatureStore: RoutesFeatureS
10635
10784
  * @param {number} meters - The distance in meters to be formatted.
10636
10785
  * @return {string | undefined} The formatted distance string.
10637
10786
  */
10638
- declare function formatDistance(meters: number): string;
10787
+ declare function formatDistance(meters: number): string | undefined;
10639
10788
  /**
10640
10789
  * Formats the given duration in seconds to a human-readable string.
10641
10790
  *
@@ -10654,7 +10803,7 @@ declare function formatStep(step: IgoStep, languageService: LanguageService, las
10654
10803
  * @param {LanguageService} languageService - The language service used for translation.
10655
10804
  * @return {string | undefined} The translated maneuver modifier string, or undefined if the modifier is falsy.
10656
10805
  */
10657
- declare function translateManeuverModifier(maneuverModifier: ManeuverModifier, languageService: LanguageService): string;
10806
+ declare function translateManeuverModifier(maneuverModifier: ManeuverModifier, languageService: LanguageService): string | undefined;
10658
10807
  /**
10659
10808
  * Translates the given bearing value into a human-readable direction using the provided language service.
10660
10809
  *
@@ -10765,8 +10914,8 @@ declare class EsriStyleGenerator {
10765
10914
  static _convertEsriSFS(symbol: any): olStyle.Style;
10766
10915
  static _convertOutline(outline: any): olStyle.Stroke;
10767
10916
  static _convertEsriSLS(symbol: any): olStyle.Style;
10768
- static _transformAngle(angle: any): number;
10769
- static _convertEsriSMS(symbol: any): olStyle.Style;
10917
+ static _transformAngle(angle: any): number | undefined;
10918
+ static _convertEsriSMS(symbol: any): olStyle.Style | undefined;
10770
10919
  _convertLabelingInfo(labelingInfo: any, mapUnits: any): any[];
10771
10920
  _renderSimple(renderer: any): () => any[];
10772
10921
  _renderClassBreaks(renderer: any): (feature: any) => any[];
@@ -10776,7 +10925,7 @@ declare class EsriStyleGenerator {
10776
10925
 
10777
10926
  declare function olStyleToBasicIgoStyle(layer: olLayerVector<olSourceVector>): {
10778
10927
  fill: {
10779
- color: ol_color.Color | ol_colorlike.ColorLike | ol_colorlike.PatternDescriptor;
10928
+ color: ol_color.Color | ol_colorlike.ColorLike | ol_colorlike.PatternDescriptor | null;
10780
10929
  };
10781
10930
  stroke: {
10782
10931
  color: ol_color.Color | ol_colorlike.ColorLike;
@@ -10792,7 +10941,7 @@ declare function olStyleToBasicIgoStyle(layer: olLayerVector<olSourceVector>): {
10792
10941
  };
10793
10942
  radius: number;
10794
10943
  };
10795
- };
10944
+ } | undefined;
10796
10945
 
10797
10946
  /**
10798
10947
  * Generate a style for selected features
@@ -10842,7 +10991,7 @@ declare function featureRandomStyle(): olStyle.Style;
10842
10991
  * @param feature olFeature
10843
10992
  * @returns OL style function
10844
10993
  */
10845
- declare function hoverFeatureMarkerStyle(feature: OlFeature<olGeom.Geometry>): olStyle.Style[];
10994
+ declare function hoverFeatureMarkerStyle(feature: OlFeature<ol_geom.Geometry>): olStyle.Style[];
10846
10995
  /**
10847
10996
  * Create a default style for the pointer position and it's label summary.
10848
10997
  * @param feature olFeature
@@ -10892,7 +11041,7 @@ declare class StyleService {
10892
11041
  private getOlKey;
10893
11042
  private getOlCls;
10894
11043
  createStyleByAttribute(feature: RenderFeature | OlFeature<OlGeometry>, styleByAttribute: StyleByAttribute, resolution: number): any;
10895
- createClusterStyle(feature: RenderFeature | OlFeature<OlGeometry>, resolution: number, clusterParam: ClusterParam, layerStyle: any): any;
11044
+ createClusterStyle(feature: RenderFeature | OlFeature<OlGeometry>, resolution: number, clusterParam: ClusterParam | undefined, layerStyle: any): any;
10896
11045
  getLabel(feature: any, labelMatch: any): string;
10897
11046
  private guessTypeFeature;
10898
11047
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<StyleService, never>;
@@ -10926,7 +11075,7 @@ declare class DrawStyleService {
10926
11075
  setOffsetX(offsetX: number): void;
10927
11076
  getOffsetY(): number;
10928
11077
  setOffsetY(offsetY: number): void;
10929
- createIndividualElementStyle(feature: any, resolution: any, labelsAreShown: boolean, fontSizeAndStyle: string, fillColor: string, strokeColor: string, offsetX: number, offsetY: number, proj: ProjectionLike, icon?: string): olStyle.Style;
11078
+ createIndividualElementStyle(feature: any, resolution: number, labelsAreShown: boolean, fontSizeAndStyle: string, fillColor: string, strokeColor: string, offsetX: number, offsetY: number, proj: ProjectionLike, icon?: string): olStyle.Style;
10930
11079
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DrawStyleService, never>;
10931
11080
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<DrawStyleService>;
10932
11081
  }
@@ -10990,7 +11139,7 @@ interface EnvironmentOptions {
10990
11139
  searchOverlayStyle?: OverlayStyleOptions;
10991
11140
  searchSources?: {
10992
11141
  showResultsCount?: boolean;
10993
- [key: string]: SearchSourceOptions | StoredQueriesSearchSourceOptions | StoredQueriesReverseSearchSourceOptions | boolean;
11142
+ [key: string]: SearchSourceOptions | StoredQueriesSearchSourceOptions | StoredQueriesReverseSearchSourceOptions | boolean | undefined;
10994
11143
  };
10995
11144
  searchBar?: {
10996
11145
  showSearchButton?: boolean;
@@ -11016,7 +11165,7 @@ declare function createDrawHoleInteractionStyle(): olStyle.Style;
11016
11165
  * @param olSlicer Slicing line
11017
11166
  * @returns New OL geometries
11018
11167
  */
11019
- declare function sliceOlGeometry(olGeometry: OlLineString | OlPolygon, olSlicer: OlLineString): (OlLineString | OlPolygon)[];
11168
+ declare function sliceOlGeometry(olGeometry: OlGeometry, olSlicer: OlLineString): (OlLineString | OlPolygon)[];
11020
11169
  /**
11021
11170
  * Slice OL Polygon into one or more polygons
11022
11171
  * @param olPolygon OL polygon
@@ -11059,9 +11208,9 @@ declare class ExportService {
11059
11208
  private exportAsync;
11060
11209
  protected exportToFile(olFeatures: OlFeature<OlGeometry>[], format: AnyExportFormat, title: string, projectionIn: string, projectionOut: string): Promise<void>;
11061
11210
  private formatFeatures;
11062
- getFormatter(format: AnyExportFormat): ol_format_GML3.default | olformat.GPX | olformat.KML | olformat.GeoJSON<OlFeature<OlGeometry, {
11211
+ getFormatter(format: AnyExportFormat): ol_format_GML3.default | olformat.GeoJSON<OlFeature<OlGeometry, {
11063
11212
  [x: string]: any;
11064
- }>>;
11213
+ }>> | olformat.GPX | olformat.KML;
11065
11214
  exportExcel(map: IgoMap, store: WorkspaceStore, data: ExportOptions): Promise<void>;
11066
11215
  private getTitleFromLayers;
11067
11216
  private getLayerTitleFromId;
@@ -11073,7 +11222,7 @@ declare class ExportService {
11073
11222
  private getFeaturesFromMap;
11074
11223
  private getFeaturesFromWorkspace;
11075
11224
  getFeatures(map: IgoMap, layer: Layer, data: ExportOptions, store: WorkspaceStore): Observable<OlFeature[]>;
11076
- getWorkspaceByLayerId(id: LayerId, store: WorkspaceStore): Workspace;
11225
+ getWorkspaceByLayerId(id: LayerId, store: WorkspaceStore): Workspace | undefined;
11077
11226
  getGeomTypes(features: OlFeature[], format?: AnyExportFormat): GeometryCollection[];
11078
11227
  /**
11079
11228
  * Checks if the given payload exceeds the OGRE maximum allowed size (2MB).
@@ -11139,7 +11288,7 @@ declare class ImportService {
11139
11288
  }
11140
11289
 
11141
11290
  declare function addLayerAndFeaturesToMap(features: Feature[], map: IgoMap, contextUri: string, layerTitle: string, layerService: LayerService, storeToIdb?: boolean): VectorLayer;
11142
- declare function addLayerAndFeaturesStyledToMap(features: Feature[], map: IgoMap, layerTitle: string, styleListService: StyleListService, styleService: StyleService, layerId?: string, imposedSourceOptions?: any, imposedLayerOptions?: any, zoomTo?: boolean): VectorLayer;
11291
+ declare function addLayerAndFeaturesStyledToMap(features: Feature[], map: IgoMap, layerTitle: string, styleListService: StyleListService, styleService: StyleService | undefined, layerId?: string, imposedSourceOptions?: any, imposedLayerOptions?: any, zoomTo?: boolean): VectorLayer;
11143
11292
  declare function handleFileImportSuccess(file: File, features: Feature[], map: IgoMap, contextUri: string, messageService: MessageService, layerService: LayerService, confirmDialogService?: ConfirmDialogService, styleListService?: StyleListService, styleService?: StyleService): void;
11144
11293
  declare function handleFileImportError(file: File, error: Error, messageService: MessageService, sizeMb?: number): void;
11145
11294
  declare function handleInvalidFileImportError(file: File, error: Error, messageService: MessageService): void;
@@ -11201,7 +11350,7 @@ declare class GeoDB {
11201
11350
  private customUpdate;
11202
11351
  add(geoDBData: GeoDBData): Observable<GeoDBData>;
11203
11352
  put(geoDBData: GeoDBData): Observable<GeoDBData>;
11204
- getGeoDBData(url: string): Observable<GeoDBData>;
11353
+ getGeoDBData(url: string): Observable<GeoDBData | undefined>;
11205
11354
  get(url: string): Observable<object | Blob>;
11206
11355
  delete(key: string): Observable<object>;
11207
11356
  /** @deprecated Use delete method instead*/
@@ -11248,7 +11397,7 @@ declare class LayerDB {
11248
11397
  * @param layerId
11249
11398
  * @returns
11250
11399
  */
11251
- getByID(layerId: string): Observable<LayerDBData>;
11400
+ getByID(layerId: LayerId): Observable<LayerDBData | undefined>;
11252
11401
  /**
11253
11402
  * This method delete an idb layer definition
11254
11403
  * @param key
@@ -11293,7 +11442,7 @@ declare class PrintService {
11293
11442
  private activityService;
11294
11443
  private languageService;
11295
11444
  private document;
11296
- zipFile: JSZip;
11445
+ zipFile?: JSZip;
11297
11446
  nbFileToProcess: number;
11298
11447
  activityId: string;
11299
11448
  mapPrintExtent: number[];
@@ -11308,7 +11457,7 @@ declare class PrintService {
11308
11457
  commentFontSize: number;
11309
11458
  };
11310
11459
  print(map: IgoMap, options: PrintOptions): Subject<any>;
11311
- addGeoRef(doc: any, map: IgoMap, width: number, height: number, baseMargins: [number, number, number, number]): void;
11460
+ addGeoRef(doc: any, width: number, height: number, baseMargins: [number, number, number, number]): void;
11312
11461
  /**
11313
11462
  * Add measure overlay on the map on the document when the measure layer is present
11314
11463
  * @param doc - Pdf document where measure tooltip will be added
@@ -11329,9 +11478,9 @@ declare class PrintService {
11329
11478
  * * @param format - Image format. default value to "png"
11330
11479
  * @return The image of the legend
11331
11480
  */
11332
- getLayersLegendImage(map: any, format: string, doZipFile: boolean): Promise<Subject<unknown>>;
11481
+ getLayersLegendImage(map: IgoMap, format: string | undefined, doZipFile: boolean): Promise<Subject<unknown>>;
11333
11482
  private removeHtmlElement;
11334
- getTextPdfObjectSizeAndMarg(text: string, margins: any, font: string, fontSizeInPt: number, fontStyle: string, doc: jsPDF): TextPdfSizeAndMargin;
11483
+ getTextPdfObjectSizeAndMarg(text: string, margins: [number, number, number, number], font: string, fontSizeInPt: number, fontStyle: string, doc: jsPDF): TextPdfSizeAndMargin;
11335
11484
  /**
11336
11485
  * Add comment to the document
11337
11486
  * @param doc - pdf document
@@ -11367,7 +11516,7 @@ declare class PrintService {
11367
11516
  * @param baseMargins - Page margins
11368
11517
  */
11369
11518
  private addLegendSamePage;
11370
- defineNbFileToProcess(nbFileToProcess: any): void;
11519
+ defineNbFileToProcess(nbFileToProcess: number): void;
11371
11520
  private timeout;
11372
11521
  private addCanvas;
11373
11522
  addMap(doc: jsPDF, map: IgoMap, resolution: number, imageDimensions: [number, number], baseMargins: [number, number, number, number]): Subject<SubjectStatus>;
@@ -11395,7 +11544,7 @@ declare class PrintService {
11395
11544
  * @param doZipFile - Indicate if we do a zip with the file
11396
11545
  * @return Image file of the map with extension format given as parameter
11397
11546
  */
11398
- downloadMapImage(map: IgoMap, printResolution: PrintResolution, format: string, projection: boolean, scale: boolean, title: string, subtitle: string, comment: string, doZipFile: boolean, legendPosition: PrintLegendPosition, showNorthArrow: boolean): Subject<SubjectStatus>;
11547
+ downloadMapImage(map: IgoMap, printResolution: PrintResolution, format: string | undefined, projection: boolean | undefined, scale: boolean | undefined, title: string | undefined, subtitle: string | undefined, comment: string | undefined, doZipFile: boolean | undefined, legendPosition: PrintLegendPosition, showNorthArrow: boolean): Subject<SubjectStatus>;
11399
11548
  private setMapImageResolution;
11400
11549
  /**
11401
11550
  * Create and Add Legend to the map canvas
@@ -11481,11 +11630,11 @@ declare class QueryService {
11481
11630
  private extractEsriJSONData;
11482
11631
  private extractHtmlData;
11483
11632
  private getQueryParams;
11484
- featureToResult(featureOL: OlFeature<olGeom.Geometry>, zIndex: number, allowedFieldsAndAlias?: any): Feature;
11633
+ featureToResult(featureOL: OlFeature<ol_geom.Geometry>, zIndex: number, allowedFieldsAndAlias?: any): Feature;
11485
11634
  private getQueryUrl;
11486
11635
  private getMimeInfoFormat;
11487
- getAllowedFieldsAndAlias(layer: any): any;
11488
- getQueryTitle(feature: Feature, layer: Layer): string;
11636
+ getAllowedFieldsAndAlias(layer: any): {} | undefined;
11637
+ getQueryTitle(feature: Feature, layer: Layer): string | undefined;
11489
11638
  getLabelMatch(feature: Feature, labelMatch: any): string;
11490
11639
  /**
11491
11640
  * @param datasource QueryableDataSource
@@ -11554,9 +11703,9 @@ declare function provideQuerySearchSource(): {
11554
11703
  };
11555
11704
 
11556
11705
  declare class GoogleLinks {
11557
- static getGoogleMapsCoordLink(lon: any, lat: any): string;
11558
- static getGoogleStreetViewLink(lon: any, lat: any): string;
11559
- static getGoogleMapsNameLink(name: any): string;
11706
+ static getGoogleMapsCoordLink(lon: number, lat: number): string;
11707
+ static getGoogleStreetViewLink(lon: number, lat: number): string;
11708
+ static getGoogleMapsNameLink(name: string): string;
11560
11709
  }
11561
11710
 
11562
11711
  /**
@@ -11609,26 +11758,26 @@ declare function generateId(): string;
11609
11758
  declare function standardizeUrl(url: string): string;
11610
11759
 
11611
11760
  declare class OsmLinks {
11612
- static getOpenStreetMapLink(lon: any, lat: any, zoom?: number): string;
11613
- static getOpenStreetCamLink(lon: any, lat: any, zoom?: number): string;
11761
+ static getOpenStreetMapLink(lon: number, lat: number, zoom?: number): string;
11762
+ static getOpenStreetCamLink(lon: number, lat: number, zoom?: number): string;
11614
11763
  }
11615
11764
 
11616
11765
  declare class WktService {
11617
- wktToFeature(wkt: any, wktProj: any, featureProj: any): ol.Feature<olGeom.Geometry, {
11766
+ wktToFeature(wkt: string, wktProj: string, featureProj: string): ol.Feature<ol_geom.Geometry, {
11618
11767
  [x: string]: any;
11619
11768
  }>;
11620
- extentToWkt(epsgTO: any, extent: any, extentProj: any): {
11769
+ extentToWkt(epsgTO: string, extent: number[], extentProj: string): {
11621
11770
  wktPoly: string;
11622
11771
  wktLine: string;
11623
11772
  wktMultiPoints: string;
11624
11773
  };
11625
11774
  private roundCoordinateArray;
11626
11775
  private roundArray;
11627
- snrcToWkt(snrc: any, epsgTO: any): {
11628
- wktPoly: any;
11776
+ snrcToWkt(snrc: string, epsgTO: string): {
11777
+ wktPoly: string;
11629
11778
  wktLine: string;
11630
11779
  wktMultiPoints: string;
11631
- };
11780
+ } | undefined;
11632
11781
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<WktService, never>;
11633
11782
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<WktService>;
11634
11783
  }
@@ -11645,7 +11794,6 @@ declare class WfsWorkspace extends Workspace {
11645
11794
  constructor(options: WfsWorkspaceOptions);
11646
11795
  getLayerWksOptionTabQuery(): boolean;
11647
11796
  getLayerWksOptionMapQuery(): boolean;
11648
- private getInResolutionRange;
11649
11797
  }
11650
11798
 
11651
11799
  declare class WfsWorkspaceService {
@@ -11655,8 +11803,8 @@ declare class WfsWorkspaceService {
11655
11803
  private propertyTypeDetectorService;
11656
11804
  private capabilitiesService;
11657
11805
  get zoomAuto(): boolean;
11658
- ws$: BehaviorSubject<string>;
11659
- createWorkspace(layer: VectorLayer, map: IgoMap): WfsWorkspace;
11806
+ ws$: BehaviorSubject<string | undefined>;
11807
+ createWorkspace(layer: VectorLayer, map: IgoMap): WfsWorkspace | undefined;
11660
11808
  private createFeatureStore;
11661
11809
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<WfsWorkspaceService, never>;
11662
11810
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<WfsWorkspaceService>;
@@ -11674,7 +11822,6 @@ declare class FeatureWorkspace extends Workspace {
11674
11822
  constructor(options: FeatureWorkspaceOptions);
11675
11823
  getLayerWksOptionTabQuery(): boolean;
11676
11824
  getLayerWksOptionMapQuery(): boolean;
11677
- private getInResolutionRange;
11678
11825
  }
11679
11826
 
11680
11827
  declare class FeatureWorkspaceService {
@@ -11684,41 +11831,52 @@ declare class FeatureWorkspaceService {
11684
11831
  private propertyTypeDetectorService;
11685
11832
  private capabilitiesService;
11686
11833
  get zoomAuto(): boolean;
11687
- ws$: BehaviorSubject<string>;
11688
- createWorkspace(layer: VectorLayer, map: IgoMap): FeatureWorkspace;
11834
+ ws$: BehaviorSubject<string | undefined>;
11835
+ createWorkspace(layer: VectorLayer, map: IgoMap): FeatureWorkspace | undefined;
11689
11836
  private createFeatureStore;
11690
11837
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FeatureWorkspaceService, never>;
11691
11838
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<FeatureWorkspaceService>;
11692
11839
  }
11693
11840
 
11694
- interface EditionWorkspaceOptions extends WorkspaceOptions {
11841
+ interface EditionFeature extends Feature {
11842
+ edition?: boolean;
11843
+ original_properties?: object;
11844
+ original_geometry?: FeatureGeometry;
11845
+ idkey?: string;
11846
+ newFeature?: boolean;
11847
+ }
11848
+
11849
+ interface EditionWorkspaceOptions extends WorkspaceOptions<EditionWorkspaceMeta> {
11695
11850
  layer: ImageLayer | VectorLayer;
11696
11851
  map: IgoMap;
11697
11852
  }
11853
+ interface EditionWorkspaceMeta {
11854
+ tableTemplate: EntityTableTemplate;
11855
+ }
11698
11856
  declare class EditionWorkspace extends Workspace {
11699
- private dialog;
11700
11857
  private configService;
11701
11858
  private adding$;
11702
- private getDomainValues;
11703
11859
  protected options: EditionWorkspaceOptions;
11704
11860
  readonly inResolutionRange$: BehaviorSubject<boolean>;
11705
11861
  get layer(): ImageLayer | VectorLayer;
11706
11862
  get map(): IgoMap;
11863
+ get meta(): EditionWorkspaceMeta | undefined;
11707
11864
  private drawControl;
11708
11865
  private drawEnd$$;
11709
11866
  private olDrawingLayerSource;
11710
11867
  private olDrawingLayer;
11711
11868
  geometryType: typeof GeometryType;
11712
- modify: any;
11869
+ modify?: OlModify;
11713
11870
  modifyStyle: olStyle.Style;
11714
11871
  private newFeaturefilterClauseFunc;
11715
11872
  private editFeaturefilterClauseFunc;
11716
11873
  fillColor: string;
11717
11874
  strokeColor: string;
11718
11875
  strokeWidth: number;
11719
- constructor(dialog: MatDialog, configService: ConfigService, adding$: BehaviorSubject<boolean>, getDomainValues: (relation: RelationOptions) => Observable<any>, options: EditionWorkspaceOptions);
11720
- deleteFeature(feature: any, workspace: any): void;
11721
- editFeature(feature: any, workspace: EditionWorkspace): void;
11876
+ constructor(configService: ConfigService, adding$: BehaviorSubject<boolean>, options: EditionWorkspaceOptions);
11877
+ getDeleteUrl(feature: Feature): string;
11878
+ editFeature(feature: EditionFeature): void;
11879
+ private findFeatureId;
11722
11880
  /**
11723
11881
  * Create a Draw Control
11724
11882
  * @param fillColor the fill color
@@ -11731,7 +11889,7 @@ declare class EditionWorkspace extends Workspace {
11731
11889
  * Called when the user selects a new geometry type
11732
11890
  * @param geometryType the geometry type selected by the user
11733
11891
  */
11734
- onGeometryTypeChange(geometryType: Type, feature: any, workspace: EditionWorkspace): void;
11892
+ onGeometryTypeChange(geometryType: Type, feature: Feature): void;
11735
11893
  /**
11736
11894
  * Activate the correct control
11737
11895
  */
@@ -11758,10 +11916,11 @@ declare class EditionWorkspace extends Workspace {
11758
11916
  /**
11759
11917
  * Create a modify interaction to allow a geometry change one feature at the time (drag and drop)
11760
11918
  */
11761
- createModifyInteraction(olFeature: OlFeature<OlGeometry>, feature: any, workspace: EditionWorkspace): void;
11919
+ createModifyInteraction(olFeature: OlFeature<OlGeometry>, feature: Feature): void;
11762
11920
  }
11763
11921
 
11764
11922
  declare class EditionWorkspaceService {
11923
+ private entityService;
11765
11924
  private layerService;
11766
11925
  private storageService;
11767
11926
  private configService;
@@ -11769,10 +11928,10 @@ declare class EditionWorkspaceService {
11769
11928
  private http;
11770
11929
  private dialog;
11771
11930
  private styleService;
11772
- authInterceptor?: AuthInterceptor;
11773
- ws$: BehaviorSubject<string>;
11931
+ authInterceptor?: AuthInterceptor | undefined;
11932
+ ws$: BehaviorSubject<string | undefined>;
11774
11933
  adding$: BehaviorSubject<boolean>;
11775
- relationLayers$: BehaviorSubject<VectorLayer[] | ImageLayer[]>;
11934
+ relationLayers$: BehaviorSubject<VectorLayer[] | ImageLayer[] | undefined>;
11776
11935
  rowsInMapExtentCheckCondition$: BehaviorSubject<boolean>;
11777
11936
  loading: boolean;
11778
11937
  wktFormat: WKT;
@@ -11780,35 +11939,45 @@ declare class EditionWorkspaceService {
11780
11939
  [x: string]: any;
11781
11940
  }>>;
11782
11941
  get zoomAuto(): boolean;
11783
- createWorkspace(layer: ImageLayer, map: IgoMap): EditionWorkspace;
11942
+ createWorkspace(layer: ImageLayer, map: IgoMap): EditionWorkspace | undefined;
11784
11943
  private createFeatureStore;
11785
11944
  private createTableTemplate;
11786
- saveFeature(feature: any, workspace: EditionWorkspace): boolean;
11787
- addFeature(feature: any, workspace: EditionWorkspace, url: string, headers: Record<string, any>): void;
11788
- deleteFeature(workspace: EditionWorkspace, url: string): void;
11789
- modifyFeature(feature: any, workspace: EditionWorkspace, url: string, headers: Record<string, any>, protocole?: string): void;
11790
- cancelEdit(workspace: EditionWorkspace, feature: any, fromSave?: boolean): void;
11791
- getDomainValues(relation: RelationOptions): Observable<any>;
11945
+ saveFeature(feature: EditionFeature, workspace: EditionWorkspace): false | undefined;
11946
+ private parseFeature;
11947
+ addFeature(feature: Feature, workspace: EditionWorkspace, url: string, headers: Record<string, any>): void;
11948
+ askForDeleteFeature(feature: Feature, workspace: EditionWorkspace): void;
11949
+ private deleteFeature;
11950
+ modifyFeature(feature: Feature, workspace: EditionWorkspace, url: string, headers: Record<string, any>, protocole?: string): void;
11951
+ private cleanFeatureProperties;
11952
+ private isGeometryField;
11953
+ cancelEdit(feature: EditionFeature, workspace: EditionWorkspace, fromSave?: boolean): void;
11792
11954
  refreshMap(layer: VectorLayer, map: MapBase): void;
11793
- validateFeature(feature: any, workspace: EditionWorkspace): boolean;
11794
- sanitizeParameter(feature: any, workspace: EditionWorkspace): void;
11955
+ validateFeature(feature: Feature, workspace: EditionWorkspace): boolean;
11795
11956
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditionWorkspaceService, never>;
11796
11957
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<EditionWorkspaceService>;
11797
11958
  }
11798
11959
 
11799
- declare function getRowsInMapExtent(layerId: any, storageService: any): boolean;
11800
- declare function setRowsInMapExtent(value: any, layerId: any, storageService: any): void;
11801
- declare function getSelectedOnly(layerId: any, storageService: any): boolean;
11802
- declare function setSelectedOnly(value: any, layerId: any, storageService: any): void;
11960
+ declare function getRowsInMapExtent(layerId: string, storageService: StorageService): boolean;
11961
+ declare function setRowsInMapExtent(value: any, layerId: string, storageService: StorageService): void;
11962
+ declare function getSelectedOnly(layerId: string, storageService: StorageService): boolean;
11963
+ declare function setSelectedOnly(value: any, layerId: string, storageService: StorageService): void;
11803
11964
  declare function mapExtentStrategyActiveToolTip(ws: Workspace): Observable<string>;
11804
11965
  declare function noElementSelected(ws: Workspace): Observable<boolean>;
11805
11966
  declare function addOrRemoveLayer(action: 'add' | 'remove', map: IgoMap, url: string, type: string, layerName: string, layerService: LayerService): void;
11806
11967
  declare function getGeoServiceAction(workspace: FeatureWorkspace | WfsWorkspace, layerService: LayerService): {
11807
11968
  name: string;
11808
- title: any;
11969
+ title: string;
11809
11970
  tooltip: string;
11810
11971
  renderer: EntityTableColumnRenderer;
11811
- valueAccessor: (entity: Feature, record: EntityRecord<Feature>) => EntityTableButton[];
11972
+ valueAccessor: (entity: Feature, record: EntityRecord<Feature>) => {
11973
+ icon: string;
11974
+ color: "warn";
11975
+ click: (record: EntityRecord<object, _igo2_common_entity.EntityState>) => void;
11976
+ }[] | {
11977
+ icon: string;
11978
+ color: "primary";
11979
+ click: (record: EntityRecord<object, _igo2_common_entity.EntityState>) => void;
11980
+ }[];
11812
11981
  }[];
11813
11982
  declare function createTableTemplate(workspace: FeatureWorkspace | WfsWorkspace, layer: VectorLayer, layerService: LayerService, ws$: any): void;
11814
11983
  declare function createFilterInMapExtentOrResolutionStrategy(): EntityStoreFilterCustomFuncStrategy;
@@ -11848,8 +12017,8 @@ declare class WorkspaceUpdatorDirective implements OnInit, OnDestroy {
11848
12017
  private featureWorkspaceService;
11849
12018
  private layers$$;
11850
12019
  private entities$$;
11851
- readonly map: _angular_core.InputSignal<IgoMap>;
11852
- readonly workspaceStore: _angular_core.InputSignal<WorkspaceStore>;
12020
+ readonly map: _angular_core.InputSignal<IgoMap | undefined>;
12021
+ readonly workspaceStore: _angular_core.InputSignal<WorkspaceStore | undefined>;
11853
12022
  ngOnInit(): void;
11854
12023
  ngOnDestroy(): void;
11855
12024
  private onLayersChange;
@@ -11883,5 +12052,5 @@ declare function provideInteractiveSelectionFormWidget(): {
11883
12052
  deps: (typeof WidgetService)[];
11884
12053
  };
11885
12054
 
11886
- 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, EpsgSelectorModalComponent, 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, 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, getFilterBadge, 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 };
11887
- 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, ResponseType, 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 };
12055
+ 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, EpsgSelectorModalComponent, 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, GetCapabilitiesParams, 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, 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, getFilterBadge, 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 };
12056
+ export type { AddedChangeEmitter, AddedChangeGroupEmitter, AnyBaseOgcFilterOptions, AnyDataSource, AnyDataSourceOptions, AnyDataSourceOptionsWithParams, AnyEventName, AnyExportFormat, AnyLayer, AnyLayerBase, AnyLayerItemOptions, AnyLayerOptions, AnyPropertyOptions, AnyWorkspace, ArcGISRestCapabilitiesLayer, ArcGISRestDataSourceOptions, ArcGISRestDataSourceOptionsParams, ArcGISRestImageDataSourceOptions, ArcGISSymbol, 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, IArcgisVectorTileServerCapabilities, 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, OsrmApiResponse, OsrmDirectionsSourceOptions, OsrmIntersection, OsrmLane, OsrmRawRoute, OsrmRouteLeg, OsrmRouteStep, OsrmStepManeuver, OsrmWaypoint, OutputLayerLegend, OverlayStyleOptions, PreloadOptions, PrintOptions, Projection, ProjectionsLimitationsOptions, QueryOptions, QueryUrlData, QueryableDataSource, QueryableDataSourceOptions, RelationOptions, Research, ResponseType, ReverseSearch, ReverseSearchOptions, SearchIndexOptions, 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, ViewerLegendOptions, WFSDataSourceOptions, WFSDataSourceOptionsParams, WFSWriteGetFeatureOptions, WMSDataSourceOptions, WMSDataSourceOptionsParams, WMTSDataSourceOptions, WebSocketDataSourceOptions, WfsWorkspaceOptions, WmsCapabilityLayer, WmsDimension, WmsStyle, WmtsCapabilities, WmtsCapabilityLayer, WorkspaceData, XYZDataSourceOptions, ZindexPropertyOptions };