@igo2/geo 21.0.0-next.14 → 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.
@@ -8937,13 +8937,23 @@ function addStopToStopsFeatureStore(stop, stopsFeatureStore, projection, languag
8937
8937
  * @param {boolean} [active=false] - Indicates whether the direction is active or not. Default is false.
8938
8938
  */
8939
8939
  function addRouteToRoutesFeatureStore(routesFeatureStore, directions, projection, active = false) {
8940
- const coordinate = directions.geometry?.coordinates;
8941
- if (!coordinate) {
8940
+ const geometry = directions.geometry;
8941
+ if (!geometry) {
8942
8942
  return;
8943
8943
  }
8944
- const linestring4326 = new olgeom.LineString(coordinate);
8945
- const linestringStore = linestring4326.transform(projection, routesFeatureStore.map.projectionCode);
8946
- const geojsonGeom = new OlGeoJSON().writeGeometryObject(linestringStore, {
8944
+ const coordinate = geometry.coordinates;
8945
+ let directionGeom;
8946
+ if (geometry.type === 'LineString') {
8947
+ directionGeom = new olgeom.LineString(coordinate);
8948
+ }
8949
+ else if (geometry.type === 'MultiLineString') {
8950
+ directionGeom = new olgeom.MultiLineString(coordinate);
8951
+ }
8952
+ else {
8953
+ return;
8954
+ }
8955
+ const directionGeomInMapProjection = directionGeom.transform(projection, routesFeatureStore.map.projectionCode);
8956
+ const geojsonGeom = new OlGeoJSON().writeGeometryObject(directionGeomInMapProjection, {
8947
8957
  featureProjection: routesFeatureStore.map.projectionCode,
8948
8958
  dataProjection: routesFeatureStore.map.projectionCode
8949
8959
  });
@@ -8965,7 +8975,7 @@ function addRouteToRoutesFeatureStore(routesFeatureStore, directions, projection
8965
8975
  id: directions.id,
8966
8976
  revision: previousRouteRevision + 1
8967
8977
  },
8968
- ol: new OlFeature({ linestringStore })
8978
+ ol: new OlFeature({ geometry: directionGeomInMapProjection })
8969
8979
  };
8970
8980
  routesFeatureStore.update(routeFeatureStore);
8971
8981
  }
@@ -17365,7 +17375,7 @@ class DirectionsComponent {
17365
17375
  if (routeResponse) {
17366
17376
  this.routesQueries$$.push(routeResponse.subscribe((directions) => {
17367
17377
  this.routesFeatureStore().deleteMany(this.routesFeatureStore().all());
17368
- directions.map((direction) => addRouteToRoutesFeatureStore(this.routesFeatureStore(), direction, this.projection, direction === directions[0] ? true : false));
17378
+ directions.map((direction) => addRouteToRoutesFeatureStore(this.routesFeatureStore(), direction, direction.projection ?? this.projection, direction === directions[0] ? true : false));
17369
17379
  }));
17370
17380
  }
17371
17381
  }
@@ -17387,7 +17397,7 @@ class DirectionsComponent {
17387
17397
  this.getRoutes(this.isTranslating);
17388
17398
  }
17389
17399
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DirectionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
17390
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.17", type: DirectionsComponent, isStandalone: true, selector: "igo-directions", inputs: { contextUri: { classPropertyName: "contextUri", publicName: "contextUri", isSignal: true, isRequired: false, transformFunction: null }, stopsStore: { classPropertyName: "stopsStore", publicName: "stopsStore", isSignal: true, isRequired: true, transformFunction: null }, stopsFeatureStore: { classPropertyName: "stopsFeatureStore", publicName: "stopsFeatureStore", isSignal: true, isRequired: true, transformFunction: null }, routesFeatureStore: { classPropertyName: "routesFeatureStore", publicName: "routesFeatureStore", isSignal: true, isRequired: true, transformFunction: null }, stepsFeatureStore: { classPropertyName: "stepsFeatureStore", publicName: "stepsFeatureStore", isSignal: true, isRequired: true, transformFunction: null }, debounce: { classPropertyName: "debounce", publicName: "debounce", isSignal: true, isRequired: false, transformFunction: null }, length: { classPropertyName: "length", publicName: "length", isSignal: true, isRequired: false, transformFunction: null }, coordRoundedDecimals: { classPropertyName: "coordRoundedDecimals", publicName: "coordRoundedDecimals", isSignal: true, isRequired: false, transformFunction: null }, zoomToActiveRoute: { classPropertyName: "zoomToActiveRoute", publicName: "zoomToActiveRoute", isSignal: true, isRequired: true, transformFunction: null }, authenticated$: { classPropertyName: "authenticated$", publicName: "authenticated$", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "<div class=\"directions-options\">\n @if (sources.length > 1) {\n <mat-form-field subscriptSizing=\"dynamic\">\n <mat-label>{{\n 'igo.geo.directions.results.routingSource' | translate\n }}</mat-label>\n <mat-select\n [matTooltip]=\"\n 'igo.geo.directions.results.routingSourceTooltip' | translate\n \"\n [value]=\"activeSource\"\n (selectionChange)=\"onSourceChange($event.value)\"\n >\n @for (source of sources; track source) {\n <mat-option [value]=\"source.getSourceId()\">{{\n source.getSourceName()\n }}</mat-option>\n }\n </mat-select>\n </mat-form-field>\n }\n\n <mat-slide-toggle\n [checked]=\"directionControlIsActive\"\n [labelPosition]=\"'before'\"\n (change)=\"onToggleDirectionsControl($event.checked)\"\n >\n {{ 'igo.geo.directions.toggle.activateControl' | translate }}\n </mat-slide-toggle>\n</div>\n\n<igo-directions-inputs\n (stopInputHasFocus)=\"onStopInputHasFocusChange($event)\"\n [coordRoundedDecimals]=\"coordRoundedDecimals()\"\n [projection]=\"projection\"\n [stopsFeatureStore]=\"stopsFeatureStore()\"\n [stopsStore]=\"stopsStore()\"\n [debounce]=\"debounce()\"\n [length]=\"length()\"\n/>\n\n@if (routesFeatureStore().all().length > 0) {\n <igo-directions-buttons\n [stepsFeatureStore]=\"stepsFeatureStore()\"\n [contextUri]=\"contextUri()\"\n (zoomOnActiveRoute)=\"zoomOnActiveRoute()\"\n [routesFeatureStore]=\"routesFeatureStore()\"\n [stopsStore]=\"stopsStore()\"\n />\n}\n\n<igo-directions-results\n [stepsFeatureStore]=\"stepsFeatureStore()\"\n [routesFeatureStore]=\"routesFeatureStore()\"\n/>\n", styles: [":host{display:block;padding:16px}.directions-options{display:flex;flex-flow:column;align-items:center;row-gap:8px;margin-bottom:16px}.directions-options mat-slide-toggle{width:100%}.directions-options mat-slide-toggle ::ng-deep .mdc-form-field{width:100%}.directions-options mat-slide-toggle ::ng-deep .mdc-label{margin-left:0;margin-right:auto;width:auto;padding-right:0}.directions-options mat-slide-toggle ::ng-deep .mdc-slide-toggle{margin-left:auto;margin-right:0}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i3$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i4$3.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i4$3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i2$2.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "component", type: DirectionsButtonsComponent, selector: "igo-directions-buttons", inputs: ["contextUri", "stopsStore", "routesFeatureStore", "stepsFeatureStore"], outputs: ["zoomOnActiveRoute"] }, { kind: "component", type: DirectionsInputsComponent, selector: "igo-directions-inputs", inputs: ["stopsStore", "stopsFeatureStore", "projection", "coordRoundedDecimals", "debounce", "length"], outputs: ["stopInputHasFocus"] }, { kind: "component", type: DirectionsResultsComponent, selector: "igo-directions-results", inputs: ["routesFeatureStore", "stepsFeatureStore"] }, { kind: "ngmodule", type: IgoLanguageModule }, { kind: "pipe", type: i4.TranslatePipe, name: "translate" }] });
17400
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.17", type: DirectionsComponent, isStandalone: true, selector: "igo-directions", inputs: { contextUri: { classPropertyName: "contextUri", publicName: "contextUri", isSignal: true, isRequired: false, transformFunction: null }, stopsStore: { classPropertyName: "stopsStore", publicName: "stopsStore", isSignal: true, isRequired: true, transformFunction: null }, stopsFeatureStore: { classPropertyName: "stopsFeatureStore", publicName: "stopsFeatureStore", isSignal: true, isRequired: true, transformFunction: null }, routesFeatureStore: { classPropertyName: "routesFeatureStore", publicName: "routesFeatureStore", isSignal: true, isRequired: true, transformFunction: null }, stepsFeatureStore: { classPropertyName: "stepsFeatureStore", publicName: "stepsFeatureStore", isSignal: true, isRequired: true, transformFunction: null }, debounce: { classPropertyName: "debounce", publicName: "debounce", isSignal: true, isRequired: false, transformFunction: null }, length: { classPropertyName: "length", publicName: "length", isSignal: true, isRequired: false, transformFunction: null }, coordRoundedDecimals: { classPropertyName: "coordRoundedDecimals", publicName: "coordRoundedDecimals", isSignal: true, isRequired: false, transformFunction: null }, zoomToActiveRoute: { classPropertyName: "zoomToActiveRoute", publicName: "zoomToActiveRoute", isSignal: true, isRequired: true, transformFunction: null }, authenticated$: { classPropertyName: "authenticated$", publicName: "authenticated$", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: "<div class=\"directions-options\">\n @if (sources.length > 1) {\n <mat-form-field subscriptSizing=\"dynamic\">\n <mat-label>{{\n 'igo.geo.directions.results.routingSource' | translate\n }}</mat-label>\n <mat-select\n [matTooltip]=\"\n 'igo.geo.directions.results.routingSourceTooltip' | translate\n \"\n [value]=\"activeSource.getSourceId()\"\n (selectionChange)=\"onSourceChange($event.value)\"\n >\n @for (source of sources; track source) {\n <mat-option [value]=\"source.getSourceId()\">{{\n source.getSourceName()\n }}</mat-option>\n }\n </mat-select>\n </mat-form-field>\n }\n\n <mat-slide-toggle\n [checked]=\"directionControlIsActive\"\n [labelPosition]=\"'before'\"\n (change)=\"onToggleDirectionsControl($event.checked)\"\n >\n {{ 'igo.geo.directions.toggle.activateControl' | translate }}\n </mat-slide-toggle>\n</div>\n\n<igo-directions-inputs\n (stopInputHasFocus)=\"onStopInputHasFocusChange($event)\"\n [coordRoundedDecimals]=\"coordRoundedDecimals()\"\n [projection]=\"projection\"\n [stopsFeatureStore]=\"stopsFeatureStore()\"\n [stopsStore]=\"stopsStore()\"\n [debounce]=\"debounce()\"\n [length]=\"length()\"\n/>\n\n@if (routesFeatureStore().all().length > 0) {\n <igo-directions-buttons\n [stepsFeatureStore]=\"stepsFeatureStore()\"\n [contextUri]=\"contextUri()\"\n (zoomOnActiveRoute)=\"zoomOnActiveRoute()\"\n [routesFeatureStore]=\"routesFeatureStore()\"\n [stopsStore]=\"stopsStore()\"\n />\n}\n\n<igo-directions-results\n [stepsFeatureStore]=\"stepsFeatureStore()\"\n [routesFeatureStore]=\"routesFeatureStore()\"\n/>\n", styles: [":host{display:block;padding:16px}.directions-options{display:flex;flex-flow:column;align-items:center;row-gap:8px;margin-bottom:16px}.directions-options mat-slide-toggle{width:100%}.directions-options mat-slide-toggle ::ng-deep .mdc-form-field{width:100%}.directions-options mat-slide-toggle ::ng-deep .mdc-label{margin-left:0;margin-right:auto;width:auto;padding-right:0}.directions-options mat-slide-toggle ::ng-deep .mdc-slide-toggle{margin-left:auto;margin-right:0}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i3$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i4$3.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i4$3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i2$2.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "component", type: DirectionsButtonsComponent, selector: "igo-directions-buttons", inputs: ["contextUri", "stopsStore", "routesFeatureStore", "stepsFeatureStore"], outputs: ["zoomOnActiveRoute"] }, { kind: "component", type: DirectionsInputsComponent, selector: "igo-directions-inputs", inputs: ["stopsStore", "stopsFeatureStore", "projection", "coordRoundedDecimals", "debounce", "length"], outputs: ["stopInputHasFocus"] }, { kind: "component", type: DirectionsResultsComponent, selector: "igo-directions-results", inputs: ["routesFeatureStore", "stepsFeatureStore"] }, { kind: "ngmodule", type: IgoLanguageModule }, { kind: "pipe", type: i4.TranslatePipe, name: "translate" }] });
17391
17401
  }
17392
17402
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: DirectionsComponent, decorators: [{
17393
17403
  type: Component,
@@ -17400,7 +17410,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImpo
17400
17410
  DirectionsInputsComponent,
17401
17411
  DirectionsResultsComponent,
17402
17412
  IgoLanguageModule
17403
- ], template: "<div class=\"directions-options\">\n @if (sources.length > 1) {\n <mat-form-field subscriptSizing=\"dynamic\">\n <mat-label>{{\n 'igo.geo.directions.results.routingSource' | translate\n }}</mat-label>\n <mat-select\n [matTooltip]=\"\n 'igo.geo.directions.results.routingSourceTooltip' | translate\n \"\n [value]=\"activeSource\"\n (selectionChange)=\"onSourceChange($event.value)\"\n >\n @for (source of sources; track source) {\n <mat-option [value]=\"source.getSourceId()\">{{\n source.getSourceName()\n }}</mat-option>\n }\n </mat-select>\n </mat-form-field>\n }\n\n <mat-slide-toggle\n [checked]=\"directionControlIsActive\"\n [labelPosition]=\"'before'\"\n (change)=\"onToggleDirectionsControl($event.checked)\"\n >\n {{ 'igo.geo.directions.toggle.activateControl' | translate }}\n </mat-slide-toggle>\n</div>\n\n<igo-directions-inputs\n (stopInputHasFocus)=\"onStopInputHasFocusChange($event)\"\n [coordRoundedDecimals]=\"coordRoundedDecimals()\"\n [projection]=\"projection\"\n [stopsFeatureStore]=\"stopsFeatureStore()\"\n [stopsStore]=\"stopsStore()\"\n [debounce]=\"debounce()\"\n [length]=\"length()\"\n/>\n\n@if (routesFeatureStore().all().length > 0) {\n <igo-directions-buttons\n [stepsFeatureStore]=\"stepsFeatureStore()\"\n [contextUri]=\"contextUri()\"\n (zoomOnActiveRoute)=\"zoomOnActiveRoute()\"\n [routesFeatureStore]=\"routesFeatureStore()\"\n [stopsStore]=\"stopsStore()\"\n />\n}\n\n<igo-directions-results\n [stepsFeatureStore]=\"stepsFeatureStore()\"\n [routesFeatureStore]=\"routesFeatureStore()\"\n/>\n", styles: [":host{display:block;padding:16px}.directions-options{display:flex;flex-flow:column;align-items:center;row-gap:8px;margin-bottom:16px}.directions-options mat-slide-toggle{width:100%}.directions-options mat-slide-toggle ::ng-deep .mdc-form-field{width:100%}.directions-options mat-slide-toggle ::ng-deep .mdc-label{margin-left:0;margin-right:auto;width:auto;padding-right:0}.directions-options mat-slide-toggle ::ng-deep .mdc-slide-toggle{margin-left:auto;margin-right:0}\n"] }]
17413
+ ], template: "<div class=\"directions-options\">\n @if (sources.length > 1) {\n <mat-form-field subscriptSizing=\"dynamic\">\n <mat-label>{{\n 'igo.geo.directions.results.routingSource' | translate\n }}</mat-label>\n <mat-select\n [matTooltip]=\"\n 'igo.geo.directions.results.routingSourceTooltip' | translate\n \"\n [value]=\"activeSource.getSourceId()\"\n (selectionChange)=\"onSourceChange($event.value)\"\n >\n @for (source of sources; track source) {\n <mat-option [value]=\"source.getSourceId()\">{{\n source.getSourceName()\n }}</mat-option>\n }\n </mat-select>\n </mat-form-field>\n }\n\n <mat-slide-toggle\n [checked]=\"directionControlIsActive\"\n [labelPosition]=\"'before'\"\n (change)=\"onToggleDirectionsControl($event.checked)\"\n >\n {{ 'igo.geo.directions.toggle.activateControl' | translate }}\n </mat-slide-toggle>\n</div>\n\n<igo-directions-inputs\n (stopInputHasFocus)=\"onStopInputHasFocusChange($event)\"\n [coordRoundedDecimals]=\"coordRoundedDecimals()\"\n [projection]=\"projection\"\n [stopsFeatureStore]=\"stopsFeatureStore()\"\n [stopsStore]=\"stopsStore()\"\n [debounce]=\"debounce()\"\n [length]=\"length()\"\n/>\n\n@if (routesFeatureStore().all().length > 0) {\n <igo-directions-buttons\n [stepsFeatureStore]=\"stepsFeatureStore()\"\n [contextUri]=\"contextUri()\"\n (zoomOnActiveRoute)=\"zoomOnActiveRoute()\"\n [routesFeatureStore]=\"routesFeatureStore()\"\n [stopsStore]=\"stopsStore()\"\n />\n}\n\n<igo-directions-results\n [stepsFeatureStore]=\"stepsFeatureStore()\"\n [routesFeatureStore]=\"routesFeatureStore()\"\n/>\n", styles: [":host{display:block;padding:16px}.directions-options{display:flex;flex-flow:column;align-items:center;row-gap:8px;margin-bottom:16px}.directions-options mat-slide-toggle{width:100%}.directions-options mat-slide-toggle ::ng-deep .mdc-form-field{width:100%}.directions-options mat-slide-toggle ::ng-deep .mdc-label{margin-left:0;margin-right:auto;width:auto;padding-right:0}.directions-options mat-slide-toggle ::ng-deep .mdc-slide-toggle{margin-left:auto;margin-right:0}\n"] }]
17404
17414
  }], ctorParameters: () => [], propDecorators: { contextUri: [{ type: i0.Input, args: [{ isSignal: true, alias: "contextUri", required: false }] }], stopsStore: [{ type: i0.Input, args: [{ isSignal: true, alias: "stopsStore", required: true }] }], stopsFeatureStore: [{ type: i0.Input, args: [{ isSignal: true, alias: "stopsFeatureStore", required: true }] }], routesFeatureStore: [{ type: i0.Input, args: [{ isSignal: true, alias: "routesFeatureStore", required: true }] }], stepsFeatureStore: [{ type: i0.Input, args: [{ isSignal: true, alias: "stepsFeatureStore", required: true }] }], debounce: [{ type: i0.Input, args: [{ isSignal: true, alias: "debounce", required: false }] }], length: [{ type: i0.Input, args: [{ isSignal: true, alias: "length", required: false }] }], coordRoundedDecimals: [{ type: i0.Input, args: [{ isSignal: true, alias: "coordRoundedDecimals", required: false }] }], zoomToActiveRoute: [{ type: i0.Input, args: [{ isSignal: true, alias: "zoomToActiveRoute", required: true }] }], authenticated$: [{ type: i0.Input, args: [{ isSignal: true, alias: "authenticated$", required: true }] }] } });
17405
17415
 
17406
17416
  class IgoDirectionsModule {
@@ -33608,6 +33618,8 @@ class OsmLinks {
33608
33618
  }
33609
33619
  }
33610
33620
 
33621
+ const COORDINATES_REVERSE_SEARCH_SOURCE_OPTIONS = new InjectionToken('CoordinatesReverseSearchSourceOptions');
33622
+ const COORDINATES_REVERSE_SEARCH_SOURCE_PROJECTIONS = new InjectionToken('CoordinatesReverseSearchSourceProjections');
33611
33623
  class CoordinatesSearchResultFormatter {
33612
33624
  formatResult(result) {
33613
33625
  return result;
@@ -33631,10 +33643,15 @@ class CoordinatesReverseSearchSource extends SearchSource {
33631
33643
  return this.title$.getValue();
33632
33644
  }
33633
33645
  constructor() {
33634
- const config = inject(ConfigService);
33646
+ const config = inject(ConfigService, { optional: true });
33635
33647
  const storageService = inject(StorageService);
33636
- const options = config.getConfig(`searchSources.${CoordinatesReverseSearchSource.id}`);
33637
- 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') ?? [];
33638
33655
  super(options, storageService);
33639
33656
  this.projections = projections;
33640
33657
  this.languageService.language$.subscribe(() => {
@@ -33806,12 +33823,28 @@ function provideCoordinatesReverseSearchSource() {
33806
33823
  multi: true
33807
33824
  };
33808
33825
  }
33809
- function withCoordinatesReverseSource() {
33826
+ function withCoordinatesReverseSource(config) {
33810
33827
  return {
33811
33828
  kind: SearchSourceKind.CoordinatesReverse,
33812
33829
  providers: [
33813
33830
  provideCoordinatesReverseSearchSource(),
33814
- 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
+ : [])
33815
33848
  ]
33816
33849
  };
33817
33850
  }
@@ -33859,6 +33892,8 @@ const ICHERCHE_ICONS = {
33859
33892
  waves: 'waves'
33860
33893
  };
33861
33894
 
33895
+ const ICHERCHE_SEARCH_SOURCE_OPTIONS = new InjectionToken('IChercheSearchSourceOptions');
33896
+ const ICHERCHE_REVERSE_SEARCH_SOURCE_OPTIONS = new InjectionToken('IChercheReverseSearchSourceOptions');
33862
33897
  class IChercheSearchResultFormatter {
33863
33898
  formatResult(result) {
33864
33899
  return result;
@@ -33913,8 +33948,11 @@ class IChercheSearchSource extends SearchSource {
33913
33948
  }
33914
33949
  constructor() {
33915
33950
  const storageService = inject(StorageService);
33916
- const config = inject(ConfigService);
33917
- 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 ?? {});
33918
33956
  super(options, storageService);
33919
33957
  const authService = inject(AuthService);
33920
33958
  if (this.settings.length) {
@@ -34450,9 +34488,12 @@ class IChercheReverseSearchSource extends SearchSource {
34450
34488
  return this.title$.getValue();
34451
34489
  }
34452
34490
  constructor() {
34453
- const config = inject(ConfigService);
34454
34491
  const storageService = inject(StorageService);
34455
- 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 ?? {});
34456
34497
  const injector = inject(Injector);
34457
34498
  super(options, storageService);
34458
34499
  this.languageService.language$.subscribe(() => {
@@ -34765,12 +34806,15 @@ function provideIChercheSearchSource() {
34765
34806
  multi: true
34766
34807
  };
34767
34808
  }
34768
- function withIChercheSource() {
34809
+ function withIChercheSource(options) {
34769
34810
  return {
34770
34811
  kind: SearchSourceKind.ICherche,
34771
34812
  providers: [
34772
34813
  provideIChercheSearchSource(),
34773
- provideDefaultIChercheSearchResultFormatter()
34814
+ provideDefaultIChercheSearchResultFormatter(),
34815
+ ...(options
34816
+ ? [{ provide: ICHERCHE_SEARCH_SOURCE_OPTIONS, useValue: options }]
34817
+ : [])
34774
34818
  ]
34775
34819
  };
34776
34820
  }
@@ -34791,16 +34835,25 @@ function provideIChercheReverseSearchSource() {
34791
34835
  multi: true
34792
34836
  };
34793
34837
  }
34794
- function withIChercheReverseSource() {
34838
+ function withIChercheReverseSource(options) {
34795
34839
  return {
34796
34840
  kind: SearchSourceKind.IChercheReverse,
34797
34841
  providers: [
34798
34842
  provideIChercheReverseSearchSource(),
34799
- provideDefaultIChercheSearchResultFormatter()
34843
+ provideDefaultIChercheSearchResultFormatter(),
34844
+ ...(options
34845
+ ? [
34846
+ {
34847
+ provide: ICHERCHE_REVERSE_SEARCH_SOURCE_OPTIONS,
34848
+ useValue: options
34849
+ }
34850
+ ]
34851
+ : [])
34800
34852
  ]
34801
34853
  };
34802
34854
  }
34803
34855
 
34856
+ const ILAYER_SEARCH_SOURCE_OPTIONS = new InjectionToken('ILayerSearchSourceOptions');
34804
34857
  class ILayerSearchResultFormatter {
34805
34858
  languageService = inject(LanguageService);
34806
34859
  formatResult(data) {
@@ -34852,8 +34905,11 @@ class ILayerSearchSource extends SearchSource {
34852
34905
  }
34853
34906
  constructor() {
34854
34907
  const storageService = inject(StorageService);
34855
- const config = inject(ConfigService);
34856
- 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 ?? {});
34857
34913
  super(options, storageService);
34858
34914
  this.languageService.language$.subscribe(() => {
34859
34915
  this.title$.next(this.languageService.translate.instant(this.options.title));
@@ -35147,12 +35203,15 @@ function provideILayerSearchSource() {
35147
35203
  multi: true
35148
35204
  };
35149
35205
  }
35150
- function withILayerSource() {
35206
+ function withILayerSource(options) {
35151
35207
  return {
35152
35208
  kind: SearchSourceKind.ILayer,
35153
35209
  providers: [
35154
35210
  provideILayerSearchSource(),
35155
- provideILayerSearchResultFormatter()
35211
+ provideILayerSearchResultFormatter(),
35212
+ ...(options
35213
+ ? [{ provide: ILAYER_SEARCH_SOURCE_OPTIONS, useValue: options }]
35214
+ : [])
35156
35215
  ]
35157
35216
  };
35158
35217
  }
@@ -40670,6 +40729,7 @@ function provideSearch(sources, options) {
40670
40729
  return providers;
40671
40730
  }
40672
40731
 
40732
+ const CADASTRE_SEARCH_SOURCE_OPTIONS = new InjectionToken('CadastreSearchSourceOptions');
40673
40733
  /**
40674
40734
  * Cadastre search source
40675
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+.
@@ -40681,8 +40741,11 @@ class CadastreSearchSource extends SearchSource {
40681
40741
  static type = FEATURE;
40682
40742
  constructor() {
40683
40743
  const storageService = inject(StorageService);
40684
- const config = inject(ConfigService);
40685
- 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 ?? {});
40686
40749
  super(options, storageService);
40687
40750
  }
40688
40751
  getId() {
@@ -40817,13 +40880,19 @@ function provideCadastreSearchSource() {
40817
40880
  /**
40818
40881
  * @deprecated This search source is deprecated and will be removed in a future major version, likely in 23.x+.
40819
40882
  */
40820
- function withCadastreSource() {
40883
+ function withCadastreSource(options) {
40821
40884
  return {
40822
40885
  kind: SearchSourceKind.Cadastre,
40823
- providers: [provideCadastreSearchSource()]
40886
+ providers: [
40887
+ provideCadastreSearchSource(),
40888
+ ...(options
40889
+ ? [{ provide: CADASTRE_SEARCH_SOURCE_OPTIONS, useValue: options }]
40890
+ : [])
40891
+ ]
40824
40892
  };
40825
40893
  }
40826
40894
 
40895
+ const NOMINATIM_SEARCH_SOURCE_OPTIONS = new InjectionToken('NominatimSearchSourceOptions');
40827
40896
  /**
40828
40897
  * Nominatim search source
40829
40898
  */
@@ -40832,9 +40901,12 @@ class NominatimSearchSource extends SearchSource {
40832
40901
  static id = 'nominatim';
40833
40902
  static type = FEATURE;
40834
40903
  constructor() {
40835
- const config = inject(ConfigService);
40904
+ const config = inject(ConfigService, { optional: true });
40836
40905
  const storageService = inject(StorageService);
40837
- 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 ?? {});
40838
40910
  super(options, storageService);
40839
40911
  }
40840
40912
  getId() {
@@ -41092,13 +41164,20 @@ function provideNominatimSearchSource() {
41092
41164
  multi: true
41093
41165
  };
41094
41166
  }
41095
- function withNominatimSource() {
41167
+ function withNominatimSource(options) {
41096
41168
  return {
41097
41169
  kind: SearchSourceKind.Nominatim,
41098
- providers: [provideNominatimSearchSource()]
41170
+ providers: [
41171
+ provideNominatimSearchSource(),
41172
+ ...(options
41173
+ ? [{ provide: NOMINATIM_SEARCH_SOURCE_OPTIONS, useValue: options }]
41174
+ : [])
41175
+ ]
41099
41176
  };
41100
41177
  }
41101
41178
 
41179
+ const STORED_QUERIES_SEARCH_SOURCE_OPTIONS = new InjectionToken('StoredQueriesSearchSourceOptions');
41180
+ const STORED_QUERIES_REVERSE_SEARCH_SOURCE_OPTIONS = new InjectionToken('StoredQueriesReverseSearchSourceOptions');
41102
41181
  /**
41103
41182
  * StoredQueries search source
41104
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+.
@@ -41118,9 +41197,12 @@ class StoredQueriesSearchSource extends SearchSource {
41118
41197
  storedQueriesOptions;
41119
41198
  multipleFieldsQuery;
41120
41199
  constructor() {
41121
- const config = inject(ConfigService);
41200
+ const config = inject(ConfigService, { optional: true });
41122
41201
  const storageService = inject(StorageService);
41123
- 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 ?? {});
41124
41206
  super(options, storageService);
41125
41207
  this.storedQueriesOptions = options;
41126
41208
  if (this.storedQueriesOptions && !this.storedQueriesOptions.available) {
@@ -41386,9 +41468,12 @@ class StoredQueriesReverseSearchSource extends SearchSource {
41386
41468
  storedQueriesOptions;
41387
41469
  multipleFieldsQuery;
41388
41470
  constructor() {
41389
- const config = inject(ConfigService);
41471
+ const config = inject(ConfigService, { optional: true });
41390
41472
  const storageService = inject(StorageService);
41391
- 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 ?? {});
41392
41477
  super(options, storageService);
41393
41478
  this.storedQueriesOptions =
41394
41479
  options;
@@ -41558,10 +41643,20 @@ function provideStoredQueriesSearchSource() {
41558
41643
  /**
41559
41644
  * @deprecated This search source is deprecated and will be removed in a future major version, likely in 23.x+.
41560
41645
  */
41561
- function withStoredQueriesSource() {
41646
+ function withStoredQueriesSource(options) {
41562
41647
  return {
41563
41648
  kind: SearchSourceKind.StoredQueries,
41564
- providers: [provideStoredQueriesSearchSource()]
41649
+ providers: [
41650
+ provideStoredQueriesSearchSource(),
41651
+ ...(options
41652
+ ? [
41653
+ {
41654
+ provide: STORED_QUERIES_SEARCH_SOURCE_OPTIONS,
41655
+ useValue: options
41656
+ }
41657
+ ]
41658
+ : [])
41659
+ ]
41565
41660
  };
41566
41661
  }
41567
41662
  /**
@@ -41585,13 +41680,24 @@ function provideStoredQueriesReverseSearchSource() {
41585
41680
  /**
41586
41681
  * @deprecated This search source is deprecated and will be removed in a future major version, likely in 23.x+.
41587
41682
  */
41588
- function withStoredQueriesReverseSource() {
41683
+ function withStoredQueriesReverseSource(options) {
41589
41684
  return {
41590
41685
  kind: SearchSourceKind.StoredQueriesReverse,
41591
- 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
+ ]
41592
41697
  };
41593
41698
  }
41594
41699
 
41700
+ const WORKSPACE_SEARCH_SOURCE_OPTIONS = new InjectionToken('WorkspaceSearchSourceOptions');
41595
41701
  /**
41596
41702
  * Workspace search source
41597
41703
  */
@@ -41605,8 +41711,11 @@ class WorkspaceSearchSource extends SearchSource {
41605
41711
  }
41606
41712
  constructor() {
41607
41713
  const storageService = inject(StorageService);
41608
- const config = inject(ConfigService);
41609
- 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 ?? {});
41610
41719
  super(options, storageService);
41611
41720
  this.languageService.translate
41612
41721
  .get(this.options.title)
@@ -41795,10 +41904,15 @@ function provideWorkspaceSearchSource() {
41795
41904
  multi: true
41796
41905
  };
41797
41906
  }
41798
- function withWorkspaceSource() {
41907
+ function withWorkspaceSource(options) {
41799
41908
  return {
41800
41909
  kind: SearchSourceKind.Workspace,
41801
- providers: [provideWorkspaceSearchSource()]
41910
+ providers: [
41911
+ provideWorkspaceSearchSource(),
41912
+ ...(options
41913
+ ? [{ provide: WORKSPACE_SEARCH_SOURCE_OPTIONS, useValue: options }]
41914
+ : [])
41915
+ ]
41802
41916
  };
41803
41917
  }
41804
41918
 
@@ -42128,5 +42242,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImpo
42128
42242
  * Generated bundle index. Do not edit.
42129
42243
  */
42130
42244
 
42131
- 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 };
42132
42246
  //# sourceMappingURL=igo2-geo.mjs.map