@igo2/geo 21.0.0-next.23 → 21.0.0-next.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/igo2-geo.mjs +71 -56
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/package.json +4 -4
- package/types/igo2-geo.d.ts +480 -319
package/fesm2022/igo2-geo.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable, inject, Optional, InjectionToken, makeEnvironmentProviders, DOCUMENT, input, output, Component, ChangeDetectorRef, Injector, runInInjectionContext, computed, ChangeDetectionStrategy, HostBinding, viewChildren, signal, model, effect, DestroyRef, Directive, viewChild, contentChild, TemplateRef, HostListener, Input, ApplicationRef, NgModule, Pipe, ElementRef, Self, EventEmitter, Output, ViewEncapsulation, Inject } from '@angular/core';
|
|
2
|
+
import { Injectable, inject, Optional, InjectionToken, makeEnvironmentProviders, DOCUMENT, input, output, Component, ChangeDetectorRef, Injector, runInInjectionContext, computed, ChangeDetectionStrategy, HostBinding, viewChildren, signal, model, effect, DestroyRef, Directive, viewChild, contentChild, TemplateRef, HostListener, provideAppInitializer, Input, ApplicationRef, NgModule, Pipe, ElementRef, Self, EventEmitter, Output, ViewEncapsulation, Inject } from '@angular/core';
|
|
3
3
|
import { Clipboard } from '@angular/cdk/clipboard';
|
|
4
4
|
import * as i1 from '@angular/material/button';
|
|
5
5
|
import { MatButtonModule } from '@angular/material/button';
|
|
@@ -20,12 +20,12 @@ import html2canvas from 'html2canvas';
|
|
|
20
20
|
import jsPDF, { jsPDF as jsPDF$1 } from 'jspdf';
|
|
21
21
|
import { autoTable } from 'jspdf-autotable';
|
|
22
22
|
import moment from 'moment';
|
|
23
|
-
import { Observable, of, combineLatest, BehaviorSubject, interval, tap, merge, fromEvent, firstValueFrom, Subject, forkJoin, map as map$1, catchError as catchError$1, debounceTime as debounceTime$1, switchMap, EMPTY, timer, filter as filter$1, from, pairwise, Subscription, lastValueFrom, throwError, first as first$1, zip } from 'rxjs';
|
|
23
|
+
import { Observable, of, combineLatest, BehaviorSubject, interval, tap, merge, fromEvent, firstValueFrom, Subject, forkJoin, map as map$1, catchError as catchError$1, debounceTime as debounceTime$1, switchMap, EMPTY, timer, filter as filter$1, take, from, pairwise, Subscription, lastValueFrom, throwError, first as first$1, zip } from 'rxjs';
|
|
24
24
|
import { HttpClient, HttpParams, HttpHeaders } from '@angular/common/http';
|
|
25
25
|
import { fetchImageFromDepotUrl, ImageErrorDirective, SecureImagePipe } from '@igo2/common/image';
|
|
26
26
|
import { saveAs } from 'file-saver';
|
|
27
27
|
import JSZip from 'jszip';
|
|
28
|
-
import { concatMap, distinctUntilChanged, map, timeout, first, catchError, debounceTime, skip, filter, switchMap as switchMap$1, debounce, mergeMap, skipWhile, takeUntil, take, finalize, startWith } from 'rxjs/operators';
|
|
28
|
+
import { concatMap, distinctUntilChanged, map, timeout, first, catchError, debounceTime, skip, filter, switchMap as switchMap$1, debounce, mergeMap, skipWhile, takeUntil, take as take$1, finalize, startWith } from 'rxjs/operators';
|
|
29
29
|
import { getUid } from 'ol/util';
|
|
30
30
|
import { __decorate, __param, __metadata } from 'tslib';
|
|
31
31
|
import olSourceImageWMS from 'ol/source/ImageWMS';
|
|
@@ -1785,9 +1785,7 @@ function generateIdFromSourceOptions(options) {
|
|
|
1785
1785
|
osm: () => 'OSM',
|
|
1786
1786
|
tiledebug: () => 'tiledebug'
|
|
1787
1787
|
};
|
|
1788
|
-
const generator = options.type
|
|
1789
|
-
? (generators[options.type] ?? generateId)
|
|
1790
|
-
: generateId;
|
|
1788
|
+
const generator = generators[options.type] ?? generateId;
|
|
1791
1789
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
1792
1790
|
return generator(options);
|
|
1793
1791
|
}
|
|
@@ -1894,7 +1892,7 @@ class DataSource {
|
|
|
1894
1892
|
}
|
|
1895
1893
|
events = new Map();
|
|
1896
1894
|
properties = new DatasourceProperties();
|
|
1897
|
-
constructor(options
|
|
1895
|
+
constructor(options, dataService) {
|
|
1898
1896
|
this.options = options;
|
|
1899
1897
|
this.dataService = dataService;
|
|
1900
1898
|
this.options = options;
|
|
@@ -4778,6 +4776,9 @@ function hasVectorSourceLoader(dataSource) {
|
|
|
4778
4776
|
}
|
|
4779
4777
|
|
|
4780
4778
|
class FeatureDataSource extends DataSource {
|
|
4779
|
+
constructor(options = { type: 'vector' }) {
|
|
4780
|
+
super(options);
|
|
4781
|
+
}
|
|
4781
4782
|
get saveableOptions() {
|
|
4782
4783
|
const baseOptions = super.saveableOptions;
|
|
4783
4784
|
return {
|
|
@@ -4848,7 +4849,6 @@ class ClusterDataSource extends FeatureDataSource {
|
|
|
4848
4849
|
}
|
|
4849
4850
|
|
|
4850
4851
|
class VectorWatcher extends Watcher {
|
|
4851
|
-
id;
|
|
4852
4852
|
loaded = 0;
|
|
4853
4853
|
loading = 0;
|
|
4854
4854
|
onFeatureLoadStart = () => this.handleLoadStart();
|
|
@@ -4857,7 +4857,6 @@ class VectorWatcher extends Watcher {
|
|
|
4857
4857
|
constructor(layer) {
|
|
4858
4858
|
super();
|
|
4859
4859
|
this.layer = layer;
|
|
4860
|
-
this.id = uuid();
|
|
4861
4860
|
}
|
|
4862
4861
|
watch() {
|
|
4863
4862
|
const olSource = this.getWatchableSource();
|
|
@@ -7075,6 +7074,9 @@ function provideDirectionsSourceService() {
|
|
|
7075
7074
|
}
|
|
7076
7075
|
|
|
7077
7076
|
class OSMDataSource extends DataSource {
|
|
7077
|
+
constructor(options = { type: 'osm' }) {
|
|
7078
|
+
super(options);
|
|
7079
|
+
}
|
|
7078
7080
|
createOlSource() {
|
|
7079
7081
|
if (!this.options.url) {
|
|
7080
7082
|
this.options.url = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png';
|
|
@@ -11038,7 +11040,8 @@ class DataSourceService {
|
|
|
11038
11040
|
}
|
|
11039
11041
|
observables.push(of(options));
|
|
11040
11042
|
return forkJoin(observables).pipe(map((opts) => {
|
|
11041
|
-
const
|
|
11043
|
+
const [firstOptions, ...remainingOptions] = opts;
|
|
11044
|
+
const optionsMerged = remainingOptions.reduce((a, b) => ObjectUtils.mergeDeep(a, b), firstOptions);
|
|
11042
11045
|
return new ArcGISRestDataSource(optionsMerged);
|
|
11043
11046
|
}), catchError(() => {
|
|
11044
11047
|
return of(undefined);
|
|
@@ -11066,7 +11069,8 @@ class DataSourceService {
|
|
|
11066
11069
|
}
|
|
11067
11070
|
observables.push(of(options));
|
|
11068
11071
|
return forkJoin(observables).pipe(map((opts) => {
|
|
11069
|
-
const
|
|
11072
|
+
const [firstOptions, ...remainingOptions] = opts;
|
|
11073
|
+
const optionsMerged = remainingOptions.reduce((a, b) => ObjectUtils.mergeDeep(a, b), firstOptions);
|
|
11070
11074
|
return new ImageArcGISRestDataSource(optionsMerged);
|
|
11071
11075
|
}), catchError(() => {
|
|
11072
11076
|
return of(undefined);
|
|
@@ -11094,7 +11098,8 @@ class DataSourceService {
|
|
|
11094
11098
|
}
|
|
11095
11099
|
observables.push(of(options));
|
|
11096
11100
|
return forkJoin(observables).pipe(map((opts) => {
|
|
11097
|
-
const
|
|
11101
|
+
const [firstOptions, ...remainingOptions] = opts;
|
|
11102
|
+
const optionsMerged = remainingOptions.reduce((a, b) => ObjectUtils.mergeDeep(a, b), firstOptions);
|
|
11098
11103
|
return new TileArcGISRestDataSource(optionsMerged);
|
|
11099
11104
|
}), catchError(() => {
|
|
11100
11105
|
return of(undefined);
|
|
@@ -11646,6 +11651,9 @@ function mergeLayersOptions(layersOptionsTree, layersOptions) {
|
|
|
11646
11651
|
return tree;
|
|
11647
11652
|
}
|
|
11648
11653
|
function handleExternalDataSource(options) {
|
|
11654
|
+
if (!options.sourceOptions) {
|
|
11655
|
+
return;
|
|
11656
|
+
}
|
|
11649
11657
|
options.sourceOptions = {
|
|
11650
11658
|
...options.sourceOptions,
|
|
11651
11659
|
optionsFromCapabilities: true,
|
|
@@ -12866,9 +12874,9 @@ class LayerUnavailableComponent {
|
|
|
12866
12874
|
get title() {
|
|
12867
12875
|
const sourceOptions = this.layerOptions()?.sourceOptions;
|
|
12868
12876
|
return (this.layerOptions()?.title ??
|
|
12869
|
-
sourceOptions?.
|
|
12870
|
-
sourceOptions?.
|
|
12871
|
-
sourceOptions?.
|
|
12877
|
+
sourceOptions?.params?.['LAYERS'] ??
|
|
12878
|
+
sourceOptions?.params?.['layers'] ??
|
|
12879
|
+
sourceOptions?.layer);
|
|
12872
12880
|
}
|
|
12873
12881
|
handleRemove(layerOptions) {
|
|
12874
12882
|
this.remove.emit(layerOptions);
|
|
@@ -14932,19 +14940,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
14932
14940
|
args: ['mouseout']
|
|
14933
14941
|
}] } });
|
|
14934
14942
|
|
|
14943
|
+
const PROJECTION_PROVIDER_OPTIONS = new InjectionToken('PROJECTION_PROVIDER_OPTIONS');
|
|
14935
14944
|
/**
|
|
14936
14945
|
* When injected, this service automatically registers and
|
|
14937
14946
|
* projection defined in the application config. A custom projection
|
|
14938
14947
|
* needs to be registered to be usable by OL.
|
|
14939
14948
|
*/
|
|
14940
14949
|
class ProjectionService {
|
|
14941
|
-
config = inject(ConfigService);
|
|
14950
|
+
config = inject(ConfigService, { optional: true });
|
|
14951
|
+
options = inject(PROJECTION_PROVIDER_OPTIONS, { optional: true });
|
|
14942
14952
|
constructor() {
|
|
14943
|
-
|
|
14944
|
-
|
|
14945
|
-
|
|
14946
|
-
this.
|
|
14947
|
-
});
|
|
14953
|
+
this.registerProjections(this.options?.projections ?? []);
|
|
14954
|
+
this.config?.isLoaded$
|
|
14955
|
+
.pipe(filter$1(Boolean), take(1))
|
|
14956
|
+
.subscribe(() => this.registerConfiguredProjections());
|
|
14948
14957
|
// register all utm zones
|
|
14949
14958
|
for (let utmZone = 1; utmZone < 61; utmZone++) {
|
|
14950
14959
|
const code = utmZone < 10 ? `EPSG:3260${utmZone}` : `EPSG:326${utmZone}`;
|
|
@@ -14978,6 +14987,16 @@ class ProjectionService {
|
|
|
14978
14987
|
this.registerProjection(proj);
|
|
14979
14988
|
}
|
|
14980
14989
|
}
|
|
14990
|
+
registerConfiguredProjections() {
|
|
14991
|
+
const projections = this.config?.getConfig('projections') || [];
|
|
14992
|
+
this.registerProjections(projections);
|
|
14993
|
+
}
|
|
14994
|
+
registerProjections(projections) {
|
|
14995
|
+
projections.forEach((projection) => {
|
|
14996
|
+
projection.alias = projection.alias ? projection.alias : projection.code;
|
|
14997
|
+
this.registerProjection(projection);
|
|
14998
|
+
});
|
|
14999
|
+
}
|
|
14981
15000
|
/**
|
|
14982
15001
|
* Define a proj4 projection and register it in OL
|
|
14983
15002
|
* @param projection Projection
|
|
@@ -14999,6 +15018,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
14999
15018
|
}]
|
|
15000
15019
|
}], ctorParameters: () => [] });
|
|
15001
15020
|
|
|
15021
|
+
function provideProjection(options = {}) {
|
|
15022
|
+
return makeEnvironmentProviders([
|
|
15023
|
+
{
|
|
15024
|
+
provide: PROJECTION_PROVIDER_OPTIONS,
|
|
15025
|
+
useValue: options
|
|
15026
|
+
},
|
|
15027
|
+
provideAppInitializer(() => {
|
|
15028
|
+
inject(ProjectionService);
|
|
15029
|
+
})
|
|
15030
|
+
]);
|
|
15031
|
+
}
|
|
15032
|
+
|
|
15002
15033
|
/**
|
|
15003
15034
|
* Return a number of zone MTM for a longitude for province of Quebec only
|
|
15004
15035
|
* @param lon number
|
|
@@ -19995,17 +20026,9 @@ class OgcFilterableItemComponent {
|
|
|
19995
20026
|
firstFieldName =
|
|
19996
20027
|
includedFields[0].name === undefined ? '' : includedFields[0].name;
|
|
19997
20028
|
}
|
|
19998
|
-
|
|
19999
|
-
|
|
20000
|
-
|
|
20001
|
-
if (datasourceOptions.fieldNameGeometry) {
|
|
20002
|
-
fieldNameGeometry = datasourceOptions.fieldNameGeometry;
|
|
20003
|
-
}
|
|
20004
|
-
else if (this.datasource.options.paramsWFS &&
|
|
20005
|
-
this.datasource.options.paramsWFS.fieldNameGeometry) {
|
|
20006
|
-
fieldNameGeometry = this.datasource.options.paramsWFS
|
|
20007
|
-
.fieldNameGeometry;
|
|
20008
|
-
}
|
|
20029
|
+
const paramsWFS = this.datasource.options
|
|
20030
|
+
.paramsWFS;
|
|
20031
|
+
const fieldNameGeometry = this.datasource.options.fieldNameGeometry ?? paramsWFS?.fieldNameGeometry;
|
|
20009
20032
|
const allowedOperators = this.ogcFilterWriter.computeAllowedOperators(this.datasource.options.sourceFields, firstFieldName, this.datasource.options.ogcFilters.allowedOperatorsType);
|
|
20010
20033
|
const firstOperatorName = Object.keys(allowedOperators)[0];
|
|
20011
20034
|
arr.push(this.ogcFilterWriter.addInterfaceFilter({
|
|
@@ -21280,7 +21303,6 @@ class FeatureStoreInMapResolutionStrategy extends EntityStoreStrategy {
|
|
|
21280
21303
|
class GeoPropertiesStrategy extends EntityStoreStrategy {
|
|
21281
21304
|
options;
|
|
21282
21305
|
propertyTypeDetectorService;
|
|
21283
|
-
capabilitiesService;
|
|
21284
21306
|
/**
|
|
21285
21307
|
* Subscription to the store's OL source changes
|
|
21286
21308
|
*/
|
|
@@ -21291,11 +21313,10 @@ class GeoPropertiesStrategy extends EntityStoreStrategy {
|
|
|
21291
21313
|
* The map the layer is bound to
|
|
21292
21314
|
*/
|
|
21293
21315
|
map;
|
|
21294
|
-
constructor(options, propertyTypeDetectorService
|
|
21316
|
+
constructor(options, propertyTypeDetectorService) {
|
|
21295
21317
|
super(options);
|
|
21296
21318
|
this.options = options;
|
|
21297
21319
|
this.propertyTypeDetectorService = propertyTypeDetectorService;
|
|
21298
|
-
this.capabilitiesService = capabilitiesService;
|
|
21299
21320
|
this.map = options.map;
|
|
21300
21321
|
}
|
|
21301
21322
|
/**
|
|
@@ -26647,6 +26668,7 @@ class GeometryFormFieldInputComponent {
|
|
|
26647
26668
|
registerOnTouched(fn) {
|
|
26648
26669
|
this.onTouched = fn;
|
|
26649
26670
|
}
|
|
26671
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-private-class-members
|
|
26650
26672
|
onTouched = () => { };
|
|
26651
26673
|
/**
|
|
26652
26674
|
* Implemented as part of ControlValueAccessor.
|
|
@@ -27850,7 +27872,7 @@ class SpatialFilterListComponent {
|
|
|
27850
27872
|
this.inFlightIds.add(id);
|
|
27851
27873
|
this.spatialFilterService
|
|
27852
27874
|
.loadItemById(zone, this.queryType)
|
|
27853
|
-
?.pipe(take(1), finalize(() => this.inFlightIds.delete(id)))
|
|
27875
|
+
?.pipe(take$1(1), finalize(() => this.inFlightIds.delete(id)))
|
|
27854
27876
|
.subscribe((featureGeom) => {
|
|
27855
27877
|
this.addZone.emit(featureGeom);
|
|
27856
27878
|
this.selectedZones.push(featureGeom);
|
|
@@ -31544,10 +31566,6 @@ class SearchSelectorComponent {
|
|
|
31544
31566
|
*/
|
|
31545
31567
|
searchTypes = input(SEARCH_TYPES, ...(ngDevMode ? [{ debugName: "searchTypes" }] : /* istanbul ignore next */ []));
|
|
31546
31568
|
searchType = model(...(ngDevMode ? [undefined, { debugName: "searchType" }] : /* istanbul ignore next */ []));
|
|
31547
|
-
/**
|
|
31548
|
-
* Event emitted when the enabled search type changes
|
|
31549
|
-
*/
|
|
31550
|
-
searchTypeChange = output();
|
|
31551
31569
|
ngOnInit() {
|
|
31552
31570
|
this.onSetSearchType(this.searchType());
|
|
31553
31571
|
}
|
|
@@ -31575,10 +31593,9 @@ class SearchSelectorComponent {
|
|
|
31575
31593
|
return;
|
|
31576
31594
|
}
|
|
31577
31595
|
this.searchSourceService.enableSourcesByType(searchType);
|
|
31578
|
-
this.searchTypeChange.emit(searchType);
|
|
31579
31596
|
}
|
|
31580
31597
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.19", ngImport: i0, type: SearchSelectorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
31581
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.19", type: SearchSelectorComponent, isStandalone: true, selector: "igo-search-selector", inputs: { searchTypes: { classPropertyName: "searchTypes", publicName: "searchTypes", isSignal: true, isRequired: false, transformFunction: null }, searchType: { classPropertyName: "searchType", publicName: "searchType", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { searchType: "searchTypeChange"
|
|
31598
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.19", type: SearchSelectorComponent, isStandalone: true, selector: "igo-search-selector", inputs: { searchTypes: { classPropertyName: "searchTypes", publicName: "searchTypes", isSignal: true, isRequired: false, transformFunction: null }, searchType: { classPropertyName: "searchType", publicName: "searchType", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { searchType: "searchTypeChange" }, ngImport: i0, template: "<div class=\"igo-search-selector\">\n <button\n mat-icon-button\n class=\"igo-search-selector-button\"\n color=\"primary\"\n tooltip-position=\"below\"\n matTooltipShowDelay=\"500\"\n [matTooltip]=\"'igo.geo.search.menu.tooltip' | translate\"\n [matMenuTriggerFor]=\"searchSelectorMenu\"\n >\n <mat-icon>arrow_drop_down</mat-icon>\n </button>\n\n <mat-menu\n #searchSelectorMenu=\"matMenu\"\n class=\"no-border-radius\"\n xPosition=\"before\"\n yPosition=\"above\"\n >\n <mat-radio-group\n class=\"igo-search-selector-radio-group\"\n [value]=\"searchType()\"\n (change)=\"onSearchTypeChange($event.value)\"\n >\n @for (searchType of searchTypes(); track searchType) {\n <mat-radio-button [value]=\"searchType\">\n {{ getSearchTypeTitle(searchType) | translate }}\n </mat-radio-button>\n }\n </mat-radio-group>\n </mat-menu>\n</div>\n", styles: [":host .igo-search-selector-button button{border-radius:0!important;background-color:var(--mat-sys-surface-bright)}:host .igo-search-selector-button button .mat-ripple,:host .igo-search-selector-button button .mdc-icon-button__ripple{border-radius:0!important}:host .igo-search-selector-button{border-radius:0}:host .igo-search-selector-radio-group{display:inline-flex;flex-direction:column}:host .igo-search-selector-radio-group mat-radio-button{margin:5px}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i3$2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "directive", type: i3$2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i8$1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i8$1.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: IgoLanguageModule }, { kind: "pipe", type: i4.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
31582
31599
|
}
|
|
31583
31600
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImport: i0, type: SearchSelectorComponent, decorators: [{
|
|
31584
31601
|
type: Component,
|
|
@@ -31590,7 +31607,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
31590
31607
|
MatRadioModule,
|
|
31591
31608
|
IgoLanguageModule
|
|
31592
31609
|
], template: "<div class=\"igo-search-selector\">\n <button\n mat-icon-button\n class=\"igo-search-selector-button\"\n color=\"primary\"\n tooltip-position=\"below\"\n matTooltipShowDelay=\"500\"\n [matTooltip]=\"'igo.geo.search.menu.tooltip' | translate\"\n [matMenuTriggerFor]=\"searchSelectorMenu\"\n >\n <mat-icon>arrow_drop_down</mat-icon>\n </button>\n\n <mat-menu\n #searchSelectorMenu=\"matMenu\"\n class=\"no-border-radius\"\n xPosition=\"before\"\n yPosition=\"above\"\n >\n <mat-radio-group\n class=\"igo-search-selector-radio-group\"\n [value]=\"searchType()\"\n (change)=\"onSearchTypeChange($event.value)\"\n >\n @for (searchType of searchTypes(); track searchType) {\n <mat-radio-button [value]=\"searchType\">\n {{ getSearchTypeTitle(searchType) | translate }}\n </mat-radio-button>\n }\n </mat-radio-group>\n </mat-menu>\n</div>\n", styles: [":host .igo-search-selector-button button{border-radius:0!important;background-color:var(--mat-sys-surface-bright)}:host .igo-search-selector-button button .mat-ripple,:host .igo-search-selector-button button .mdc-icon-button__ripple{border-radius:0!important}:host .igo-search-selector-button{border-radius:0}:host .igo-search-selector-radio-group{display:inline-flex;flex-direction:column}:host .igo-search-selector-radio-group mat-radio-button{margin:5px}\n"] }]
|
|
31593
|
-
}], propDecorators: { searchTypes: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchTypes", required: false }] }], searchType: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchType", required: false }] }, { type: i0.Output, args: ["searchTypeChange"] }]
|
|
31610
|
+
}], propDecorators: { searchTypes: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchTypes", required: false }] }], searchType: [{ type: i0.Input, args: [{ isSignal: true, alias: "searchType", required: false }] }, { type: i0.Output, args: ["searchTypeChange"] }] } });
|
|
31594
31611
|
|
|
31595
31612
|
/**
|
|
31596
31613
|
* This component allows a user to select a search type yo enable. In it's
|
|
@@ -31858,7 +31875,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
31858
31875
|
* into that store. An event is always emitted when a research is completed.
|
|
31859
31876
|
*/
|
|
31860
31877
|
class SearchBarComponent {
|
|
31861
|
-
layerService = inject(LayerService);
|
|
31862
31878
|
configService = inject(ConfigService);
|
|
31863
31879
|
searchService = inject(SearchService);
|
|
31864
31880
|
searchSourceService = inject(SearchSourceService);
|
|
@@ -34902,7 +34918,9 @@ class ILayerSearchSource extends SearchSource {
|
|
|
34902
34918
|
return options;
|
|
34903
34919
|
}
|
|
34904
34920
|
extractResults(response, term) {
|
|
34905
|
-
return response.items
|
|
34921
|
+
return response.items
|
|
34922
|
+
.filter((data) => data.properties.format !== undefined)
|
|
34923
|
+
.map((data) => this.dataToResult(data, term, response));
|
|
34906
34924
|
}
|
|
34907
34925
|
dataToResult(data, term, response) {
|
|
34908
34926
|
const layerOptions = this.computeLayerOptions(data);
|
|
@@ -36203,7 +36221,7 @@ ws$) {
|
|
|
36203
36221
|
const relations = layer.dataSource.options.relations || [];
|
|
36204
36222
|
if (fields.length === 0) {
|
|
36205
36223
|
workspace
|
|
36206
|
-
.entityStore.entities$.pipe(skipWhile((val) => val.length === 0), take(1))
|
|
36224
|
+
.entityStore.entities$.pipe(skipWhile((val) => val.length === 0), take$1(1))
|
|
36207
36225
|
.subscribe((entities) => {
|
|
36208
36226
|
const ol = entities[0].ol;
|
|
36209
36227
|
const columnsFromFeatures = ol
|
|
@@ -36513,7 +36531,7 @@ class EditionWorkspaceService {
|
|
|
36513
36531
|
];
|
|
36514
36532
|
if (fields.length === 0) {
|
|
36515
36533
|
workspace
|
|
36516
|
-
.entityStore.entities$.pipe(skipWhile((val) => val.length === 0), take(1))
|
|
36534
|
+
.entityStore.entities$.pipe(skipWhile((val) => val.length === 0), take$1(1))
|
|
36517
36535
|
.subscribe((entities) => {
|
|
36518
36536
|
const ol = entities[0].ol;
|
|
36519
36537
|
const columnsFromFeatures = ol
|
|
@@ -37059,7 +37077,6 @@ class FeatureWorkspaceService {
|
|
|
37059
37077
|
configService = inject(ConfigService);
|
|
37060
37078
|
layerService = inject(LayerService);
|
|
37061
37079
|
propertyTypeDetectorService = inject(PropertyTypeDetectorService);
|
|
37062
|
-
capabilitiesService = inject(CapabilitiesService);
|
|
37063
37080
|
get zoomAuto() {
|
|
37064
37081
|
return this.storageService.get('zoomAuto');
|
|
37065
37082
|
}
|
|
@@ -37100,7 +37117,7 @@ class FeatureWorkspaceService {
|
|
|
37100
37117
|
sourceFields: layer.dataSource.options.sourceFields
|
|
37101
37118
|
});
|
|
37102
37119
|
const inMapExtentStrategy = new FeatureStoreInMapExtentStrategy({});
|
|
37103
|
-
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService
|
|
37120
|
+
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService);
|
|
37104
37121
|
const inMapResolutionStrategy = new FeatureStoreInMapResolutionStrategy({});
|
|
37105
37122
|
const selectedRecordStrategy = new EntityStoreFilterSelectionStrategy({});
|
|
37106
37123
|
const confQueryOverlayStyle = this.configService.getConfig('queryOverlayStyle');
|
|
@@ -37183,7 +37200,6 @@ class WfsWorkspaceService {
|
|
|
37183
37200
|
configService = inject(ConfigService);
|
|
37184
37201
|
layerService = inject(LayerService);
|
|
37185
37202
|
propertyTypeDetectorService = inject(PropertyTypeDetectorService);
|
|
37186
|
-
capabilitiesService = inject(CapabilitiesService);
|
|
37187
37203
|
get zoomAuto() {
|
|
37188
37204
|
return this.storageService.get('zoomAuto');
|
|
37189
37205
|
}
|
|
@@ -37220,7 +37236,7 @@ class WfsWorkspaceService {
|
|
|
37220
37236
|
store.bindLayer(layer);
|
|
37221
37237
|
const loadingStrategy = new FeatureStoreLoadingLayerStrategy({});
|
|
37222
37238
|
const inMapExtentStrategy = new FeatureStoreInMapExtentStrategy({});
|
|
37223
|
-
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService
|
|
37239
|
+
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService);
|
|
37224
37240
|
const inMapResolutionStrategy = new FeatureStoreInMapResolutionStrategy({});
|
|
37225
37241
|
const selectedRecordStrategy = new EntityStoreFilterSelectionStrategy({});
|
|
37226
37242
|
const confQueryOverlayStyle = this.configService.getConfig('queryOverlayStyle');
|
|
@@ -37276,7 +37292,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
37276
37292
|
class WmsWorkspaceService {
|
|
37277
37293
|
layerService = inject(LayerService);
|
|
37278
37294
|
storageService = inject(StorageService);
|
|
37279
|
-
capabilitiesService = inject(CapabilitiesService);
|
|
37280
37295
|
configService = inject(ConfigService);
|
|
37281
37296
|
propertyTypeDetectorService = inject(PropertyTypeDetectorService);
|
|
37282
37297
|
get zoomAuto() {
|
|
@@ -37426,7 +37441,7 @@ class WmsWorkspaceService {
|
|
|
37426
37441
|
store.bindLayer(layer);
|
|
37427
37442
|
const loadingStrategy = new FeatureStoreLoadingLayerStrategy({});
|
|
37428
37443
|
const inMapExtentStrategy = new FeatureStoreInMapExtentStrategy({});
|
|
37429
|
-
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService
|
|
37444
|
+
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService);
|
|
37430
37445
|
const inMapResolutionStrategy = new FeatureStoreInMapResolutionStrategy({});
|
|
37431
37446
|
const selectedRecordStrategy = new EntityStoreFilterSelectionStrategy({});
|
|
37432
37447
|
const confQueryOverlayStyle = this.configService.getConfig('queryOverlayStyle');
|
|
@@ -40261,7 +40276,7 @@ class PrintComponent {
|
|
|
40261
40276
|
if (data.isPrintService === true) {
|
|
40262
40277
|
this.printService
|
|
40263
40278
|
.print(this.map(), data)
|
|
40264
|
-
.pipe(take(1))
|
|
40279
|
+
.pipe(take$1(1))
|
|
40265
40280
|
.subscribe(() => {
|
|
40266
40281
|
this.disabled$.next(false);
|
|
40267
40282
|
});
|
|
@@ -40280,7 +40295,7 @@ class PrintComponent {
|
|
|
40280
40295
|
this.printService.defineNbFileToProcess(nbFileToProcess);
|
|
40281
40296
|
this.printService
|
|
40282
40297
|
.downloadMapImage(this.map(), data.resolution, data.imageFormat, data.showProjection, data.showScale, data.title, data.subtitle, data.comment, data.doZipFile, data.legendPosition, data.showNorthArrow)
|
|
40283
|
-
.pipe(take(1))
|
|
40298
|
+
.pipe(take$1(1))
|
|
40284
40299
|
.subscribe(() => {
|
|
40285
40300
|
this.disabled$.next(false);
|
|
40286
40301
|
});
|
|
@@ -42050,5 +42065,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
42050
42065
|
* Generated bundle index. Do not edit.
|
|
42051
42066
|
*/
|
|
42052
42067
|
|
|
42053
|
-
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, 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, FeatureDetailsPanelComponent, FeatureFormComponent, FeatureMotion, FeatureStore, FeatureStoreInMapExtentStrategy, FeatureStoreInMapResolutionStrategy, FeatureStoreLoadingLayerStrategy, FeatureStoreLoadingStrategy, FeatureStoreSearchIndexStrategy, FeatureStoreSelectionStrategy, FeatureWorkspace, FeatureWorkspaceService, FilterableDataSourcePipe, FontType, GEOMETRY_FORM_FIELD_DIRECTIVES, 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, InteractiveSelectionFormWidget, LAYER, LAYER_DIRECTIVES, LAYER_PERSISTENCE, LabelType, LaneType, Layer, LayerBase, LayerController, LayerExtensionManager, 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, OFFLINE_LAYER_RESTORE, 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, OverlayService, 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, TooltipType, TrackFeatureButtonComponent, TypeCapabilities, TypeCatalog, VECTOR_LAYER_EXTENSIONS, VectorLayer, VectorTileLayer, VectorWatcher, WFSDataSource, WFSService, WMSDataSource, WMTSDataSource, WORKSPACE_SEARCH_SOURCE_OPTIONS, WakeLockButtonComponent, WebSocketDataSource, WfsWorkspace, WfsWorkspaceService, WktService, WorkspaceSearchSource, WorkspaceSelectorDirective, WorkspaceUpdatorDirective, XYZDataSource, ZoomButtonComponent, addLinearRingToOlPolygon, addOrRemoveLayer, addRouteToRoutesFeatureStore, addStopToStopsFeatureStore, addStopToStore, baseOlStyle, bufferOlGeometry, buildUrl, buildWfsBatchUrls, 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, 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 };
|
|
42068
|
+
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, 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, FeatureDetailsPanelComponent, FeatureFormComponent, FeatureMotion, FeatureStore, FeatureStoreInMapExtentStrategy, FeatureStoreInMapResolutionStrategy, FeatureStoreLoadingLayerStrategy, FeatureStoreLoadingStrategy, FeatureStoreSearchIndexStrategy, FeatureStoreSelectionStrategy, FeatureWorkspace, FeatureWorkspaceService, FilterableDataSourcePipe, FontType, GEOMETRY_FORM_FIELD_DIRECTIVES, 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, InteractiveSelectionFormWidget, LAYER, LAYER_DIRECTIVES, LAYER_PERSISTENCE, LabelType, LaneType, Layer, LayerBase, LayerController, LayerExtensionManager, 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, OFFLINE_LAYER_RESTORE, 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, OverlayService, PROJECTION_PROVIDER_OPTIONS, 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, TooltipType, TrackFeatureButtonComponent, TypeCapabilities, TypeCatalog, VECTOR_LAYER_EXTENSIONS, VectorLayer, VectorTileLayer, VectorWatcher, WFSDataSource, WFSService, WMSDataSource, WMTSDataSource, WORKSPACE_SEARCH_SOURCE_OPTIONS, WakeLockButtonComponent, WebSocketDataSource, WfsWorkspace, WfsWorkspaceService, WktService, WorkspaceSearchSource, WorkspaceSelectorDirective, WorkspaceUpdatorDirective, XYZDataSource, ZoomButtonComponent, addLinearRingToOlPolygon, addOrRemoveLayer, addRouteToRoutesFeatureStore, addStopToStopsFeatureStore, addStopToStore, baseOlStyle, bufferOlGeometry, buildUrl, buildWfsBatchUrls, 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, provideOgcFilterWidget, provideOptionsApi, provideOsrmDirectionsSource, provideProjection, 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 };
|
|
42054
42069
|
//# sourceMappingURL=igo2-geo.mjs.map
|