@igo2/geo 21.0.0-next.22 → 21.0.0-next.24
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 +49 -39
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/package.json +4 -4
- package/types/igo2-geo.d.ts +308 -309
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';
|
|
@@ -4208,16 +4208,16 @@ class LayerBase {
|
|
|
4208
4208
|
return this.ol.getMinResolution();
|
|
4209
4209
|
}
|
|
4210
4210
|
set visible(value) {
|
|
4211
|
-
if (value === this.
|
|
4211
|
+
if (value === this._visible$.value) {
|
|
4212
4212
|
return;
|
|
4213
4213
|
}
|
|
4214
4214
|
this.ol.setVisible(value);
|
|
4215
4215
|
this._visible$.next(value);
|
|
4216
4216
|
}
|
|
4217
4217
|
get visible() {
|
|
4218
|
-
return this._visible$.value ??
|
|
4218
|
+
return this._visible$.value ?? true; // Default to true if undefined
|
|
4219
4219
|
}
|
|
4220
|
-
_visible$ = new BehaviorSubject(
|
|
4220
|
+
_visible$ = new BehaviorSubject(undefined);
|
|
4221
4221
|
visible$ = this._visible$.asObservable();
|
|
4222
4222
|
get parent() {
|
|
4223
4223
|
return this.parent$.value;
|
|
@@ -4848,7 +4848,6 @@ class ClusterDataSource extends FeatureDataSource {
|
|
|
4848
4848
|
}
|
|
4849
4849
|
|
|
4850
4850
|
class VectorWatcher extends Watcher {
|
|
4851
|
-
id;
|
|
4852
4851
|
loaded = 0;
|
|
4853
4852
|
loading = 0;
|
|
4854
4853
|
onFeatureLoadStart = () => this.handleLoadStart();
|
|
@@ -4857,7 +4856,6 @@ class VectorWatcher extends Watcher {
|
|
|
4857
4856
|
constructor(layer) {
|
|
4858
4857
|
super();
|
|
4859
4858
|
this.layer = layer;
|
|
4860
|
-
this.id = uuid();
|
|
4861
4859
|
}
|
|
4862
4860
|
watch() {
|
|
4863
4861
|
const olSource = this.getWatchableSource();
|
|
@@ -10885,7 +10883,6 @@ class DataSourceService {
|
|
|
10885
10883
|
ogcFilterService = inject(OGCFilterService);
|
|
10886
10884
|
languageService = inject(LanguageService);
|
|
10887
10885
|
messageService = inject(MessageService);
|
|
10888
|
-
xhrInterceptor = inject(XHR_INTERCEPTOR, { optional: true });
|
|
10889
10886
|
createAsyncDataSource(options, detailedContextUri) {
|
|
10890
10887
|
if (!options.type) {
|
|
10891
10888
|
console.error(options);
|
|
@@ -14933,19 +14930,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
14933
14930
|
args: ['mouseout']
|
|
14934
14931
|
}] } });
|
|
14935
14932
|
|
|
14933
|
+
const PROJECTION_PROVIDER_OPTIONS = new InjectionToken('PROJECTION_PROVIDER_OPTIONS');
|
|
14936
14934
|
/**
|
|
14937
14935
|
* When injected, this service automatically registers and
|
|
14938
14936
|
* projection defined in the application config. A custom projection
|
|
14939
14937
|
* needs to be registered to be usable by OL.
|
|
14940
14938
|
*/
|
|
14941
14939
|
class ProjectionService {
|
|
14942
|
-
config = inject(ConfigService);
|
|
14940
|
+
config = inject(ConfigService, { optional: true });
|
|
14941
|
+
options = inject(PROJECTION_PROVIDER_OPTIONS, { optional: true });
|
|
14943
14942
|
constructor() {
|
|
14944
|
-
|
|
14945
|
-
|
|
14946
|
-
|
|
14947
|
-
this.
|
|
14948
|
-
});
|
|
14943
|
+
this.registerProjections(this.options?.projections ?? []);
|
|
14944
|
+
this.config?.isLoaded$
|
|
14945
|
+
.pipe(filter$1(Boolean), take(1))
|
|
14946
|
+
.subscribe(() => this.registerConfiguredProjections());
|
|
14949
14947
|
// register all utm zones
|
|
14950
14948
|
for (let utmZone = 1; utmZone < 61; utmZone++) {
|
|
14951
14949
|
const code = utmZone < 10 ? `EPSG:3260${utmZone}` : `EPSG:326${utmZone}`;
|
|
@@ -14979,6 +14977,16 @@ class ProjectionService {
|
|
|
14979
14977
|
this.registerProjection(proj);
|
|
14980
14978
|
}
|
|
14981
14979
|
}
|
|
14980
|
+
registerConfiguredProjections() {
|
|
14981
|
+
const projections = this.config?.getConfig('projections') || [];
|
|
14982
|
+
this.registerProjections(projections);
|
|
14983
|
+
}
|
|
14984
|
+
registerProjections(projections) {
|
|
14985
|
+
projections.forEach((projection) => {
|
|
14986
|
+
projection.alias = projection.alias ? projection.alias : projection.code;
|
|
14987
|
+
this.registerProjection(projection);
|
|
14988
|
+
});
|
|
14989
|
+
}
|
|
14982
14990
|
/**
|
|
14983
14991
|
* Define a proj4 projection and register it in OL
|
|
14984
14992
|
* @param projection Projection
|
|
@@ -15000,6 +15008,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
15000
15008
|
}]
|
|
15001
15009
|
}], ctorParameters: () => [] });
|
|
15002
15010
|
|
|
15011
|
+
function provideProjection(options = {}) {
|
|
15012
|
+
return makeEnvironmentProviders([
|
|
15013
|
+
{
|
|
15014
|
+
provide: PROJECTION_PROVIDER_OPTIONS,
|
|
15015
|
+
useValue: options
|
|
15016
|
+
},
|
|
15017
|
+
provideAppInitializer(() => {
|
|
15018
|
+
inject(ProjectionService);
|
|
15019
|
+
})
|
|
15020
|
+
]);
|
|
15021
|
+
}
|
|
15022
|
+
|
|
15003
15023
|
/**
|
|
15004
15024
|
* Return a number of zone MTM for a longitude for province of Quebec only
|
|
15005
15025
|
* @param lon number
|
|
@@ -21281,7 +21301,6 @@ class FeatureStoreInMapResolutionStrategy extends EntityStoreStrategy {
|
|
|
21281
21301
|
class GeoPropertiesStrategy extends EntityStoreStrategy {
|
|
21282
21302
|
options;
|
|
21283
21303
|
propertyTypeDetectorService;
|
|
21284
|
-
capabilitiesService;
|
|
21285
21304
|
/**
|
|
21286
21305
|
* Subscription to the store's OL source changes
|
|
21287
21306
|
*/
|
|
@@ -21292,11 +21311,10 @@ class GeoPropertiesStrategy extends EntityStoreStrategy {
|
|
|
21292
21311
|
* The map the layer is bound to
|
|
21293
21312
|
*/
|
|
21294
21313
|
map;
|
|
21295
|
-
constructor(options, propertyTypeDetectorService
|
|
21314
|
+
constructor(options, propertyTypeDetectorService) {
|
|
21296
21315
|
super(options);
|
|
21297
21316
|
this.options = options;
|
|
21298
21317
|
this.propertyTypeDetectorService = propertyTypeDetectorService;
|
|
21299
|
-
this.capabilitiesService = capabilitiesService;
|
|
21300
21318
|
this.map = options.map;
|
|
21301
21319
|
}
|
|
21302
21320
|
/**
|
|
@@ -26648,6 +26666,7 @@ class GeometryFormFieldInputComponent {
|
|
|
26648
26666
|
registerOnTouched(fn) {
|
|
26649
26667
|
this.onTouched = fn;
|
|
26650
26668
|
}
|
|
26669
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-private-class-members
|
|
26651
26670
|
onTouched = () => { };
|
|
26652
26671
|
/**
|
|
26653
26672
|
* Implemented as part of ControlValueAccessor.
|
|
@@ -27851,7 +27870,7 @@ class SpatialFilterListComponent {
|
|
|
27851
27870
|
this.inFlightIds.add(id);
|
|
27852
27871
|
this.spatialFilterService
|
|
27853
27872
|
.loadItemById(zone, this.queryType)
|
|
27854
|
-
?.pipe(take(1), finalize(() => this.inFlightIds.delete(id)))
|
|
27873
|
+
?.pipe(take$1(1), finalize(() => this.inFlightIds.delete(id)))
|
|
27855
27874
|
.subscribe((featureGeom) => {
|
|
27856
27875
|
this.addZone.emit(featureGeom);
|
|
27857
27876
|
this.selectedZones.push(featureGeom);
|
|
@@ -30061,7 +30080,7 @@ class ImportExportComponent {
|
|
|
30061
30080
|
layer.dataSource.ol.getFeatures().length === 0) {
|
|
30062
30081
|
previousSpecs.push({
|
|
30063
30082
|
id: layer.id,
|
|
30064
|
-
visible: layer.visible,
|
|
30083
|
+
visible: layer.visible ?? true,
|
|
30065
30084
|
opacity: layer.opacity,
|
|
30066
30085
|
queryable: layer.queryable
|
|
30067
30086
|
});
|
|
@@ -31545,10 +31564,6 @@ class SearchSelectorComponent {
|
|
|
31545
31564
|
*/
|
|
31546
31565
|
searchTypes = input(SEARCH_TYPES, ...(ngDevMode ? [{ debugName: "searchTypes" }] : /* istanbul ignore next */ []));
|
|
31547
31566
|
searchType = model(...(ngDevMode ? [undefined, { debugName: "searchType" }] : /* istanbul ignore next */ []));
|
|
31548
|
-
/**
|
|
31549
|
-
* Event emitted when the enabled search type changes
|
|
31550
|
-
*/
|
|
31551
|
-
searchTypeChange = output();
|
|
31552
31567
|
ngOnInit() {
|
|
31553
31568
|
this.onSetSearchType(this.searchType());
|
|
31554
31569
|
}
|
|
@@ -31576,10 +31591,9 @@ class SearchSelectorComponent {
|
|
|
31576
31591
|
return;
|
|
31577
31592
|
}
|
|
31578
31593
|
this.searchSourceService.enableSourcesByType(searchType);
|
|
31579
|
-
this.searchTypeChange.emit(searchType);
|
|
31580
31594
|
}
|
|
31581
31595
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.19", ngImport: i0, type: SearchSelectorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
31582
|
-
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"
|
|
31596
|
+
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 });
|
|
31583
31597
|
}
|
|
31584
31598
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImport: i0, type: SearchSelectorComponent, decorators: [{
|
|
31585
31599
|
type: Component,
|
|
@@ -31591,7 +31605,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
31591
31605
|
MatRadioModule,
|
|
31592
31606
|
IgoLanguageModule
|
|
31593
31607
|
], 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"] }]
|
|
31594
|
-
}], 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"] }]
|
|
31608
|
+
}], 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"] }] } });
|
|
31595
31609
|
|
|
31596
31610
|
/**
|
|
31597
31611
|
* This component allows a user to select a search type yo enable. In it's
|
|
@@ -31859,7 +31873,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
31859
31873
|
* into that store. An event is always emitted when a research is completed.
|
|
31860
31874
|
*/
|
|
31861
31875
|
class SearchBarComponent {
|
|
31862
|
-
layerService = inject(LayerService);
|
|
31863
31876
|
configService = inject(ConfigService);
|
|
31864
31877
|
searchService = inject(SearchService);
|
|
31865
31878
|
searchSourceService = inject(SearchSourceService);
|
|
@@ -36204,7 +36217,7 @@ ws$) {
|
|
|
36204
36217
|
const relations = layer.dataSource.options.relations || [];
|
|
36205
36218
|
if (fields.length === 0) {
|
|
36206
36219
|
workspace
|
|
36207
|
-
.entityStore.entities$.pipe(skipWhile((val) => val.length === 0), take(1))
|
|
36220
|
+
.entityStore.entities$.pipe(skipWhile((val) => val.length === 0), take$1(1))
|
|
36208
36221
|
.subscribe((entities) => {
|
|
36209
36222
|
const ol = entities[0].ol;
|
|
36210
36223
|
const columnsFromFeatures = ol
|
|
@@ -36514,7 +36527,7 @@ class EditionWorkspaceService {
|
|
|
36514
36527
|
];
|
|
36515
36528
|
if (fields.length === 0) {
|
|
36516
36529
|
workspace
|
|
36517
|
-
.entityStore.entities$.pipe(skipWhile((val) => val.length === 0), take(1))
|
|
36530
|
+
.entityStore.entities$.pipe(skipWhile((val) => val.length === 0), take$1(1))
|
|
36518
36531
|
.subscribe((entities) => {
|
|
36519
36532
|
const ol = entities[0].ol;
|
|
36520
36533
|
const columnsFromFeatures = ol
|
|
@@ -37060,7 +37073,6 @@ class FeatureWorkspaceService {
|
|
|
37060
37073
|
configService = inject(ConfigService);
|
|
37061
37074
|
layerService = inject(LayerService);
|
|
37062
37075
|
propertyTypeDetectorService = inject(PropertyTypeDetectorService);
|
|
37063
|
-
capabilitiesService = inject(CapabilitiesService);
|
|
37064
37076
|
get zoomAuto() {
|
|
37065
37077
|
return this.storageService.get('zoomAuto');
|
|
37066
37078
|
}
|
|
@@ -37101,7 +37113,7 @@ class FeatureWorkspaceService {
|
|
|
37101
37113
|
sourceFields: layer.dataSource.options.sourceFields
|
|
37102
37114
|
});
|
|
37103
37115
|
const inMapExtentStrategy = new FeatureStoreInMapExtentStrategy({});
|
|
37104
|
-
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService
|
|
37116
|
+
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService);
|
|
37105
37117
|
const inMapResolutionStrategy = new FeatureStoreInMapResolutionStrategy({});
|
|
37106
37118
|
const selectedRecordStrategy = new EntityStoreFilterSelectionStrategy({});
|
|
37107
37119
|
const confQueryOverlayStyle = this.configService.getConfig('queryOverlayStyle');
|
|
@@ -37184,7 +37196,6 @@ class WfsWorkspaceService {
|
|
|
37184
37196
|
configService = inject(ConfigService);
|
|
37185
37197
|
layerService = inject(LayerService);
|
|
37186
37198
|
propertyTypeDetectorService = inject(PropertyTypeDetectorService);
|
|
37187
|
-
capabilitiesService = inject(CapabilitiesService);
|
|
37188
37199
|
get zoomAuto() {
|
|
37189
37200
|
return this.storageService.get('zoomAuto');
|
|
37190
37201
|
}
|
|
@@ -37221,7 +37232,7 @@ class WfsWorkspaceService {
|
|
|
37221
37232
|
store.bindLayer(layer);
|
|
37222
37233
|
const loadingStrategy = new FeatureStoreLoadingLayerStrategy({});
|
|
37223
37234
|
const inMapExtentStrategy = new FeatureStoreInMapExtentStrategy({});
|
|
37224
|
-
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService
|
|
37235
|
+
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService);
|
|
37225
37236
|
const inMapResolutionStrategy = new FeatureStoreInMapResolutionStrategy({});
|
|
37226
37237
|
const selectedRecordStrategy = new EntityStoreFilterSelectionStrategy({});
|
|
37227
37238
|
const confQueryOverlayStyle = this.configService.getConfig('queryOverlayStyle');
|
|
@@ -37277,7 +37288,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
37277
37288
|
class WmsWorkspaceService {
|
|
37278
37289
|
layerService = inject(LayerService);
|
|
37279
37290
|
storageService = inject(StorageService);
|
|
37280
|
-
capabilitiesService = inject(CapabilitiesService);
|
|
37281
37291
|
configService = inject(ConfigService);
|
|
37282
37292
|
propertyTypeDetectorService = inject(PropertyTypeDetectorService);
|
|
37283
37293
|
get zoomAuto() {
|
|
@@ -37427,7 +37437,7 @@ class WmsWorkspaceService {
|
|
|
37427
37437
|
store.bindLayer(layer);
|
|
37428
37438
|
const loadingStrategy = new FeatureStoreLoadingLayerStrategy({});
|
|
37429
37439
|
const inMapExtentStrategy = new FeatureStoreInMapExtentStrategy({});
|
|
37430
|
-
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService
|
|
37440
|
+
const geoPropertiesStrategy = new GeoPropertiesStrategy({ map }, this.propertyTypeDetectorService);
|
|
37431
37441
|
const inMapResolutionStrategy = new FeatureStoreInMapResolutionStrategy({});
|
|
37432
37442
|
const selectedRecordStrategy = new EntityStoreFilterSelectionStrategy({});
|
|
37433
37443
|
const confQueryOverlayStyle = this.configService.getConfig('queryOverlayStyle');
|
|
@@ -40262,7 +40272,7 @@ class PrintComponent {
|
|
|
40262
40272
|
if (data.isPrintService === true) {
|
|
40263
40273
|
this.printService
|
|
40264
40274
|
.print(this.map(), data)
|
|
40265
|
-
.pipe(take(1))
|
|
40275
|
+
.pipe(take$1(1))
|
|
40266
40276
|
.subscribe(() => {
|
|
40267
40277
|
this.disabled$.next(false);
|
|
40268
40278
|
});
|
|
@@ -40281,7 +40291,7 @@ class PrintComponent {
|
|
|
40281
40291
|
this.printService.defineNbFileToProcess(nbFileToProcess);
|
|
40282
40292
|
this.printService
|
|
40283
40293
|
.downloadMapImage(this.map(), data.resolution, data.imageFormat, data.showProjection, data.showScale, data.title, data.subtitle, data.comment, data.doZipFile, data.legendPosition, data.showNorthArrow)
|
|
40284
|
-
.pipe(take(1))
|
|
40294
|
+
.pipe(take$1(1))
|
|
40285
40295
|
.subscribe(() => {
|
|
40286
40296
|
this.disabled$.next(false);
|
|
40287
40297
|
});
|
|
@@ -42051,5 +42061,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.19", ngImpo
|
|
|
42051
42061
|
* Generated bundle index. Do not edit.
|
|
42052
42062
|
*/
|
|
42053
42063
|
|
|
42054
|
-
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 };
|
|
42064
|
+
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 };
|
|
42055
42065
|
//# sourceMappingURL=igo2-geo.mjs.map
|