@igo2/geo 21.0.0-next.15 → 21.0.0-next.16

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.
@@ -33618,6 +33618,8 @@ class OsmLinks {
33618
33618
  }
33619
33619
  }
33620
33620
 
33621
+ const COORDINATES_REVERSE_SEARCH_SOURCE_OPTIONS = new InjectionToken('CoordinatesReverseSearchSourceOptions');
33622
+ const COORDINATES_REVERSE_SEARCH_SOURCE_PROJECTIONS = new InjectionToken('CoordinatesReverseSearchSourceProjections');
33621
33623
  class CoordinatesSearchResultFormatter {
33622
33624
  formatResult(result) {
33623
33625
  return result;
@@ -33641,10 +33643,15 @@ class CoordinatesReverseSearchSource extends SearchSource {
33641
33643
  return this.title$.getValue();
33642
33644
  }
33643
33645
  constructor() {
33644
- const config = inject(ConfigService);
33646
+ const config = inject(ConfigService, { optional: true });
33645
33647
  const storageService = inject(StorageService);
33646
- const options = config.getConfig(`searchSources.${CoordinatesReverseSearchSource.id}`);
33647
- const projections = config.getConfig('projections') ?? [];
33648
+ const directOptions = inject(COORDINATES_REVERSE_SEARCH_SOURCE_OPTIONS, {
33649
+ optional: true
33650
+ });
33651
+ const directProjections = inject(COORDINATES_REVERSE_SEARCH_SOURCE_PROJECTIONS, { optional: true });
33652
+ const options = ObjectUtils.mergeDeep(config?.getConfig(`searchSources.${CoordinatesReverseSearchSource.id}`) ??
33653
+ {}, directOptions ?? {});
33654
+ const projections = directProjections ?? config?.getConfig('projections') ?? [];
33648
33655
  super(options, storageService);
33649
33656
  this.projections = projections;
33650
33657
  this.languageService.language$.subscribe(() => {
@@ -33816,12 +33823,28 @@ function provideCoordinatesReverseSearchSource() {
33816
33823
  multi: true
33817
33824
  };
33818
33825
  }
33819
- function withCoordinatesReverseSource() {
33826
+ function withCoordinatesReverseSource(config) {
33820
33827
  return {
33821
33828
  kind: SearchSourceKind.CoordinatesReverse,
33822
33829
  providers: [
33823
33830
  provideCoordinatesReverseSearchSource(),
33824
- provideDefaultCoordinatesSearchResultFormatter()
33831
+ provideDefaultCoordinatesSearchResultFormatter(),
33832
+ ...(config?.options
33833
+ ? [
33834
+ {
33835
+ provide: COORDINATES_REVERSE_SEARCH_SOURCE_OPTIONS,
33836
+ useValue: config.options
33837
+ }
33838
+ ]
33839
+ : []),
33840
+ ...(config?.projections
33841
+ ? [
33842
+ {
33843
+ provide: COORDINATES_REVERSE_SEARCH_SOURCE_PROJECTIONS,
33844
+ useValue: config.projections
33845
+ }
33846
+ ]
33847
+ : [])
33825
33848
  ]
33826
33849
  };
33827
33850
  }
@@ -33869,6 +33892,8 @@ const ICHERCHE_ICONS = {
33869
33892
  waves: 'waves'
33870
33893
  };
33871
33894
 
33895
+ const ICHERCHE_SEARCH_SOURCE_OPTIONS = new InjectionToken('IChercheSearchSourceOptions');
33896
+ const ICHERCHE_REVERSE_SEARCH_SOURCE_OPTIONS = new InjectionToken('IChercheReverseSearchSourceOptions');
33872
33897
  class IChercheSearchResultFormatter {
33873
33898
  formatResult(result) {
33874
33899
  return result;
@@ -33923,8 +33948,11 @@ class IChercheSearchSource extends SearchSource {
33923
33948
  }
33924
33949
  constructor() {
33925
33950
  const storageService = inject(StorageService);
33926
- const config = inject(ConfigService);
33927
- const options = config.getConfig(`searchSources.${IChercheSearchSource.id}`);
33951
+ const directOptions = inject(ICHERCHE_SEARCH_SOURCE_OPTIONS, {
33952
+ optional: true
33953
+ });
33954
+ const config = inject(ConfigService, { optional: true });
33955
+ const options = ObjectUtils.mergeDeep(config?.getConfig(`searchSources.${IChercheSearchSource.id}`) ?? {}, directOptions ?? {});
33928
33956
  super(options, storageService);
33929
33957
  const authService = inject(AuthService);
33930
33958
  if (this.settings.length) {
@@ -34460,9 +34488,12 @@ class IChercheReverseSearchSource extends SearchSource {
34460
34488
  return this.title$.getValue();
34461
34489
  }
34462
34490
  constructor() {
34463
- const config = inject(ConfigService);
34464
34491
  const storageService = inject(StorageService);
34465
- const options = config.getConfig(`searchSources.${IChercheReverseSearchSource.id}`);
34492
+ const directOptions = inject(ICHERCHE_REVERSE_SEARCH_SOURCE_OPTIONS, {
34493
+ optional: true
34494
+ });
34495
+ const config = inject(ConfigService, { optional: true });
34496
+ const options = ObjectUtils.mergeDeep(config?.getConfig(`searchSources.${IChercheReverseSearchSource.id}`) ?? {}, directOptions ?? {});
34466
34497
  const injector = inject(Injector);
34467
34498
  super(options, storageService);
34468
34499
  this.languageService.language$.subscribe(() => {
@@ -34775,12 +34806,15 @@ function provideIChercheSearchSource() {
34775
34806
  multi: true
34776
34807
  };
34777
34808
  }
34778
- function withIChercheSource() {
34809
+ function withIChercheSource(options) {
34779
34810
  return {
34780
34811
  kind: SearchSourceKind.ICherche,
34781
34812
  providers: [
34782
34813
  provideIChercheSearchSource(),
34783
- provideDefaultIChercheSearchResultFormatter()
34814
+ provideDefaultIChercheSearchResultFormatter(),
34815
+ ...(options
34816
+ ? [{ provide: ICHERCHE_SEARCH_SOURCE_OPTIONS, useValue: options }]
34817
+ : [])
34784
34818
  ]
34785
34819
  };
34786
34820
  }
@@ -34801,16 +34835,25 @@ function provideIChercheReverseSearchSource() {
34801
34835
  multi: true
34802
34836
  };
34803
34837
  }
34804
- function withIChercheReverseSource() {
34838
+ function withIChercheReverseSource(options) {
34805
34839
  return {
34806
34840
  kind: SearchSourceKind.IChercheReverse,
34807
34841
  providers: [
34808
34842
  provideIChercheReverseSearchSource(),
34809
- provideDefaultIChercheSearchResultFormatter()
34843
+ provideDefaultIChercheSearchResultFormatter(),
34844
+ ...(options
34845
+ ? [
34846
+ {
34847
+ provide: ICHERCHE_REVERSE_SEARCH_SOURCE_OPTIONS,
34848
+ useValue: options
34849
+ }
34850
+ ]
34851
+ : [])
34810
34852
  ]
34811
34853
  };
34812
34854
  }
34813
34855
 
34856
+ const ILAYER_SEARCH_SOURCE_OPTIONS = new InjectionToken('ILayerSearchSourceOptions');
34814
34857
  class ILayerSearchResultFormatter {
34815
34858
  languageService = inject(LanguageService);
34816
34859
  formatResult(data) {
@@ -34862,8 +34905,11 @@ class ILayerSearchSource extends SearchSource {
34862
34905
  }
34863
34906
  constructor() {
34864
34907
  const storageService = inject(StorageService);
34865
- const config = inject(ConfigService);
34866
- const options = config.getConfig(`searchSources.${ILayerSearchSource.id}`);
34908
+ const directOptions = inject(ILAYER_SEARCH_SOURCE_OPTIONS, {
34909
+ optional: true
34910
+ });
34911
+ const config = inject(ConfigService, { optional: true });
34912
+ const options = ObjectUtils.mergeDeep(config?.getConfig(`searchSources.${ILayerSearchSource.id}`) ?? {}, directOptions ?? {});
34867
34913
  super(options, storageService);
34868
34914
  this.languageService.language$.subscribe(() => {
34869
34915
  this.title$.next(this.languageService.translate.instant(this.options.title));
@@ -35157,12 +35203,15 @@ function provideILayerSearchSource() {
35157
35203
  multi: true
35158
35204
  };
35159
35205
  }
35160
- function withILayerSource() {
35206
+ function withILayerSource(options) {
35161
35207
  return {
35162
35208
  kind: SearchSourceKind.ILayer,
35163
35209
  providers: [
35164
35210
  provideILayerSearchSource(),
35165
- provideILayerSearchResultFormatter()
35211
+ provideILayerSearchResultFormatter(),
35212
+ ...(options
35213
+ ? [{ provide: ILAYER_SEARCH_SOURCE_OPTIONS, useValue: options }]
35214
+ : [])
35166
35215
  ]
35167
35216
  };
35168
35217
  }
@@ -40680,6 +40729,7 @@ function provideSearch(sources, options) {
40680
40729
  return providers;
40681
40730
  }
40682
40731
 
40732
+ const CADASTRE_SEARCH_SOURCE_OPTIONS = new InjectionToken('CadastreSearchSourceOptions');
40683
40733
  /**
40684
40734
  * Cadastre search source
40685
40735
  * @deprecated This is a deprecated source. This type is available in ICherche. This search source will be deleted in in few next majors versions, likely in 23x+.
@@ -40691,8 +40741,11 @@ class CadastreSearchSource extends SearchSource {
40691
40741
  static type = FEATURE;
40692
40742
  constructor() {
40693
40743
  const storageService = inject(StorageService);
40694
- const config = inject(ConfigService);
40695
- const options = config.getConfig(`searchSources.${CadastreSearchSource.id}`);
40744
+ const directOptions = inject(CADASTRE_SEARCH_SOURCE_OPTIONS, {
40745
+ optional: true
40746
+ });
40747
+ const config = inject(ConfigService, { optional: true });
40748
+ const options = ObjectUtils.mergeDeep(config?.getConfig(`searchSources.${CadastreSearchSource.id}`) ?? {}, directOptions ?? {});
40696
40749
  super(options, storageService);
40697
40750
  }
40698
40751
  getId() {
@@ -40827,13 +40880,19 @@ function provideCadastreSearchSource() {
40827
40880
  /**
40828
40881
  * @deprecated This search source is deprecated and will be removed in a future major version, likely in 23.x+.
40829
40882
  */
40830
- function withCadastreSource() {
40883
+ function withCadastreSource(options) {
40831
40884
  return {
40832
40885
  kind: SearchSourceKind.Cadastre,
40833
- providers: [provideCadastreSearchSource()]
40886
+ providers: [
40887
+ provideCadastreSearchSource(),
40888
+ ...(options
40889
+ ? [{ provide: CADASTRE_SEARCH_SOURCE_OPTIONS, useValue: options }]
40890
+ : [])
40891
+ ]
40834
40892
  };
40835
40893
  }
40836
40894
 
40895
+ const NOMINATIM_SEARCH_SOURCE_OPTIONS = new InjectionToken('NominatimSearchSourceOptions');
40837
40896
  /**
40838
40897
  * Nominatim search source
40839
40898
  */
@@ -40842,9 +40901,12 @@ class NominatimSearchSource extends SearchSource {
40842
40901
  static id = 'nominatim';
40843
40902
  static type = FEATURE;
40844
40903
  constructor() {
40845
- const config = inject(ConfigService);
40904
+ const config = inject(ConfigService, { optional: true });
40846
40905
  const storageService = inject(StorageService);
40847
- const options = config.getConfig(`searchSources.${NominatimSearchSource.id}`);
40906
+ const directOptions = inject(NOMINATIM_SEARCH_SOURCE_OPTIONS, {
40907
+ optional: true
40908
+ });
40909
+ const options = ObjectUtils.mergeDeep(config?.getConfig(`searchSources.${NominatimSearchSource.id}`) ?? {}, directOptions ?? {});
40848
40910
  super(options, storageService);
40849
40911
  }
40850
40912
  getId() {
@@ -41102,13 +41164,20 @@ function provideNominatimSearchSource() {
41102
41164
  multi: true
41103
41165
  };
41104
41166
  }
41105
- function withNominatimSource() {
41167
+ function withNominatimSource(options) {
41106
41168
  return {
41107
41169
  kind: SearchSourceKind.Nominatim,
41108
- providers: [provideNominatimSearchSource()]
41170
+ providers: [
41171
+ provideNominatimSearchSource(),
41172
+ ...(options
41173
+ ? [{ provide: NOMINATIM_SEARCH_SOURCE_OPTIONS, useValue: options }]
41174
+ : [])
41175
+ ]
41109
41176
  };
41110
41177
  }
41111
41178
 
41179
+ const STORED_QUERIES_SEARCH_SOURCE_OPTIONS = new InjectionToken('StoredQueriesSearchSourceOptions');
41180
+ const STORED_QUERIES_REVERSE_SEARCH_SOURCE_OPTIONS = new InjectionToken('StoredQueriesReverseSearchSourceOptions');
41112
41181
  /**
41113
41182
  * StoredQueries search source
41114
41183
  * @deprecated This is a deprecated source. This type is available in ICherche. This search source will be deleted in in few next majors versions, likely in 23x+.
@@ -41128,9 +41197,12 @@ class StoredQueriesSearchSource extends SearchSource {
41128
41197
  storedQueriesOptions;
41129
41198
  multipleFieldsQuery;
41130
41199
  constructor() {
41131
- const config = inject(ConfigService);
41200
+ const config = inject(ConfigService, { optional: true });
41132
41201
  const storageService = inject(StorageService);
41133
- const options = config.getConfig(`searchSources.${StoredQueriesSearchSource.id}`);
41202
+ const directOptions = inject(STORED_QUERIES_SEARCH_SOURCE_OPTIONS, {
41203
+ optional: true
41204
+ });
41205
+ const options = ObjectUtils.mergeDeep(config?.getConfig(`searchSources.${StoredQueriesSearchSource.id}`) ?? {}, directOptions ?? {});
41134
41206
  super(options, storageService);
41135
41207
  this.storedQueriesOptions = options;
41136
41208
  if (this.storedQueriesOptions && !this.storedQueriesOptions.available) {
@@ -41396,9 +41468,12 @@ class StoredQueriesReverseSearchSource extends SearchSource {
41396
41468
  storedQueriesOptions;
41397
41469
  multipleFieldsQuery;
41398
41470
  constructor() {
41399
- const config = inject(ConfigService);
41471
+ const config = inject(ConfigService, { optional: true });
41400
41472
  const storageService = inject(StorageService);
41401
- const options = config.getConfig(`searchSources.${StoredQueriesReverseSearchSource.id}`);
41473
+ const directOptions = inject(STORED_QUERIES_REVERSE_SEARCH_SOURCE_OPTIONS, {
41474
+ optional: true
41475
+ });
41476
+ const options = ObjectUtils.mergeDeep(config?.getConfig(`searchSources.${StoredQueriesReverseSearchSource.id}`) ?? {}, directOptions ?? {});
41402
41477
  super(options, storageService);
41403
41478
  this.storedQueriesOptions =
41404
41479
  options;
@@ -41568,10 +41643,20 @@ function provideStoredQueriesSearchSource() {
41568
41643
  /**
41569
41644
  * @deprecated This search source is deprecated and will be removed in a future major version, likely in 23.x+.
41570
41645
  */
41571
- function withStoredQueriesSource() {
41646
+ function withStoredQueriesSource(options) {
41572
41647
  return {
41573
41648
  kind: SearchSourceKind.StoredQueries,
41574
- providers: [provideStoredQueriesSearchSource()]
41649
+ providers: [
41650
+ provideStoredQueriesSearchSource(),
41651
+ ...(options
41652
+ ? [
41653
+ {
41654
+ provide: STORED_QUERIES_SEARCH_SOURCE_OPTIONS,
41655
+ useValue: options
41656
+ }
41657
+ ]
41658
+ : [])
41659
+ ]
41575
41660
  };
41576
41661
  }
41577
41662
  /**
@@ -41595,13 +41680,24 @@ function provideStoredQueriesReverseSearchSource() {
41595
41680
  /**
41596
41681
  * @deprecated This search source is deprecated and will be removed in a future major version, likely in 23.x+.
41597
41682
  */
41598
- function withStoredQueriesReverseSource() {
41683
+ function withStoredQueriesReverseSource(options) {
41599
41684
  return {
41600
41685
  kind: SearchSourceKind.StoredQueriesReverse,
41601
- providers: [provideStoredQueriesReverseSearchSource()]
41686
+ providers: [
41687
+ provideStoredQueriesReverseSearchSource(),
41688
+ ...(options
41689
+ ? [
41690
+ {
41691
+ provide: STORED_QUERIES_REVERSE_SEARCH_SOURCE_OPTIONS,
41692
+ useValue: options
41693
+ }
41694
+ ]
41695
+ : [])
41696
+ ]
41602
41697
  };
41603
41698
  }
41604
41699
 
41700
+ const WORKSPACE_SEARCH_SOURCE_OPTIONS = new InjectionToken('WorkspaceSearchSourceOptions');
41605
41701
  /**
41606
41702
  * Workspace search source
41607
41703
  */
@@ -41615,8 +41711,11 @@ class WorkspaceSearchSource extends SearchSource {
41615
41711
  }
41616
41712
  constructor() {
41617
41713
  const storageService = inject(StorageService);
41618
- const config = inject(ConfigService);
41619
- const options = config.getConfig(`searchSources.${WorkspaceSearchSource.id}`);
41714
+ const directOptions = inject(WORKSPACE_SEARCH_SOURCE_OPTIONS, {
41715
+ optional: true
41716
+ });
41717
+ const config = inject(ConfigService, { optional: true });
41718
+ const options = ObjectUtils.mergeDeep(config?.getConfig(`searchSources.${WorkspaceSearchSource.id}`) ?? {}, directOptions ?? {});
41620
41719
  super(options, storageService);
41621
41720
  this.languageService.translate
41622
41721
  .get(this.options.title)
@@ -41805,10 +41904,15 @@ function provideWorkspaceSearchSource() {
41805
41904
  multi: true
41806
41905
  };
41807
41906
  }
41808
- function withWorkspaceSource() {
41907
+ function withWorkspaceSource(options) {
41809
41908
  return {
41810
41909
  kind: SearchSourceKind.Workspace,
41811
- providers: [provideWorkspaceSearchSource()]
41910
+ providers: [
41911
+ provideWorkspaceSearchSource(),
41912
+ ...(options
41913
+ ? [{ provide: WORKSPACE_SEARCH_SOURCE_OPTIONS, useValue: options }]
41914
+ : [])
41915
+ ]
41812
41916
  };
41813
41917
  }
41814
41918
 
@@ -42138,5 +42242,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImpo
42138
42242
  * Generated bundle index. Do not edit.
42139
42243
  */
42140
42244
 
42141
- 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, FontType, GEOMETRY_FORM_FIELD_DIRECTIVES, GeoDB, GeoNetworkService, GeoPropertiesStrategy, GeolocateButtonComponent, GeolocationOverlayType, GeometryFormFieldComponent, GeometryFormFieldInputComponent, GeometrySliceError, GeometrySliceLineStringError, GeometrySliceMultiPolygonError, GeometrySliceTooManyIntersectionError, GeometryType, GeostylerService, 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, 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, MapboxService, 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, STYLE_ENGINES, 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, StyleEngineKind, 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, addLayerAndFeaturesToMap, addLinearRingToOlPolygon, addOrRemoveLayer, addRouteToRoutesFeatureStore, addStopToStopsFeatureStore, addStopToStore, baseOlStyle, bufferOlGeometry, buildUrl, cadastreSearchSourceFactory, checkWfsParams, clearOlGeometryMidpoints, clusterOlStyleFunction, computeBestAreaUnit, computeBestLengthUnit, computeLayerTitleFromFile, computeOlFeatureExtent, computeOlFeaturesDiff, computeOlFeaturesExtent, computeProjectionsConstraints, computeRelativePosition, computeStopsPosition, computeTermSimilarity, convertDDToDMS, createDefaultTileGrid, createDrawHoleInteractionStyle, createDrawInteractionStyle, createFilterInMapExtentOrResolutionStrategy, createInteractionStyle, createMeasureInteractionStyle, createMeasureLayerStyle, createOlTooltipAtPoint, createOlTooltipDrawAtPoint, createTableTemplate, ctrlKeyDown, defaultCoordinatesSearchResultFormatterFactory, defaultEpsg, defaultFieldNameGeometry, defaultIChercheSearchResultFormatterFactory, defaultMaxFeatures, defaultWfsVersion, detectFileEPSG, directionsStyle, doesOlGeometryIntersects, entitiesToRowData, exportToCSV, featureFromOl, featureToOl, featureToSearchResult, featuresAreOutOfView, featuresAreTooDeepInView, findDiff, findLayerByLinkId, findParentId, formatDistance, formatDuration, formatMeasure, formatScale, formatStep, formatWFSQueryString, generateArcgisRestIdFromSourceOptions, generateFeatureIdFromSourceOptions, generateId, generateIdFromSourceOptions, generateWMSIdFromSourceOptions, generateWMTSIdFromSourceOptions, generateWfsIdFromSourceOptions, generateXYZIdFromSourceOptions, getAllChildLayersByDeletion, getAllChildLayersByProperty, 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, ichercheReverseSearchSourceFactory, ichercheSearchSourceFactory, ilayerSearchResultFormatterFactory, ilayerSearchSourceFactory, initRoutesFeatureStore, initStepsFeatureStore, initStopsFeatureStore, interactiveSelectionFormWidgetFactory, isAnyOlStyle, isBaseLayer, isBaseLayerLinked, isCsvExport, isEngineLayerStyle, isLayerGroup, isLayerGroupOptions, isLayerItem, isLayerItemOptions, isLayerLinked, isLayerLinkedOptions, isLayerLinkedTogether, isLinkMaster, isOlFlatStyleLike, isSaveableLayer, jsonRegex, layerFeatureIsQueryable, layerIsQueryable, lonLatConversion, mapExtentStrategyActiveToolTip, markerOlStyle, measureOlGeometry, measureOlGeometryArea, measureOlGeometryLength, mergeLayersOptions, metersToFeet, metersToKilometers, metersToMiles, metersToUnit, moveToOlFeatures, mtmZoneFromLonLat, nearTransparentOlStyle, noElementSelected, nominatimSearchSourceFactory, ogcFilterWidgetFactory, olLayerFeatureIsQueryable, olLayerIsQueryable, optionsApiFactory, osrmDirectionsSourcesFactory, provideCadastreSearchSource, provideCoordinatesReverseSearchSource, provideDefaultCoordinatesSearchResultFormatter, provideDefaultIChercheSearchResultFormatter, provideDirection, provideIChercheReverseSearchSource, provideIChercheSearchSource, provideILayerSearchResultFormatter, provideILayerSearchSource, provideInteractiveSelectionFormWidget, provideNominatimSearchSource, provideOffline, provideOgcFilterWidget, provideOptionsApi, provideOsrmDirectionsSource, provideQuerySearchSource, provideSearch, provideSearchSourceService, provideStoredQueriesReverseSearchSource, provideStoredQueriesSearchSource, provideStyle, provideWorkspaceSearchSource, querySearchSourceFactory, randomOlFlatStyle, removeStopFromStore, renderFeatureFromOl, roundCoordTo, roundCoordToString, scaleExtent, searchSourceServiceFactory, selectionOlStyle, setRowsInMapExtent, setSelectedOnly, sliceOlGeometry, sliceOlPolygon, sortLayersByZindex, sourceCanReverseSearch, sourceCanReverseSearchAsSummary, sourceCanSearch, squareMetersToAcres, squareMetersToHectares, squareMetersToSquareFeet, squareMetersToSquareKilometers, squareMetersToSquareMiles, squareMetersToUnit, standardizeUrl, storedqueriesReverseSearchSourceFactory, storedqueriesSearchSourceFactory, stringToLonLat, styleVariant, translateManeuverBearing, translateManeuverModifier, tryAddLoadingStrategy, tryAddSelectionStrategy, tryBindStoreLayer, updateOlGeometryCenter, updateOlGeometryMidpoints, updateOlTooltipAtCenter, updateOlTooltipDrawAtCenter, updateOlTooltipsAtMidpoints, updateOlTooltipsDrawAtMidpoints, updateStoreSorting, utmZoneFromLonLat, viewStatesAreEqual, withCadastreSource, withCoordinatesReverseSource, withGeostyler, withIChercheReverseSource, withIChercheSource, withILayerSource, withMapbox, withNominatimSource, withOsrmSource, withStoredQueriesReverseSource, withStoredQueriesSource, withWorkspaceSource, workspaceSearchSourceFactory, zoneMtm, zoneUtm };
42245
+ export { AddCatalogDialogComponent, ArcGISRestCapabilitiesLayerTypes, ArcGISRestDataSource, BaseLayersSwitcherComponent, CADASTRE_SEARCH_SOURCE_OPTIONS, CATALOG_DIRECTIVES, CATALOG_LIBRARY_DIRECTIVES, COORDINATES_REVERSE_SEARCH_SOURCE_OPTIONS, COORDINATES_REVERSE_SEARCH_SOURCE_PROJECTIONS, 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, FontType, GEOMETRY_FORM_FIELD_DIRECTIVES, GeoDB, GeoNetworkService, GeoPropertiesStrategy, GeolocateButtonComponent, GeolocationOverlayType, GeometryFormFieldComponent, GeometryFormFieldInputComponent, GeometrySliceError, GeometrySliceLineStringError, GeometrySliceMultiPolygonError, GeometrySliceTooManyIntersectionError, GeometryType, GeostylerService, GetCapabilitiesParams, GoogleLinks, HomeExtentButtonComponent, HoverFeatureDirective, ICHERCHE_REVERSE_SEARCH_SOURCE_OPTIONS, ICHERCHE_SEARCH_SOURCE_OPTIONS, IChercheReverseSearchSource, IChercheSearchResultFormatter, IChercheSearchSource, ID_GROUP_PREFIX, ILAYER_SEARCH_SOURCE_OPTIONS, 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, 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, MapboxService, MeasureAreaUnit, MeasureAreaUnitAbbreviation, MeasureFormatPipe, MeasureLengthUnit, MeasureLengthUnitAbbreviation, MeasureType, MeasurerComponent, MenuButtonComponent, MetadataAbstractComponent, MetadataButtonComponent, MetadataService, MiniBaseMapComponent, ModifyControl, NOMINATIM_SEARCH_SOURCE_OPTIONS, 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, STORED_QUERIES_REVERSE_SEARCH_SOURCE_OPTIONS, STORED_QUERIES_SEARCH_SOURCE_OPTIONS, STYLE_ENGINES, 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, StyleEngineKind, 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, WORKSPACE_SEARCH_SOURCE_OPTIONS, WakeLockButtonComponent, WebSocketDataSource, WfsWorkspace, WfsWorkspaceService, WktService, WorkspaceSearchSource, WorkspaceSelectorDirective, WorkspaceUpdatorDirective, XYZDataSource, ZoomButtonComponent, addLayerAndFeaturesToMap, addLinearRingToOlPolygon, addOrRemoveLayer, addRouteToRoutesFeatureStore, addStopToStopsFeatureStore, addStopToStore, baseOlStyle, bufferOlGeometry, buildUrl, cadastreSearchSourceFactory, checkWfsParams, clearOlGeometryMidpoints, clusterOlStyleFunction, computeBestAreaUnit, computeBestLengthUnit, computeLayerTitleFromFile, computeOlFeatureExtent, computeOlFeaturesDiff, computeOlFeaturesExtent, computeProjectionsConstraints, computeRelativePosition, computeStopsPosition, computeTermSimilarity, convertDDToDMS, createDefaultTileGrid, createDrawHoleInteractionStyle, createDrawInteractionStyle, createFilterInMapExtentOrResolutionStrategy, createInteractionStyle, createMeasureInteractionStyle, createMeasureLayerStyle, createOlTooltipAtPoint, createOlTooltipDrawAtPoint, createTableTemplate, ctrlKeyDown, defaultCoordinatesSearchResultFormatterFactory, defaultEpsg, defaultFieldNameGeometry, defaultIChercheSearchResultFormatterFactory, defaultMaxFeatures, defaultWfsVersion, detectFileEPSG, directionsStyle, doesOlGeometryIntersects, entitiesToRowData, exportToCSV, featureFromOl, featureToOl, featureToSearchResult, featuresAreOutOfView, featuresAreTooDeepInView, findDiff, findLayerByLinkId, findParentId, formatDistance, formatDuration, formatMeasure, formatScale, formatStep, formatWFSQueryString, generateArcgisRestIdFromSourceOptions, generateFeatureIdFromSourceOptions, generateId, generateIdFromSourceOptions, generateWMSIdFromSourceOptions, generateWMTSIdFromSourceOptions, generateWfsIdFromSourceOptions, generateXYZIdFromSourceOptions, getAllChildLayersByDeletion, getAllChildLayersByProperty, 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, ichercheReverseSearchSourceFactory, ichercheSearchSourceFactory, ilayerSearchResultFormatterFactory, ilayerSearchSourceFactory, initRoutesFeatureStore, initStepsFeatureStore, initStopsFeatureStore, interactiveSelectionFormWidgetFactory, isAnyOlStyle, isBaseLayer, isBaseLayerLinked, isCsvExport, isEngineLayerStyle, isLayerGroup, isLayerGroupOptions, isLayerItem, isLayerItemOptions, isLayerLinked, isLayerLinkedOptions, isLayerLinkedTogether, isLinkMaster, isOlFlatStyleLike, isSaveableLayer, jsonRegex, layerFeatureIsQueryable, layerIsQueryable, lonLatConversion, mapExtentStrategyActiveToolTip, markerOlStyle, measureOlGeometry, measureOlGeometryArea, measureOlGeometryLength, mergeLayersOptions, metersToFeet, metersToKilometers, metersToMiles, metersToUnit, moveToOlFeatures, mtmZoneFromLonLat, nearTransparentOlStyle, noElementSelected, nominatimSearchSourceFactory, ogcFilterWidgetFactory, olLayerFeatureIsQueryable, olLayerIsQueryable, optionsApiFactory, osrmDirectionsSourcesFactory, provideCadastreSearchSource, provideCoordinatesReverseSearchSource, provideDefaultCoordinatesSearchResultFormatter, provideDefaultIChercheSearchResultFormatter, provideDirection, provideIChercheReverseSearchSource, provideIChercheSearchSource, provideILayerSearchResultFormatter, provideILayerSearchSource, provideInteractiveSelectionFormWidget, provideNominatimSearchSource, provideOffline, provideOgcFilterWidget, provideOptionsApi, provideOsrmDirectionsSource, provideQuerySearchSource, provideSearch, provideSearchSourceService, provideStoredQueriesReverseSearchSource, provideStoredQueriesSearchSource, provideStyle, provideWorkspaceSearchSource, querySearchSourceFactory, randomOlFlatStyle, removeStopFromStore, renderFeatureFromOl, roundCoordTo, roundCoordToString, scaleExtent, searchSourceServiceFactory, selectionOlStyle, setRowsInMapExtent, setSelectedOnly, sliceOlGeometry, sliceOlPolygon, sortLayersByZindex, sourceCanReverseSearch, sourceCanReverseSearchAsSummary, sourceCanSearch, squareMetersToAcres, squareMetersToHectares, squareMetersToSquareFeet, squareMetersToSquareKilometers, squareMetersToSquareMiles, squareMetersToUnit, standardizeUrl, storedqueriesReverseSearchSourceFactory, storedqueriesSearchSourceFactory, stringToLonLat, styleVariant, translateManeuverBearing, translateManeuverModifier, tryAddLoadingStrategy, tryAddSelectionStrategy, tryBindStoreLayer, updateOlGeometryCenter, updateOlGeometryMidpoints, updateOlTooltipAtCenter, updateOlTooltipDrawAtCenter, updateOlTooltipsAtMidpoints, updateOlTooltipsDrawAtMidpoints, updateStoreSorting, utmZoneFromLonLat, viewStatesAreEqual, withCadastreSource, withCoordinatesReverseSource, withGeostyler, withIChercheReverseSource, withIChercheSource, withILayerSource, withMapbox, withNominatimSource, withOsrmSource, withStoredQueriesReverseSource, withStoredQueriesSource, withWorkspaceSource, workspaceSearchSourceFactory, zoneMtm, zoneUtm };
42142
42246
  //# sourceMappingURL=igo2-geo.mjs.map