@igo2/geo 20.0.0 → 20.1.0-next.1
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 +3963 -4691
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/index.d.ts +547 -560
- package/locale/en.geo.json +27 -3
- package/locale/fr.geo.json +27 -3
- package/package.json +5 -7
package/index.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { PipeTransform, AfterViewInit, OnInit, OnDestroy,
|
|
2
|
+
import { PipeTransform, AfterViewInit, OnInit, OnDestroy, AfterContentInit, Provider, EventEmitter, ModuleWithProviders, ElementRef, TemplateRef, AfterContentChecked, WritableSignal, InjectionToken, EnvironmentProviders } from '@angular/core';
|
|
3
3
|
import { AuthInterceptor } from '@igo2/auth';
|
|
4
4
|
import * as i2 from '@igo2/core/message';
|
|
5
5
|
import { Message, MessageService } from '@igo2/core/message';
|
|
6
6
|
import OlLayer from 'ol/layer/Layer';
|
|
7
7
|
import { Source } from 'ol/source';
|
|
8
8
|
import * as rxjs from 'rxjs';
|
|
9
|
-
import { Observable, Subscription, BehaviorSubject, Subject
|
|
9
|
+
import { Observable, Subscription, BehaviorSubject, Subject } from 'rxjs';
|
|
10
10
|
import olSourceCluster from 'ol/source/Cluster';
|
|
11
11
|
import olSource from 'ol/source/Source';
|
|
12
12
|
import olSourceVector from 'ol/source/Vector';
|
|
13
13
|
import { Units } from 'ol/control/ScaleLine';
|
|
14
14
|
import OlGeometry, { Type } from 'ol/geom/Geometry';
|
|
15
15
|
import { Preset, Tokenizer, Encoders, Document } from 'flexsearch';
|
|
16
|
-
import { Watcher, SubjectStatus } from '@igo2/utils';
|
|
16
|
+
import { Watcher, SubjectStatus, TimeFrame, resolveDate } from '@igo2/utils';
|
|
17
17
|
import * as olproj from 'ol/proj';
|
|
18
18
|
import { ProjectionLike, Projection as Projection$1 } from 'ol/proj';
|
|
19
19
|
import * as ol from 'ol';
|
|
@@ -46,6 +46,7 @@ import { HttpClient, HttpParameterCodec } from '@angular/common/http';
|
|
|
46
46
|
import { Extent } from 'ol/extent';
|
|
47
47
|
import olProjection from 'ol/proj/Projection';
|
|
48
48
|
import { UntypedFormGroup, UntypedFormControl, FormControl, ControlValueAccessor, NgControl } from '@angular/forms';
|
|
49
|
+
import * as _igo2_common_entity from '@igo2/common/entity';
|
|
49
50
|
import { EntityStore, EntityKey, EntityStoreOptions, EntityStoreStrategyOptions, EntityStoreStrategy, EntityTableTemplate, EntityTableComponent, EntityTableColumn, EntityState, EntityTableColumnRenderer, EntityRecord, EntityTableButton, EntityStoreFilterCustomFuncStrategy } from '@igo2/common/entity';
|
|
50
51
|
import { Position, Geometry, GeoJsonGeometryTypes } from 'geojson';
|
|
51
52
|
import { ConfigService } from '@igo2/core/config';
|
|
@@ -60,9 +61,11 @@ import olLayerVectorTile from 'ol/layer/VectorTile';
|
|
|
60
61
|
import olSourceVectorTile from 'ol/source/VectorTile';
|
|
61
62
|
import * as _igo2_geo from '@igo2/geo';
|
|
62
63
|
import { FloatLabelType, MatFormFieldAppearance } from '@angular/material/form-field';
|
|
63
|
-
import { MatAutocompleteTrigger, MatAutocomplete } from '@angular/material/autocomplete';
|
|
64
|
+
import { MatAutocompleteTrigger, MatAutocomplete, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
64
65
|
import { MatSelect } from '@angular/material/select';
|
|
65
66
|
import { MatSlider, MatSliderChange } from '@angular/material/slider';
|
|
67
|
+
import { DatepickerComponent } from '@igo2/common/datepicker';
|
|
68
|
+
import { TimepickerComponent } from '@igo2/common/timepicker';
|
|
66
69
|
import { SelectionModel } from '@angular/cdk/collections';
|
|
67
70
|
import { NestedTreeControl, FlatTreeControl } from '@angular/cdk/tree';
|
|
68
71
|
import { MatTreeNestedDataSource, MatTreeFlattener, MatTreeFlatDataSource } from '@angular/material/tree';
|
|
@@ -291,6 +294,7 @@ interface DataSourceOptions {
|
|
|
291
294
|
download?: DownloadOptions;
|
|
292
295
|
edition?: EditionOptions;
|
|
293
296
|
relations?: RelationOptions[];
|
|
297
|
+
fieldNameGeometry?: string;
|
|
294
298
|
}
|
|
295
299
|
interface SourceFieldsOptionsParams {
|
|
296
300
|
name: any;
|
|
@@ -771,7 +775,8 @@ declare class OgcFilterWriter {
|
|
|
771
775
|
verifyMultipleEnableds(selectors: any): any;
|
|
772
776
|
formatGroupAndFilter(ogcFilters: OgcFiltersOptions, selectors: any): any[];
|
|
773
777
|
formatProcessedOgcFilter(processedFilter: string, layersOrTypenames: string): string;
|
|
774
|
-
parseFilterOptionDate
|
|
778
|
+
private parseFilterOptionDate;
|
|
779
|
+
private handleBeginEnd;
|
|
775
780
|
}
|
|
776
781
|
|
|
777
782
|
declare enum SpatialFilterQueryType {
|
|
@@ -782,7 +787,10 @@ declare enum SpatialFilterQueryType {
|
|
|
782
787
|
CircProv = "CircProv",
|
|
783
788
|
DirReg = "DirReg",
|
|
784
789
|
MRC = "MRC",
|
|
785
|
-
RegTour = "RegTour"
|
|
790
|
+
RegTour = "RegTour",
|
|
791
|
+
RSS = "RSS",
|
|
792
|
+
RLS = "RLS",
|
|
793
|
+
CLSC = "CLSC"
|
|
786
794
|
}
|
|
787
795
|
declare enum SpatialFilterType {
|
|
788
796
|
Predefined = "Predefined",
|
|
@@ -2207,11 +2215,11 @@ declare class PointerPositionDirective implements OnInit, OnDestroy {
|
|
|
2207
2215
|
/**
|
|
2208
2216
|
* Delay before emitting an event
|
|
2209
2217
|
*/
|
|
2210
|
-
pointerPositionDelay: number
|
|
2218
|
+
readonly pointerPositionDelay: i0.InputSignal<number>;
|
|
2211
2219
|
/**
|
|
2212
2220
|
* Event emitted when the pointer move, delayed by pointerMoveDelay
|
|
2213
2221
|
*/
|
|
2214
|
-
pointerPositionCoord:
|
|
2222
|
+
readonly pointerPositionCoord: i0.OutputEmitterRef<[number, number]>;
|
|
2215
2223
|
/**
|
|
2216
2224
|
* IGO map
|
|
2217
2225
|
* @internal
|
|
@@ -2250,7 +2258,7 @@ declare class PointerPositionDirective implements OnInit, OnDestroy {
|
|
|
2250
2258
|
*/
|
|
2251
2259
|
private onPointerEvent;
|
|
2252
2260
|
static ɵfac: i0.ɵɵFactoryDeclaration<PointerPositionDirective, never>;
|
|
2253
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PointerPositionDirective, "[igoPointerPosition]", never, { "pointerPositionDelay": { "alias": "pointerPositionDelay"; "required": false; }; }, { "pointerPositionCoord": "pointerPositionCoord"; }, never, never, true, never>;
|
|
2261
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PointerPositionDirective, "[igoPointerPosition]", never, { "pointerPositionDelay": { "alias": "pointerPositionDelay"; "required": false; "isSignal": true; }; }, { "pointerPositionCoord": "pointerPositionCoord"; }, never, never, true, never>;
|
|
2254
2262
|
}
|
|
2255
2263
|
|
|
2256
2264
|
/**
|
|
@@ -2349,11 +2357,11 @@ declare class HoverFeatureDirective implements OnInit, OnDestroy {
|
|
|
2349
2357
|
/**
|
|
2350
2358
|
* The delay where the mouse must be motionless before trigger the reverse search
|
|
2351
2359
|
*/
|
|
2352
|
-
igoHoverFeatureDelay: number
|
|
2360
|
+
readonly igoHoverFeatureDelay: i0.InputSignal<number>;
|
|
2353
2361
|
/**
|
|
2354
2362
|
* If the user has enabled or not the directive
|
|
2355
2363
|
*/
|
|
2356
|
-
igoHoverFeatureEnabled: boolean
|
|
2364
|
+
readonly igoHoverFeatureEnabled: i0.InputSignal<boolean>;
|
|
2357
2365
|
mouseout(): void;
|
|
2358
2366
|
/**
|
|
2359
2367
|
* IGO map
|
|
@@ -2430,7 +2438,7 @@ declare class HoverFeatureDirective implements OnInit, OnDestroy {
|
|
|
2430
2438
|
*/
|
|
2431
2439
|
private clearLayer;
|
|
2432
2440
|
static ɵfac: i0.ɵɵFactoryDeclaration<HoverFeatureDirective, never>;
|
|
2433
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<HoverFeatureDirective, "[igoHoverFeature]", never, { "igoHoverFeatureDelay": { "alias": "igoHoverFeatureDelay"; "required": false; }; "igoHoverFeatureEnabled": { "alias": "igoHoverFeatureEnabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
2441
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HoverFeatureDirective, "[igoHoverFeature]", never, { "igoHoverFeatureDelay": { "alias": "igoHoverFeatureDelay"; "required": false; "isSignal": true; }; "igoHoverFeatureEnabled": { "alias": "igoHoverFeatureEnabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2434
2442
|
}
|
|
2435
2443
|
|
|
2436
2444
|
/**
|
|
@@ -2665,17 +2673,41 @@ declare class SpatialFilterService {
|
|
|
2665
2673
|
MRC: string;
|
|
2666
2674
|
Mun: string;
|
|
2667
2675
|
RegTour: string;
|
|
2676
|
+
RSS: string;
|
|
2677
|
+
RLS: string;
|
|
2678
|
+
CLSC: string;
|
|
2679
|
+
tours: string;
|
|
2668
2680
|
bornes: string;
|
|
2669
2681
|
hydro: string;
|
|
2670
2682
|
routes: string;
|
|
2683
|
+
matricule: string;
|
|
2684
|
+
aggloMun: string;
|
|
2685
|
+
adresses: string;
|
|
2686
|
+
unites: string;
|
|
2671
2687
|
};
|
|
2672
2688
|
constructor();
|
|
2673
2689
|
getKeyByValue(object: any, value: any): string;
|
|
2674
2690
|
loadFilterList(type: SpatialFilterQueryType): Observable<Feature[]>;
|
|
2675
2691
|
loadThematicsList(): Observable<SpatialFilterThematic[]>;
|
|
2676
|
-
|
|
2692
|
+
loadFilterItems(features: Feature[], itemType: SpatialFilterItemType, options: {
|
|
2693
|
+
type: SpatialFilterQueryType;
|
|
2694
|
+
thematics: SpatialFilterThematic[];
|
|
2695
|
+
buffer?: number;
|
|
2696
|
+
}): Observable<Feature<Record<string, any>>[]>;
|
|
2677
2697
|
loadItemById(feature: Feature, type: SpatialFilterQueryType): Observable<Feature>;
|
|
2678
2698
|
loadBufferGeometry(feature: Feature, filterType: SpatialFilterType, buffer?: number, type?: SpatialFilterQueryType): Observable<Feature>;
|
|
2699
|
+
private getHttpParams;
|
|
2700
|
+
private doGet;
|
|
2701
|
+
private doPost;
|
|
2702
|
+
private buildMetaForAddress;
|
|
2703
|
+
private buildMetaForThematic;
|
|
2704
|
+
private loadPredefinedFilterItems;
|
|
2705
|
+
private loadDrawFilterItems;
|
|
2706
|
+
loadBuffersGeometry(features: Feature[], options: {
|
|
2707
|
+
filterType: SpatialFilterType;
|
|
2708
|
+
buffer?: number;
|
|
2709
|
+
type?: SpatialFilterQueryType;
|
|
2710
|
+
}): Observable<Feature[]>;
|
|
2679
2711
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpatialFilterService, never>;
|
|
2680
2712
|
static ɵprov: i0.ɵɵInjectableDeclaration<SpatialFilterService>;
|
|
2681
2713
|
}
|
|
@@ -2684,30 +2716,30 @@ declare class MapBrowserComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
2684
2716
|
private activityService;
|
|
2685
2717
|
private activityId;
|
|
2686
2718
|
private status$$;
|
|
2687
|
-
map: IgoMap
|
|
2688
|
-
|
|
2689
|
-
set view(value: MapViewOptions);
|
|
2690
|
-
private _view;
|
|
2719
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
2720
|
+
readonly view: i0.ModelSignal<MapViewOptions>;
|
|
2691
2721
|
get controls(): MapControlsOptions;
|
|
2692
2722
|
set controls(value: MapControlsOptions);
|
|
2693
2723
|
private _controls;
|
|
2694
2724
|
id: string;
|
|
2725
|
+
constructor();
|
|
2695
2726
|
ngOnInit(): void;
|
|
2696
2727
|
ngAfterViewInit(): void;
|
|
2697
2728
|
ngOnDestroy(): void;
|
|
2729
|
+
setView(view: MapViewOptions): void;
|
|
2698
2730
|
private handleStatusChange;
|
|
2699
2731
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapBrowserComponent, never>;
|
|
2700
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapBrowserComponent, "igo-map-browser", never, { "map": { "alias": "map"; "required": false; }; "view": { "alias": "view"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
2732
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapBrowserComponent, "igo-map-browser", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "view": { "alias": "view"; "required": false; "isSignal": true; }; }, { "view": "viewChange"; }, never, ["*"], true, never>;
|
|
2701
2733
|
}
|
|
2702
2734
|
|
|
2703
2735
|
declare class ZoomButtonComponent {
|
|
2704
|
-
map: IgoMap
|
|
2705
|
-
color: string
|
|
2736
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
2737
|
+
readonly color: i0.InputSignal<string>;
|
|
2706
2738
|
get zoom(): number;
|
|
2707
2739
|
get minZoom(): number;
|
|
2708
2740
|
get maxZoom(): number;
|
|
2709
2741
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZoomButtonComponent, never>;
|
|
2710
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ZoomButtonComponent, "igo-zoom-button", never, { "map": { "alias": "map"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
2742
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZoomButtonComponent, "igo-zoom-button", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2711
2743
|
}
|
|
2712
2744
|
|
|
2713
2745
|
declare class MenuButtonComponent {
|
|
@@ -2715,7 +2747,7 @@ declare class MenuButtonComponent {
|
|
|
2715
2747
|
get sidenavOpened(): boolean;
|
|
2716
2748
|
set sidenavOpened(value: boolean);
|
|
2717
2749
|
private _sidenavOpenend;
|
|
2718
|
-
openSidenav:
|
|
2750
|
+
readonly openSidenav: i0.OutputEmitterRef<void>;
|
|
2719
2751
|
useThemeColor: boolean;
|
|
2720
2752
|
menuButtonClass: any;
|
|
2721
2753
|
constructor();
|
|
@@ -2744,11 +2776,11 @@ declare class GeolocateButtonComponent implements AfterContentInit, OnDestroy {
|
|
|
2744
2776
|
|
|
2745
2777
|
declare class HomeExtentButtonComponent {
|
|
2746
2778
|
configService: ConfigService<any>;
|
|
2747
|
-
map: IgoMap
|
|
2748
|
-
color: string
|
|
2749
|
-
extentOverride
|
|
2750
|
-
centerOverride
|
|
2751
|
-
zoomOverride
|
|
2779
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
2780
|
+
readonly color: i0.InputSignal<string>;
|
|
2781
|
+
readonly extentOverride: i0.InputSignal<MapExtent>;
|
|
2782
|
+
readonly centerOverride: i0.InputSignal<[number, number]>;
|
|
2783
|
+
readonly zoomOverride: i0.InputSignal<number>;
|
|
2752
2784
|
private homeExtentButtonExtent;
|
|
2753
2785
|
private homeExtentButtonCenter;
|
|
2754
2786
|
private homeExtentButtonZoom;
|
|
@@ -2756,7 +2788,7 @@ declare class HomeExtentButtonComponent {
|
|
|
2756
2788
|
computeHomeExtent(): void;
|
|
2757
2789
|
onToggleClick(): void;
|
|
2758
2790
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomeExtentButtonComponent, never>;
|
|
2759
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HomeExtentButtonComponent, "igo-home-extent-button", never, { "map": { "alias": "map"; "required": false; }; "color": { "alias": "color"; "required": false; }; "extentOverride": { "alias": "extentOverride"; "required": false; }; "centerOverride": { "alias": "centerOverride"; "required": false; }; "zoomOverride": { "alias": "zoomOverride"; "required": false; }; }, {}, never, never, true, never>;
|
|
2791
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HomeExtentButtonComponent, "igo-home-extent-button", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "extentOverride": { "alias": "extentOverride"; "required": false; "isSignal": true; }; "centerOverride": { "alias": "centerOverride"; "required": false; "isSignal": true; }; "zoomOverride": { "alias": "zoomOverride"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2760
2792
|
}
|
|
2761
2793
|
|
|
2762
2794
|
interface HomeExtentButtonOptions {
|
|
@@ -2767,19 +2799,19 @@ interface HomeExtentButtonOptions {
|
|
|
2767
2799
|
|
|
2768
2800
|
declare class OfflineButtonComponent implements OnInit {
|
|
2769
2801
|
btnStyle: string;
|
|
2770
|
-
map: IgoMap
|
|
2771
|
-
color: string
|
|
2772
|
-
enabled: boolean
|
|
2802
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
2803
|
+
readonly color: i0.InputSignal<string>;
|
|
2804
|
+
enabled: i0.ModelSignal<boolean>;
|
|
2773
2805
|
ngOnInit(): void;
|
|
2774
2806
|
onClick(): void;
|
|
2775
2807
|
private handleButtonStyle;
|
|
2776
2808
|
static ɵfac: i0.ɵɵFactoryDeclaration<OfflineButtonComponent, never>;
|
|
2777
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OfflineButtonComponent, "igo-offline-button", never, { "map": { "alias": "map"; "required": false; }; "color": { "alias": "color"; "required": false; }; "enabled": { "alias": "enabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
2809
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OfflineButtonComponent, "igo-offline-button", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "enabled": { "alias": "enabled"; "required": false; "isSignal": true; }; }, { "enabled": "enabledChange"; }, never, never, true, never>;
|
|
2778
2810
|
}
|
|
2779
2811
|
|
|
2780
2812
|
declare class WakeLockButtonComponent {
|
|
2781
2813
|
private storageService;
|
|
2782
|
-
color: string
|
|
2814
|
+
readonly color: i0.InputSignal<string>;
|
|
2783
2815
|
get enabled(): boolean;
|
|
2784
2816
|
set enabled(value: boolean);
|
|
2785
2817
|
private noSleep;
|
|
@@ -2799,7 +2831,7 @@ declare class WakeLockButtonComponent {
|
|
|
2799
2831
|
private disableWakeLock;
|
|
2800
2832
|
toggleWakeLock(): void;
|
|
2801
2833
|
static ɵfac: i0.ɵɵFactoryDeclaration<WakeLockButtonComponent, never>;
|
|
2802
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WakeLockButtonComponent, "igo-wake-lock-button", never, { "color": { "alias": "color"; "required": false; }; "enabled": { "alias": "enabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
2834
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WakeLockButtonComponent, "igo-wake-lock-button", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "enabled": { "alias": "enabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
2803
2835
|
}
|
|
2804
2836
|
|
|
2805
2837
|
declare class LayerService {
|
|
@@ -2835,8 +2867,8 @@ declare const LAYER = "Layer";
|
|
|
2835
2867
|
|
|
2836
2868
|
declare class BaseLayersSwitcherComponent implements AfterViewInit, OnDestroy {
|
|
2837
2869
|
private mediaService;
|
|
2838
|
-
map: IgoMap
|
|
2839
|
-
useStaticIcon: boolean
|
|
2870
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
2871
|
+
readonly useStaticIcon: i0.ModelSignal<boolean>;
|
|
2840
2872
|
_baseLayers: Layer[];
|
|
2841
2873
|
expand: boolean;
|
|
2842
2874
|
showButton: boolean;
|
|
@@ -2848,28 +2880,25 @@ declare class BaseLayersSwitcherComponent implements AfterViewInit, OnDestroy {
|
|
|
2848
2880
|
collapseOrExpand(): void;
|
|
2849
2881
|
get baseLayers(): Layer[];
|
|
2850
2882
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseLayersSwitcherComponent, never>;
|
|
2851
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseLayersSwitcherComponent, "igo-baselayers-switcher", never, { "map": { "alias": "map"; "required": false; }; "useStaticIcon": { "alias": "useStaticIcon"; "required": false; }; }, {}, never, never, true, never>;
|
|
2883
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseLayersSwitcherComponent, "igo-baselayers-switcher", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "useStaticIcon": { "alias": "useStaticIcon"; "required": false; "isSignal": true; }; }, { "useStaticIcon": "useStaticIconChange"; }, never, never, true, never>;
|
|
2852
2884
|
}
|
|
2853
2885
|
|
|
2854
2886
|
declare class MiniBaseMapComponent implements AfterViewInit {
|
|
2855
2887
|
private layerService;
|
|
2856
2888
|
private appRef;
|
|
2857
|
-
map: IgoMap
|
|
2858
|
-
disabled: boolean
|
|
2859
|
-
title: string
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
private _display;
|
|
2863
|
-
get baseLayer(): Layer;
|
|
2864
|
-
set baseLayer(value: Layer);
|
|
2865
|
-
private _baseLayer;
|
|
2889
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
2890
|
+
readonly disabled: i0.InputSignal<boolean>;
|
|
2891
|
+
readonly title: i0.InputSignal<string>;
|
|
2892
|
+
readonly display: i0.InputSignal<boolean>;
|
|
2893
|
+
readonly baseLayer: i0.InputSignal<Layer>;
|
|
2866
2894
|
basemap: IgoMap;
|
|
2895
|
+
constructor();
|
|
2867
2896
|
ngAfterViewInit(): void;
|
|
2868
2897
|
changeBaseLayer(baseLayer: Layer): void;
|
|
2869
2898
|
private handleBaseLayerChanged;
|
|
2870
2899
|
private handleLinkedBaseLayer;
|
|
2871
2900
|
static ɵfac: i0.ɵɵFactoryDeclaration<MiniBaseMapComponent, never>;
|
|
2872
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MiniBaseMapComponent, "igo-mini-basemap", never, { "map": { "alias": "map"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; "display": { "alias": "display"; "required": false; }; "baseLayer": { "alias": "baseLayer"; "required": false; }; }, {}, never, never, true, never>;
|
|
2901
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MiniBaseMapComponent, "igo-mini-basemap", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "display": { "alias": "display"; "required": false; "isSignal": true; }; "baseLayer": { "alias": "baseLayer"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2873
2902
|
}
|
|
2874
2903
|
|
|
2875
2904
|
declare class RotationButtonComponent implements AfterContentInit {
|
|
@@ -2879,12 +2908,12 @@ declare class RotationButtonComponent implements AfterContentInit {
|
|
|
2879
2908
|
readonly currentStyle$: BehaviorSubject<{
|
|
2880
2909
|
transform: string;
|
|
2881
2910
|
}>;
|
|
2882
|
-
map: IgoMap
|
|
2883
|
-
showIfNoRotation: boolean
|
|
2884
|
-
color: string
|
|
2911
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
2912
|
+
readonly showIfNoRotation: i0.InputSignal<boolean>;
|
|
2913
|
+
readonly color: i0.InputSignal<string>;
|
|
2885
2914
|
ngAfterContentInit(): void;
|
|
2886
2915
|
static ɵfac: i0.ɵɵFactoryDeclaration<RotationButtonComponent, never>;
|
|
2887
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RotationButtonComponent, "igo-rotation-button", never, { "map": { "alias": "map"; "required": false; }; "showIfNoRotation": { "alias": "showIfNoRotation"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
2916
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RotationButtonComponent, "igo-rotation-button", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "showIfNoRotation": { "alias": "showIfNoRotation"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2888
2917
|
}
|
|
2889
2918
|
|
|
2890
2919
|
/**
|
|
@@ -2894,7 +2923,7 @@ declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
|
|
|
2894
2923
|
/**
|
|
2895
2924
|
* Get an active map
|
|
2896
2925
|
*/
|
|
2897
|
-
map: IgoMap
|
|
2926
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
2898
2927
|
/**
|
|
2899
2928
|
* The list of layers for swipe
|
|
2900
2929
|
*/
|
|
@@ -2978,7 +3007,7 @@ declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
|
|
|
2978
3007
|
*/
|
|
2979
3008
|
private letZoom;
|
|
2980
3009
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwipeControlComponent, never>;
|
|
2981
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwipeControlComponent, "igo-swipe-control", never, { "map": { "alias": "map"; "required": false; }; }, {}, never, never, true, never>;
|
|
3010
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwipeControlComponent, "igo-swipe-control", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2982
3011
|
}
|
|
2983
3012
|
|
|
2984
3013
|
/**
|
|
@@ -2988,7 +3017,7 @@ declare class MapCenterComponent implements AfterViewInit, OnDestroy {
|
|
|
2988
3017
|
/**
|
|
2989
3018
|
* Get an active map
|
|
2990
3019
|
*/
|
|
2991
|
-
map: IgoMap
|
|
3020
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
2992
3021
|
/**
|
|
2993
3022
|
* Listener of toggle from advanced-map-tool
|
|
2994
3023
|
*/
|
|
@@ -3006,28 +3035,26 @@ declare class MapCenterComponent implements AfterViewInit, OnDestroy {
|
|
|
3006
3035
|
*/
|
|
3007
3036
|
private letZoom;
|
|
3008
3037
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapCenterComponent, never>;
|
|
3009
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MapCenterComponent, "igo-map-center", never, { "map": { "alias": "map"; "required": false; }; }, {}, never, never, true, never>;
|
|
3038
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MapCenterComponent, "igo-map-center", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3010
3039
|
}
|
|
3011
3040
|
|
|
3012
3041
|
declare class InfoSectionComponent {
|
|
3013
|
-
infoContent: string
|
|
3042
|
+
readonly infoContent: i0.InputSignal<string>;
|
|
3014
3043
|
static ɵfac: i0.ɵɵFactoryDeclaration<InfoSectionComponent, never>;
|
|
3015
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoSectionComponent, "igo-info-section", never, { "infoContent": { "alias": "infoContent"; "required": false; }; }, {}, never, never, true, never>;
|
|
3044
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InfoSectionComponent, "igo-info-section", never, { "infoContent": { "alias": "infoContent"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3016
3045
|
}
|
|
3017
3046
|
|
|
3018
|
-
declare class OgcFilterButtonComponent
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
map: MapBase;
|
|
3025
|
-
color: string;
|
|
3026
|
-
header: boolean;
|
|
3047
|
+
declare class OgcFilterButtonComponent {
|
|
3048
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
3049
|
+
readonly options: i0.Signal<OgcFilterableDataSourceOptions>;
|
|
3050
|
+
readonly map: i0.InputSignal<MapBase>;
|
|
3051
|
+
readonly color: i0.InputSignal<string>;
|
|
3052
|
+
readonly header: i0.InputSignal<boolean>;
|
|
3027
3053
|
ogcFilterCollapse: boolean;
|
|
3028
|
-
|
|
3054
|
+
readonly badge: i0.Signal<string | number>;
|
|
3055
|
+
getBadge(): string | number;
|
|
3029
3056
|
static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterButtonComponent, never>;
|
|
3030
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterButtonComponent, "igo-ogc-filter-button", never, { "layer": { "alias": "layer"; "required": false; }; "map": { "alias": "map"; "required": false; }; "color": { "alias": "color"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, never, true, never>;
|
|
3057
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterButtonComponent, "igo-ogc-filter-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3031
3058
|
}
|
|
3032
3059
|
|
|
3033
3060
|
declare class OgcFilterFormComponent implements OnInit {
|
|
@@ -3047,14 +3074,14 @@ declare class OgcFilterFormComponent implements OnInit {
|
|
|
3047
3074
|
currentFilterIsSpatial$: BehaviorSubject<boolean>;
|
|
3048
3075
|
defaultStepMillisecond: number;
|
|
3049
3076
|
inputClearable: string;
|
|
3050
|
-
refreshFilters: () => void
|
|
3051
|
-
datasource: OgcFilterableDataSource
|
|
3052
|
-
map: MapBase
|
|
3053
|
-
currentFilter: any
|
|
3077
|
+
readonly refreshFilters: i0.InputSignal<() => void>;
|
|
3078
|
+
readonly datasource: i0.InputSignal<OgcFilterableDataSource>;
|
|
3079
|
+
readonly map: i0.InputSignal<MapBase>;
|
|
3080
|
+
readonly currentFilter: i0.InputSignal<any>;
|
|
3054
3081
|
set snrc(value: any);
|
|
3055
3082
|
get snrc(): any;
|
|
3056
3083
|
private _snrc;
|
|
3057
|
-
floatLabel: FloatLabelType
|
|
3084
|
+
readonly floatLabel: i0.InputSignal<FloatLabelType>;
|
|
3058
3085
|
get activeFilters(): _igo2_geo.OgcInterfaceFilterOptions[];
|
|
3059
3086
|
get allowedOperators(): {};
|
|
3060
3087
|
constructor();
|
|
@@ -3070,6 +3097,7 @@ declare class OgcFilterFormComponent implements OnInit {
|
|
|
3070
3097
|
deleteFilter(): void;
|
|
3071
3098
|
changeLogical(logical: string): void;
|
|
3072
3099
|
changeOperator(operator: string): void;
|
|
3100
|
+
clearSNRC(): void;
|
|
3073
3101
|
changeField(field: string): void;
|
|
3074
3102
|
changeCaseSensitive(matchCase: any): void;
|
|
3075
3103
|
changeProperty(value: any, pos?: number, refreshFilter?: boolean): void;
|
|
@@ -3082,7 +3110,7 @@ declare class OgcFilterFormComponent implements OnInit {
|
|
|
3082
3110
|
private currentFilterIsSpatial;
|
|
3083
3111
|
isTemporalOperator(): boolean;
|
|
3084
3112
|
static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterFormComponent, never>;
|
|
3085
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterFormComponent, "igo-ogc-filter-form", never, { "refreshFilters": { "alias": "refreshFilters"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "map": { "alias": "map"; "required": false; }; "currentFilter": { "alias": "currentFilter"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
3113
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterFormComponent, "igo-ogc-filter-form", never, { "refreshFilters": { "alias": "refreshFilters"; "required": false; "isSignal": true; }; "datasource": { "alias": "datasource"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "currentFilter": { "alias": "currentFilter"; "required": false; "isSignal": true; }; "floatLabel": { "alias": "floatLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3086
3114
|
}
|
|
3087
3115
|
|
|
3088
3116
|
declare class OgcFilterSelectionComponent implements OnInit {
|
|
@@ -3091,14 +3119,14 @@ declare class OgcFilterSelectionComponent implements OnInit {
|
|
|
3091
3119
|
private domService;
|
|
3092
3120
|
private configService;
|
|
3093
3121
|
private cdRef;
|
|
3094
|
-
sel: MatSelect
|
|
3095
|
-
matAutocomplete: MatAutocompleteTrigger
|
|
3096
|
-
refreshFilters: () => void
|
|
3097
|
-
datasource: OgcFilterableDataSource
|
|
3098
|
-
map: MapBase
|
|
3099
|
-
checkboxesIndex: number
|
|
3100
|
-
radioButtonsIndex: number
|
|
3101
|
-
baseIndex: number
|
|
3122
|
+
readonly sel: i0.Signal<MatSelect>;
|
|
3123
|
+
readonly matAutocomplete: i0.Signal<MatAutocompleteTrigger>;
|
|
3124
|
+
readonly refreshFilters: i0.InputSignal<() => void>;
|
|
3125
|
+
readonly datasource: i0.InputSignal<OgcFilterableDataSource>;
|
|
3126
|
+
readonly map: i0.InputSignal<MapBase>;
|
|
3127
|
+
checkboxesIndex: i0.ModelSignal<number>;
|
|
3128
|
+
radioButtonsIndex: i0.ModelSignal<number>;
|
|
3129
|
+
baseIndex: i0.ModelSignal<number>;
|
|
3102
3130
|
get currentFilter(): any;
|
|
3103
3131
|
set currentFilter(value: any);
|
|
3104
3132
|
private _currentFilter;
|
|
@@ -3170,7 +3198,7 @@ declare class OgcFilterSelectionComponent implements OnInit {
|
|
|
3170
3198
|
changeProperty(value: any, pos?: number, refreshFilter?: boolean): void;
|
|
3171
3199
|
detectProperty(pos?: number): string;
|
|
3172
3200
|
static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterSelectionComponent, never>;
|
|
3173
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterSelectionComponent, "igo-ogc-filter-selection", never, { "refreshFilters": { "alias": "refreshFilters"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; "map": { "alias": "map"; "required": false; }; "checkboxesIndex": { "alias": "checkboxesIndex"; "required": false; }; "radioButtonsIndex": { "alias": "radioButtonsIndex"; "required": false; }; "baseIndex": { "alias": "baseIndex"; "required": false; }; "currentFilter": { "alias": "currentFilter"; "required": false; }; }, {}, never, never, true, never>;
|
|
3201
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterSelectionComponent, "igo-ogc-filter-selection", never, { "refreshFilters": { "alias": "refreshFilters"; "required": false; "isSignal": true; }; "datasource": { "alias": "datasource"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "checkboxesIndex": { "alias": "checkboxesIndex"; "required": false; "isSignal": true; }; "radioButtonsIndex": { "alias": "radioButtonsIndex"; "required": false; "isSignal": true; }; "baseIndex": { "alias": "baseIndex"; "required": false; "isSignal": true; }; "currentFilter": { "alias": "currentFilter"; "required": false; }; }, { "checkboxesIndex": "checkboxesIndexChange"; "radioButtonsIndex": "radioButtonsIndexChange"; "baseIndex": "baseIndexChange"; }, never, never, true, never>;
|
|
3174
3202
|
}
|
|
3175
3203
|
|
|
3176
3204
|
declare class OGCFilterTimeService {
|
|
@@ -3192,18 +3220,14 @@ declare class OGCFilterTimeService {
|
|
|
3192
3220
|
|
|
3193
3221
|
declare class OgcFilterTimeSliderComponent implements OnInit {
|
|
3194
3222
|
ogcFilterTimeService: OGCFilterTimeService;
|
|
3195
|
-
currentFilter: any
|
|
3196
|
-
begin: any
|
|
3197
|
-
max: any
|
|
3198
|
-
datasource: any
|
|
3199
|
-
changeProperty:
|
|
3200
|
-
|
|
3201
|
-
pos: number;
|
|
3202
|
-
refreshFilter: boolean;
|
|
3203
|
-
}>;
|
|
3204
|
-
slider: MatSlider;
|
|
3223
|
+
readonly currentFilter: i0.InputSignal<any>;
|
|
3224
|
+
readonly begin: i0.InputSignal<any>;
|
|
3225
|
+
readonly max: i0.InputSignal<any>;
|
|
3226
|
+
readonly datasource: i0.InputSignal<any>;
|
|
3227
|
+
readonly changeProperty: i0.OutputEmitterRef<any>;
|
|
3228
|
+
readonly slider: i0.Signal<MatSlider>;
|
|
3205
3229
|
interval: any;
|
|
3206
|
-
sliderValue: number
|
|
3230
|
+
sliderValue: i0.WritableSignal<number>;
|
|
3207
3231
|
calculatedStep: number;
|
|
3208
3232
|
readonly _defaultDisplayFormat: string;
|
|
3209
3233
|
readonly _defaultSliderInterval: number;
|
|
@@ -3216,41 +3240,27 @@ declare class OgcFilterTimeSliderComponent implements OnInit {
|
|
|
3216
3240
|
get stepMillisecond(): number;
|
|
3217
3241
|
constructor();
|
|
3218
3242
|
ngOnInit(): void;
|
|
3219
|
-
sliderDisplayWith(value: any)
|
|
3243
|
+
sliderDisplayWith: (value: any) => string;
|
|
3220
3244
|
playFilter(): void;
|
|
3221
3245
|
stopFilter(): void;
|
|
3222
3246
|
resetFilter(): void;
|
|
3223
3247
|
handleSliderInput(matSliderChange: any): void;
|
|
3224
3248
|
calculateStep(): void;
|
|
3225
3249
|
static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterTimeSliderComponent, never>;
|
|
3226
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterTimeSliderComponent, "igo-ogc-filter-time-slider", never, { "currentFilter": { "alias": "currentFilter"; "required": false; }; "begin": { "alias": "begin"; "required": false; }; "max": { "alias": "max"; "required": false; }; "datasource": { "alias": "datasource"; "required": false; }; }, { "changeProperty": "changeProperty"; }, never, never, true, never>;
|
|
3250
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterTimeSliderComponent, "igo-ogc-filter-time-slider", never, { "currentFilter": { "alias": "currentFilter"; "required": false; "isSignal": true; }; "begin": { "alias": "begin"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "datasource": { "alias": "datasource"; "required": false; "isSignal": true; }; }, { "changeProperty": "changeProperty"; }, never, never, true, never>;
|
|
3227
3251
|
}
|
|
3228
3252
|
|
|
3229
3253
|
declare class OgcFilterTimeComponent implements OnInit {
|
|
3230
3254
|
ogcFilterTimeService: OGCFilterTimeService;
|
|
3231
|
-
datasource: OgcFilterableDataSource
|
|
3232
|
-
currentFilter: any
|
|
3233
|
-
changeProperty:
|
|
3234
|
-
value: string;
|
|
3235
|
-
pos: number;
|
|
3236
|
-
refreshFilter: boolean;
|
|
3237
|
-
}>;
|
|
3238
|
-
beginHours: number[];
|
|
3239
|
-
endHours: number[];
|
|
3240
|
-
beginMinutes: number[];
|
|
3241
|
-
endMinutes: number[];
|
|
3242
|
-
beginHourFormControl: UntypedFormControl;
|
|
3243
|
-
beginMinuteFormControl: UntypedFormControl;
|
|
3244
|
-
endHourFormControl: UntypedFormControl;
|
|
3245
|
-
endMinuteFormControl: UntypedFormControl;
|
|
3246
|
-
_beginValue: Date;
|
|
3247
|
-
_endValue: Date;
|
|
3255
|
+
readonly datasource: i0.InputSignal<OgcFilterableDataSource>;
|
|
3256
|
+
readonly currentFilter: i0.InputSignal<any>;
|
|
3257
|
+
readonly changeProperty: i0.OutputEmitterRef<any>;
|
|
3248
3258
|
readonly _defaultMin: string;
|
|
3249
3259
|
readonly _defaultMax: string;
|
|
3250
3260
|
readonly _defaultDisplayFormat: string;
|
|
3251
3261
|
readonly _defaultSliderModeEnabled: boolean;
|
|
3252
3262
|
ogcFilterOperator: typeof OgcFilterOperator;
|
|
3253
|
-
sliderMode: boolean
|
|
3263
|
+
sliderMode: i0.WritableSignal<boolean>;
|
|
3254
3264
|
readonly defaultStepMillisecond = 60000;
|
|
3255
3265
|
options: OgcFilterableDataSourceOptions;
|
|
3256
3266
|
onlyYearBegin: number;
|
|
@@ -3258,66 +3268,64 @@ declare class OgcFilterTimeComponent implements OnInit {
|
|
|
3258
3268
|
calendarTypeYear: boolean;
|
|
3259
3269
|
resetIcon: string;
|
|
3260
3270
|
filterStateDisable: boolean;
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
beginTime:
|
|
3264
|
-
endTime:
|
|
3271
|
+
readonly beginDatepicker: i0.Signal<DatepickerComponent>;
|
|
3272
|
+
readonly endDatepicker: i0.Signal<DatepickerComponent>;
|
|
3273
|
+
readonly beginTime: i0.Signal<TimepickerComponent>;
|
|
3274
|
+
readonly endTime: i0.Signal<TimepickerComponent>;
|
|
3265
3275
|
private filterOriginConfig;
|
|
3266
3276
|
get step(): string;
|
|
3267
3277
|
get stepMilliseconds(): number;
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
set endValue(end: Date);
|
|
3271
|
-
get endValue(): Date;
|
|
3278
|
+
beginValue: Date | TimeFrame;
|
|
3279
|
+
endValue: Date | TimeFrame;
|
|
3272
3280
|
get sliderInterval(): number;
|
|
3273
3281
|
get maxDate(): string;
|
|
3274
3282
|
get displayFormat(): string;
|
|
3275
3283
|
filterBeginFunction: any;
|
|
3276
3284
|
filterEndFunction: any;
|
|
3285
|
+
resolveDate: typeof resolveDate;
|
|
3277
3286
|
ngOnInit(): void;
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
yearSelected(year: any, datePicker?: any, property?: string, refreshFilter?: boolean): void;
|
|
3285
|
-
monthSelected(month: any, datePicker?: any, property?: string, refreshFilter?: boolean): void;
|
|
3286
|
-
calendarView(): 'month' | 'year' | 'multi-year';
|
|
3287
|
-
dateFilter(type: string, date: string): void;
|
|
3288
|
-
getDateTime(date: any, pos: any): Date;
|
|
3289
|
-
handleMinuteIncrement(): number;
|
|
3290
|
-
handleHourIncrement(): number;
|
|
3291
|
-
fullBeginHoursArray(checkEndValue?: any): void;
|
|
3292
|
-
fullEndHoursArray(checkEndValue?: any): void;
|
|
3293
|
-
fullBeginMinutesArray(checkEndValue?: any): void;
|
|
3294
|
-
fullEndMinutesArray(checkEndValue?: any): void;
|
|
3295
|
-
updateHoursMinutesArray(): void;
|
|
3296
|
-
private updateValues;
|
|
3297
|
-
restrictedToStep(): boolean;
|
|
3298
|
-
handleMin(): any;
|
|
3299
|
-
handleMax(): any;
|
|
3287
|
+
changeTemporalProperty(value: Date | TimeFrame, position: number, refreshFilter?: boolean): void;
|
|
3288
|
+
handleDate(value: string): Date;
|
|
3289
|
+
calendarType(): 'year' | 'month' | 'date' | 'datetime';
|
|
3290
|
+
yearSelected(year: Date | TimeFrame, property?: string, refreshFilter?: boolean): void;
|
|
3291
|
+
monthSelected(month: Date | TimeFrame, property?: 'begin' | 'end', refreshFilter?: boolean): void;
|
|
3292
|
+
calendarView(): "year" | "month" | "multi-year";
|
|
3300
3293
|
changePropertyByPass(event: any): void;
|
|
3301
3294
|
modeChange(event: any): void;
|
|
3302
|
-
setFilterStateDisable(): void;
|
|
3303
|
-
getDateFromStringWithoutTime(stringDate: string): Date;
|
|
3304
3295
|
resetFilter(): void;
|
|
3305
3296
|
toggleFilterState(): void;
|
|
3306
|
-
|
|
3297
|
+
sameDate(): boolean;
|
|
3298
|
+
updateTime(event: {
|
|
3299
|
+
hour: number;
|
|
3300
|
+
minute: number;
|
|
3301
|
+
}, position: number): void;
|
|
3302
|
+
dateNotTimeFrame(value: Date | TimeFrame | undefined, fallbackDate: string): boolean;
|
|
3303
|
+
restrictedToStep(): boolean;
|
|
3304
|
+
private isCalendarYearMode;
|
|
3305
|
+
private initDateValues;
|
|
3306
|
+
private parseFilter;
|
|
3307
|
+
private dateFilter;
|
|
3308
|
+
private getDateTime;
|
|
3309
|
+
private updateValues;
|
|
3310
|
+
private handleMin;
|
|
3311
|
+
private handleMax;
|
|
3312
|
+
private setFilterStateDisable;
|
|
3313
|
+
private getDateFromStringWithoutTime;
|
|
3314
|
+
private parseDateToComparable;
|
|
3307
3315
|
static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterTimeComponent, never>;
|
|
3308
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterTimeComponent, "igo-ogc-filter-time", never, { "datasource": { "alias": "datasource"; "required": false; }; "currentFilter": { "alias": "currentFilter"; "required": false; }; }, { "changeProperty": "changeProperty"; }, never, never, true, never>;
|
|
3316
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterTimeComponent, "igo-ogc-filter-time", never, { "datasource": { "alias": "datasource"; "required": false; "isSignal": true; }; "currentFilter": { "alias": "currentFilter"; "required": false; "isSignal": true; }; }, { "changeProperty": "changeProperty"; }, never, never, true, never>;
|
|
3309
3317
|
}
|
|
3310
3318
|
|
|
3311
3319
|
declare class OgcFilterableFormComponent {
|
|
3312
|
-
datasource: OgcFilterableDataSource
|
|
3313
|
-
map: MapBase
|
|
3314
|
-
refreshFilters: () => void
|
|
3320
|
+
readonly datasource: i0.InputSignal<OgcFilterableDataSource>;
|
|
3321
|
+
readonly map: i0.InputSignal<MapBase>;
|
|
3322
|
+
readonly refreshFilters: i0.InputSignal<() => void>;
|
|
3315
3323
|
get refreshFunc(): () => void;
|
|
3316
3324
|
get advancedOgcFilters(): boolean;
|
|
3317
3325
|
get currentFilter(): any;
|
|
3318
3326
|
color: string;
|
|
3319
3327
|
static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterableFormComponent, never>;
|
|
3320
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableFormComponent, "igo-ogc-filterable-form", never, { "datasource": { "alias": "datasource"; "required": false; }; "map": { "alias": "map"; "required": false; }; "refreshFilters": { "alias": "refreshFilters"; "required": false; }; }, {}, never, never, true, never>;
|
|
3328
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableFormComponent, "igo-ogc-filterable-form", never, { "datasource": { "alias": "datasource"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "refreshFilters": { "alias": "refreshFilters"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3321
3329
|
}
|
|
3322
3330
|
|
|
3323
3331
|
declare class OgcFilterableItemComponent implements OnInit, OnDestroy {
|
|
@@ -3333,12 +3341,13 @@ declare class OgcFilterableItemComponent implements OnInit, OnDestroy {
|
|
|
3333
3341
|
inResolutionRange$: BehaviorSubject<boolean>;
|
|
3334
3342
|
private resolution$$;
|
|
3335
3343
|
private ogcFilterWriter;
|
|
3336
|
-
layer: Layer
|
|
3337
|
-
map: MapBase
|
|
3338
|
-
header: boolean
|
|
3344
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
3345
|
+
readonly map: i0.InputSignal<MapBase>;
|
|
3346
|
+
readonly header: i0.InputSignal<boolean>;
|
|
3339
3347
|
get refreshFunc(): any;
|
|
3340
3348
|
get datasource(): OgcFilterableDataSource;
|
|
3341
3349
|
constructor();
|
|
3350
|
+
toggleLayerVisibility(): void;
|
|
3342
3351
|
ngOnInit(): void;
|
|
3343
3352
|
ngOnDestroy(): void;
|
|
3344
3353
|
addFilterToSequence(): void;
|
|
@@ -3352,7 +3361,7 @@ declare class OgcFilterableItemComponent implements OnInit, OnDestroy {
|
|
|
3352
3361
|
toggleLegendOnClick(): void;
|
|
3353
3362
|
toggleFiltersCollapsed(): void;
|
|
3354
3363
|
static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterableItemComponent, never>;
|
|
3355
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableItemComponent, "igo-ogc-filterable-item", never, { "layer": { "alias": "layer"; "required": false; }; "map": { "alias": "map"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, never, true, never>;
|
|
3364
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableItemComponent, "igo-ogc-filterable-item", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3356
3365
|
}
|
|
3357
3366
|
|
|
3358
3367
|
declare class OgcFilterableListBindingDirective implements OnInit, OnDestroy {
|
|
@@ -3367,10 +3376,11 @@ declare class OgcFilterableListBindingDirective implements OnInit, OnDestroy {
|
|
|
3367
3376
|
}
|
|
3368
3377
|
|
|
3369
3378
|
declare class OgcFilterableListComponent {
|
|
3370
|
-
layers: AnyLayer[]
|
|
3371
|
-
map: MapBase
|
|
3379
|
+
readonly layers: i0.ModelSignal<AnyLayer[]>;
|
|
3380
|
+
readonly map: i0.InputSignal<MapBase>;
|
|
3381
|
+
setLayers(layers: AnyLayer[]): void;
|
|
3372
3382
|
static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterableListComponent, never>;
|
|
3373
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableListComponent, "igo-ogc-filterable-list", never, { "layers": { "alias": "layers"; "required": false; }; "map": { "alias": "map"; "required": false; }; }, {}, never, never, true, never>;
|
|
3383
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterableListComponent, "igo-ogc-filterable-list", never, { "layers": { "alias": "layers"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; }, { "layers": "layersChange"; }, never, never, true, never>;
|
|
3374
3384
|
}
|
|
3375
3385
|
|
|
3376
3386
|
declare enum GeometryType {
|
|
@@ -4344,18 +4354,13 @@ declare class FeatureFormComponent {
|
|
|
4344
4354
|
/**
|
|
4345
4355
|
* Form
|
|
4346
4356
|
*/
|
|
4347
|
-
form: Form
|
|
4348
|
-
|
|
4349
|
-
* Feature to update
|
|
4350
|
-
*/
|
|
4351
|
-
set feature(value: Feature | undefined);
|
|
4352
|
-
get feature(): Feature | undefined;
|
|
4353
|
-
readonly feature$: BehaviorSubject<Feature<Record<string, any>>>;
|
|
4357
|
+
readonly form: i0.InputSignal<Form>;
|
|
4358
|
+
readonly feature: i0.InputSignal<Feature<Record<string, any>>>;
|
|
4354
4359
|
/**
|
|
4355
4360
|
* Event emitted when the form is submitted
|
|
4356
4361
|
*/
|
|
4357
|
-
submitForm:
|
|
4358
|
-
igoForm: FormComponent
|
|
4362
|
+
readonly submitForm: i0.OutputEmitterRef<Feature<Record<string, any>>>;
|
|
4363
|
+
readonly igoForm: i0.Signal<FormComponent>;
|
|
4359
4364
|
/**
|
|
4360
4365
|
* Transform the form data to a feature and emit an event
|
|
4361
4366
|
* @param event Form submit event
|
|
@@ -4370,7 +4375,7 @@ declare class FeatureFormComponent {
|
|
|
4370
4375
|
*/
|
|
4371
4376
|
private formDataToFeature;
|
|
4372
4377
|
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureFormComponent, never>;
|
|
4373
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FeatureFormComponent, "igo-feature-form", never, { "form": { "alias": "form"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; }, { "submitForm": "submitForm"; }, never, ["*", "[formButtons]"], true, never>;
|
|
4378
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeatureFormComponent, "igo-feature-form", never, { "form": { "alias": "form"; "required": false; "isSignal": true; }; "feature": { "alias": "feature"; "required": false; "isSignal": true; }; }, { "submitForm": "submitForm"; }, never, ["*", "[formButtons]"], true, never>;
|
|
4374
4379
|
}
|
|
4375
4380
|
|
|
4376
4381
|
interface SearchSourceOptions {
|
|
@@ -4534,17 +4539,13 @@ declare class FeatureDetailsComponent implements OnInit, OnDestroy {
|
|
|
4534
4539
|
private state;
|
|
4535
4540
|
private unsubscribe$;
|
|
4536
4541
|
ready: boolean;
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4540
|
-
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
private _source;
|
|
4545
|
-
routeEvent: EventEmitter<boolean>;
|
|
4546
|
-
selectFeature: EventEmitter<boolean>;
|
|
4547
|
-
htmlDisplayEvent: EventEmitter<boolean>;
|
|
4542
|
+
readonly source: i0.InputSignal<SearchSource>;
|
|
4543
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
4544
|
+
readonly toolbox: i0.InputSignal<Toolbox>;
|
|
4545
|
+
readonly feature: i0.InputSignal<Feature<Record<string, any>>>;
|
|
4546
|
+
readonly routeEvent: i0.OutputEmitterRef<boolean>;
|
|
4547
|
+
readonly selectFeature: i0.OutputEmitterRef<boolean>;
|
|
4548
|
+
readonly htmlDisplayEvent: i0.OutputEmitterRef<boolean>;
|
|
4548
4549
|
/**
|
|
4549
4550
|
* @internal
|
|
4550
4551
|
*/
|
|
@@ -4572,15 +4573,15 @@ declare class FeatureDetailsComponent implements OnInit, OnDestroy {
|
|
|
4572
4573
|
*/
|
|
4573
4574
|
copyTextToClipboard(value: string): void;
|
|
4574
4575
|
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureDetailsComponent, never>;
|
|
4575
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FeatureDetailsComponent, "igo-feature-details", never, { "source": { "alias": "source"; "required": false; }; "map": { "alias": "map"; "required": false; }; "toolbox": { "alias": "toolbox"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; }, { "routeEvent": "routeEvent"; "selectFeature": "selectFeature"; "htmlDisplayEvent": "htmlDisplayEvent"; }, never, never, true, never>;
|
|
4576
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeatureDetailsComponent, "igo-feature-details", never, { "source": { "alias": "source"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "toolbox": { "alias": "toolbox"; "required": false; "isSignal": true; }; "feature": { "alias": "feature"; "required": false; "isSignal": true; }; }, { "routeEvent": "routeEvent"; "selectFeature": "selectFeature"; "htmlDisplayEvent": "htmlDisplayEvent"; }, never, never, true, never>;
|
|
4576
4577
|
}
|
|
4577
4578
|
|
|
4578
4579
|
declare class FeatureDetailsDirective implements OnInit {
|
|
4579
4580
|
private el;
|
|
4580
4581
|
private component;
|
|
4581
|
-
get feature(): _igo2_geo.Feature<Record<string, any
|
|
4582
|
+
get feature(): i0.InputSignal<_igo2_geo.Feature<Record<string, any>>>;
|
|
4582
4583
|
feature$: BehaviorSubject<any>;
|
|
4583
|
-
routingEvent:
|
|
4584
|
+
readonly routingEvent: i0.OutputEmitterRef<void>;
|
|
4584
4585
|
setFeature(): void;
|
|
4585
4586
|
constructor();
|
|
4586
4587
|
ngOnInit(): void;
|
|
@@ -4637,19 +4638,13 @@ declare class DrawComponent implements OnInit, OnDestroy {
|
|
|
4637
4638
|
*/
|
|
4638
4639
|
tableTemplate: EntityTableTemplate;
|
|
4639
4640
|
geometryType: typeof GeometryType;
|
|
4640
|
-
map: IgoMap
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
get activeDrawingLayer(): VectorLayer;
|
|
4648
|
-
set activeDrawingLayer(value: VectorLayer);
|
|
4649
|
-
private _activeDrawingLayer;
|
|
4650
|
-
activeLayerChange: EventEmitter<VectorLayer>;
|
|
4651
|
-
drawControlsEvent: EventEmitter<[string, DrawControl][]>;
|
|
4652
|
-
layersIDEvent: EventEmitter<string>;
|
|
4641
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
4642
|
+
readonly stores: i0.ModelSignal<FeatureStore<FeatureWithDraw>[]>;
|
|
4643
|
+
readonly drawControls: i0.ModelSignal<[string, DrawControl][]>;
|
|
4644
|
+
readonly activeDrawingLayer: i0.ModelSignal<VectorLayer>;
|
|
4645
|
+
readonly activeLayerChange: i0.OutputEmitterRef<VectorLayer>;
|
|
4646
|
+
readonly drawControlsEvent: i0.OutputEmitterRef<[string, DrawControl][]>;
|
|
4647
|
+
readonly layersIDEvent: i0.OutputEmitterRef<string>;
|
|
4653
4648
|
fillColor: string;
|
|
4654
4649
|
strokeColor: string;
|
|
4655
4650
|
strokeWidth: number;
|
|
@@ -4687,7 +4682,7 @@ declare class DrawComponent implements OnInit, OnDestroy {
|
|
|
4687
4682
|
private numberOfDrawings;
|
|
4688
4683
|
isCreatingNewLayer: boolean;
|
|
4689
4684
|
private currGeometryType;
|
|
4690
|
-
select:
|
|
4685
|
+
readonly select: i0.Signal<MatSelect>;
|
|
4691
4686
|
constructor();
|
|
4692
4687
|
ngOnInit(): void;
|
|
4693
4688
|
/**
|
|
@@ -4845,7 +4840,7 @@ declare class DrawComponent implements OnInit, OnDestroy {
|
|
|
4845
4840
|
private elementStyle;
|
|
4846
4841
|
private getRadius;
|
|
4847
4842
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrawComponent, never>;
|
|
4848
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DrawComponent, "igo-draw", never, { "map": { "alias": "map"; "required": false; }; "stores": { "alias": "stores"; "required": false; }; "drawControls": { "alias": "drawControls"; "required": false; }; "activeDrawingLayer": { "alias": "activeDrawingLayer"; "required": false; }; }, { "
|
|
4843
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrawComponent, "igo-draw", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "stores": { "alias": "stores"; "required": false; "isSignal": true; }; "drawControls": { "alias": "drawControls"; "required": false; "isSignal": true; }; "activeDrawingLayer": { "alias": "activeDrawingLayer"; "required": false; "isSignal": true; }; }, { "stores": "storesChange"; "drawControls": "drawControlsChange"; "activeDrawingLayer": "activeDrawingLayerChange"; "activeLayerChange": "activeLayerChange"; "drawControlsEvent": "drawControlsEvent"; "layersIDEvent": "layersIDEvent"; }, never, never, true, never>;
|
|
4849
4844
|
}
|
|
4850
4845
|
|
|
4851
4846
|
interface GeometryFormFieldInputs extends FormFieldInputs {
|
|
@@ -5213,11 +5208,11 @@ declare class MeasurerComponent implements OnInit, OnDestroy {
|
|
|
5213
5208
|
/**
|
|
5214
5209
|
* The map to measure on
|
|
5215
5210
|
*/
|
|
5216
|
-
map: IgoMap
|
|
5211
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
5217
5212
|
/**
|
|
5218
5213
|
* The measures store
|
|
5219
5214
|
*/
|
|
5220
|
-
store: FeatureStore<FeatureWithMeasure
|
|
5215
|
+
readonly store: i0.InputSignal<FeatureStore<FeatureWithMeasure>>;
|
|
5221
5216
|
/**
|
|
5222
5217
|
* Measure type
|
|
5223
5218
|
* @internal
|
|
@@ -5229,8 +5224,8 @@ declare class MeasurerComponent implements OnInit, OnDestroy {
|
|
|
5229
5224
|
* The minimum length a segment must have to display a tooltip.
|
|
5230
5225
|
* It also applies to area tooltips.
|
|
5231
5226
|
*/
|
|
5232
|
-
minSegmentLength: number
|
|
5233
|
-
table: EntityTableComponent
|
|
5227
|
+
readonly minSegmentLength: i0.InputSignal<number>;
|
|
5228
|
+
readonly table: i0.Signal<EntityTableComponent>;
|
|
5234
5229
|
/**
|
|
5235
5230
|
* Wheter one of the draw control is active
|
|
5236
5231
|
* @internal
|
|
@@ -5450,7 +5445,7 @@ declare class MeasurerComponent implements OnInit, OnDestroy {
|
|
|
5450
5445
|
private saveCurrentUnits;
|
|
5451
5446
|
private getSavedUnits;
|
|
5452
5447
|
static ɵfac: i0.ɵɵFactoryDeclaration<MeasurerComponent, never>;
|
|
5453
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MeasurerComponent, "igo-measurer", never, { "map": { "alias": "map"; "required": false; }; "store": { "alias": "store"; "required": false; }; "activeMeasureType": { "alias": "activeMeasureType"; "required": false; }; "minSegmentLength": { "alias": "minSegmentLength"; "required": false; }; }, {}, never, never, true, never>;
|
|
5448
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MeasurerComponent, "igo-measurer", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; "activeMeasureType": { "alias": "activeMeasureType"; "required": false; }; "minSegmentLength": { "alias": "minSegmentLength"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5454
5449
|
}
|
|
5455
5450
|
|
|
5456
5451
|
declare const MEASURER_DIRECTIVES: (typeof MeasureFormatPipe | typeof MeasurerComponent)[];
|
|
@@ -5468,7 +5463,7 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
|
|
|
5468
5463
|
set type(type: SpatialFilterType);
|
|
5469
5464
|
private _type;
|
|
5470
5465
|
queryType: SpatialFilterQueryType;
|
|
5471
|
-
|
|
5466
|
+
zones: Feature[];
|
|
5472
5467
|
loading: any;
|
|
5473
5468
|
get store(): EntityStore<Feature>;
|
|
5474
5469
|
set store(store: EntityStore<Feature>);
|
|
@@ -5488,7 +5483,7 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
|
|
|
5488
5483
|
thematicChange: EventEmitter<SpatialFilterThematic[]>;
|
|
5489
5484
|
drawZoneEvent: EventEmitter<Feature<Record<string, any>>>;
|
|
5490
5485
|
bufferEvent: EventEmitter<number>;
|
|
5491
|
-
|
|
5486
|
+
zonesWithBufferChange: EventEmitter<Feature<Record<string, any>>[]>;
|
|
5492
5487
|
measureUnitChange: EventEmitter<MeasureLengthUnit>;
|
|
5493
5488
|
radiusEvent: EventEmitter<number>;
|
|
5494
5489
|
freehandControl: EventEmitter<boolean>;
|
|
@@ -5498,7 +5493,6 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
|
|
|
5498
5493
|
export: EventEmitter<any>;
|
|
5499
5494
|
openWorkspace: EventEmitter<any>;
|
|
5500
5495
|
entityChange: EventEmitter<any>;
|
|
5501
|
-
itemType: SpatialFilterItemType[];
|
|
5502
5496
|
selectedItemType: SpatialFilterItemType;
|
|
5503
5497
|
selectedSourceAddress: any;
|
|
5504
5498
|
treeControl: NestedTreeControl<SpatialFilterThematic>;
|
|
@@ -5526,7 +5520,7 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
|
|
|
5526
5520
|
drawControlIsActive: boolean;
|
|
5527
5521
|
freehandDrawIsActive: boolean;
|
|
5528
5522
|
drawStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
|
|
5529
|
-
drawZone:
|
|
5523
|
+
drawZone: Feature;
|
|
5530
5524
|
overlayStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
|
|
5531
5525
|
PointStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
|
|
5532
5526
|
PolyStyle: olStyle.Style | ((feature: any, resolution: any) => olStyle.Style);
|
|
@@ -5594,54 +5588,68 @@ declare class SpatialFilterItemComponent implements OnDestroy, OnInit {
|
|
|
5594
5588
|
toggleVisibleList(): void;
|
|
5595
5589
|
private createTableTemplate;
|
|
5596
5590
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpatialFilterItemComponent, never>;
|
|
5597
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterItemComponent, "igo-spatial-filter-item", never, { "map": { "alias": "map"; "required":
|
|
5591
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterItemComponent, "igo-spatial-filter-item", never, { "map": { "alias": "map"; "required": true; }; "type": { "alias": "type"; "required": false; }; "queryType": { "alias": "queryType"; "required": false; }; "zones": { "alias": "zones"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "store": { "alias": "store"; "required": true; }; "layers": { "alias": "layers"; "required": false; }; "allLayers": { "alias": "allLayers"; "required": false; }; "thematicLength": { "alias": "thematicLength"; "required": false; }; }, { "toggleSearch": "toggleSearch"; "itemTypeChange": "itemTypeChange"; "thematicChange": "thematicChange"; "drawZoneEvent": "drawZoneEvent"; "bufferEvent": "bufferEvent"; "zonesWithBufferChange": "zonesWithBufferChange"; "measureUnitChange": "measureUnitChange"; "radiusEvent": "radiusEvent"; "freehandControl": "freehandControl"; "predefinedRadius": "predefinedRadius"; "clearButtonEvent": "clearButtonEvent"; "clearSearchEvent": "clearSearchEvent"; "export": "export"; "openWorkspace": "openWorkspace"; "entityChange": "entityChange"; }, never, never, true, never>;
|
|
5598
5592
|
}
|
|
5599
5593
|
|
|
5600
5594
|
declare class SpatialFilterListComponent implements OnInit, OnDestroy {
|
|
5601
5595
|
private spatialFilterService;
|
|
5602
5596
|
private messageService;
|
|
5603
|
-
|
|
5597
|
+
private cdRef;
|
|
5598
|
+
readonly store: i0.InputSignal<EntityStore<Feature<Record<string, any>>, _igo2_common_entity.EntityState>>;
|
|
5604
5599
|
get queryType(): SpatialFilterQueryType;
|
|
5605
5600
|
set queryType(queryType: SpatialFilterQueryType);
|
|
5606
5601
|
private _queryType;
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
selectedZone: any;
|
|
5602
|
+
readonly bufferChange: i0.OutputEmitterRef<number>;
|
|
5603
|
+
readonly measureUnitChange: i0.OutputEmitterRef<MeasureLengthUnit>;
|
|
5604
|
+
readonly addZone: i0.OutputEmitterRef<Feature<Record<string, any>>>;
|
|
5605
|
+
readonly removeZone: i0.OutputEmitterRef<Feature<Record<string, any>>>;
|
|
5606
|
+
readonly zonesWithBufferChange: i0.OutputEmitterRef<Feature<Record<string, any>>[]>;
|
|
5613
5607
|
measureUnit: MeasureLengthUnit;
|
|
5614
5608
|
formControl: UntypedFormControl;
|
|
5615
5609
|
bufferFormControl: UntypedFormControl;
|
|
5610
|
+
selectedZones: Feature[];
|
|
5611
|
+
private zonesWithBuffer;
|
|
5612
|
+
private formValueChanges$$;
|
|
5613
|
+
private bufferValueChanges$$;
|
|
5614
|
+
inFlightIds: Set<string | number>;
|
|
5615
|
+
autocomplete: i0.Signal<MatAutocomplete>;
|
|
5616
|
+
autocompleteTrigger: i0.Signal<MatAutocompleteTrigger>;
|
|
5616
5617
|
/**
|
|
5617
5618
|
* Available measure units for the measure type given
|
|
5618
5619
|
* @internal
|
|
5619
5620
|
*/
|
|
5620
5621
|
get measureUnits(): string[];
|
|
5621
|
-
|
|
5622
|
-
zoneWithBufferChange: EventEmitter<Feature<Record<string, any>>>;
|
|
5623
|
-
bufferChange: EventEmitter<number>;
|
|
5624
|
-
measureUnitChange: EventEmitter<MeasureLengthUnit>;
|
|
5625
|
-
formValueChanges$$: Subscription;
|
|
5626
|
-
bufferValueChanges$$: Subscription;
|
|
5622
|
+
filteredEntities$: Observable<Feature[]>;
|
|
5627
5623
|
ngOnInit(): void;
|
|
5628
5624
|
ngOnDestroy(): void;
|
|
5629
5625
|
displayFn(feature?: Feature): string | undefined;
|
|
5630
|
-
onZoneChange(feature: any): void;
|
|
5631
5626
|
/**
|
|
5632
5627
|
* Set the measure unit
|
|
5633
5628
|
* @internal
|
|
5634
5629
|
*/
|
|
5635
5630
|
onMeasureUnitChange(unit: MeasureLengthUnit): void;
|
|
5631
|
+
/**
|
|
5632
|
+
* multiple selection of zones
|
|
5633
|
+
*/
|
|
5634
|
+
select(event: MatAutocompleteSelectedEvent): void;
|
|
5635
|
+
remove(feature: Feature): void;
|
|
5636
|
+
isSelected(entity: Feature): boolean;
|
|
5637
|
+
private applyBuffer;
|
|
5638
|
+
private updateBuffer;
|
|
5639
|
+
private normalizeBuffer;
|
|
5640
|
+
private resetBufferWithWarning;
|
|
5641
|
+
private normalizeString;
|
|
5642
|
+
private resetInputAndPanel;
|
|
5643
|
+
private clearAutocompleteSelection;
|
|
5644
|
+
private repositionAutocomplete;
|
|
5636
5645
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpatialFilterListComponent, never>;
|
|
5637
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterListComponent, "igo-spatial-filter-list", never, { "store": { "alias": "store"; "required":
|
|
5646
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterListComponent, "igo-spatial-filter-list", never, { "store": { "alias": "store"; "required": true; "isSignal": true; }; "queryType": { "alias": "queryType"; "required": true; }; }, { "bufferChange": "bufferChange"; "measureUnitChange": "measureUnitChange"; "addZone": "addZone"; "removeZone": "removeZone"; "zonesWithBufferChange": "zonesWithBufferChange"; }, never, never, true, never>;
|
|
5638
5647
|
}
|
|
5639
5648
|
|
|
5640
5649
|
/**
|
|
5641
5650
|
* Spatial Filter Type
|
|
5642
5651
|
*/
|
|
5643
5652
|
declare class SpatialFilterTypeComponent implements OnInit {
|
|
5644
|
-
store: EntityStore<Feature>;
|
|
5645
5653
|
queryType: string[];
|
|
5646
5654
|
selectedTypeIndex: UntypedFormControl;
|
|
5647
5655
|
/**
|
|
@@ -5650,41 +5658,41 @@ declare class SpatialFilterTypeComponent implements OnInit {
|
|
|
5650
5658
|
*/
|
|
5651
5659
|
spatialType: typeof SpatialFilterType;
|
|
5652
5660
|
activeDrawType: SpatialFilterType;
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
|
|
5661
|
+
readonly store: i0.InputSignal<EntityStore<Feature<Record<string, any>>, _igo2_common_entity.EntityState>>;
|
|
5662
|
+
selectedQueryType: i0.ModelSignal<SpatialFilterQueryType>;
|
|
5663
|
+
readonly zones: i0.InputSignal<Feature<Record<string, any>>[]>;
|
|
5664
|
+
readonly layers: i0.InputSignal<AnyLayer[]>;
|
|
5656
5665
|
type: SpatialFilterType;
|
|
5657
|
-
eventType:
|
|
5658
|
-
eventQueryType:
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
5662
|
-
|
|
5666
|
+
readonly eventType: i0.OutputEmitterRef<SpatialFilterType>;
|
|
5667
|
+
readonly eventQueryType: i0.OutputEmitterRef<SpatialFilterQueryType>;
|
|
5668
|
+
readonly bufferChange: i0.OutputEmitterRef<number>;
|
|
5669
|
+
readonly measureUnitChange: i0.OutputEmitterRef<MeasureLengthUnit>;
|
|
5670
|
+
readonly addZone: i0.OutputEmitterRef<Feature<Record<string, any>>>;
|
|
5671
|
+
readonly removeZone: i0.OutputEmitterRef<Feature<Record<string, any>>>;
|
|
5672
|
+
readonly zonesWithBufferChange: i0.OutputEmitterRef<Feature<Record<string, any>>[]>;
|
|
5663
5673
|
ngOnInit(): void;
|
|
5664
5674
|
onTypeChange(): void;
|
|
5665
5675
|
onDrawTypeChange(spatialType: SpatialFilterType): void;
|
|
5666
5676
|
onSelectionChange(): void;
|
|
5667
5677
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpatialFilterTypeComponent, never>;
|
|
5668
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterTypeComponent, "igo-spatial-filter-type", never, { "store": { "alias": "store"; "required": false; }; "selectedQueryType": { "alias": "selectedQueryType"; "required": false; }; "
|
|
5678
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpatialFilterTypeComponent, "igo-spatial-filter-type", never, { "store": { "alias": "store"; "required": false; "isSignal": true; }; "selectedQueryType": { "alias": "selectedQueryType"; "required": false; "isSignal": true; }; "zones": { "alias": "zones"; "required": false; "isSignal": true; }; "layers": { "alias": "layers"; "required": false; "isSignal": true; }; }, { "selectedQueryType": "selectedQueryTypeChange"; "eventType": "eventType"; "eventQueryType": "eventQueryType"; "bufferChange": "bufferChange"; "measureUnitChange": "measureUnitChange"; "addZone": "addZone"; "removeZone": "removeZone"; "zonesWithBufferChange": "zonesWithBufferChange"; }, never, never, true, never>;
|
|
5669
5679
|
}
|
|
5670
5680
|
|
|
5671
|
-
declare class TimeFilterButtonComponent
|
|
5672
|
-
|
|
5673
|
-
|
|
5674
|
-
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
map: IgoMap;
|
|
5678
|
-
color: string;
|
|
5679
|
-
header: boolean;
|
|
5681
|
+
declare class TimeFilterButtonComponent {
|
|
5682
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
5683
|
+
readonly options: i0.Signal<TimeFilterableDataSourceOptions>;
|
|
5684
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
5685
|
+
readonly color: i0.InputSignal<string>;
|
|
5686
|
+
readonly header: i0.InputSignal<boolean>;
|
|
5680
5687
|
timeFilterCollapse: boolean;
|
|
5681
|
-
|
|
5688
|
+
get badge(): number;
|
|
5682
5689
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimeFilterButtonComponent, never>;
|
|
5683
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterButtonComponent, "igo-time-filter-button", never, { "layer": { "alias": "layer"; "required": false; }; "map": { "alias": "map"; "required": false; }; "color": { "alias": "color"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, never, true, never>;
|
|
5690
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterButtonComponent, "igo-time-filter-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5684
5691
|
}
|
|
5685
5692
|
|
|
5686
5693
|
declare class TimeFilterFormComponent implements OnInit {
|
|
5687
5694
|
private dateAdapter;
|
|
5695
|
+
private cdRef;
|
|
5688
5696
|
color: ThemePalette;
|
|
5689
5697
|
date: Date;
|
|
5690
5698
|
startDate: Date;
|
|
@@ -5700,12 +5708,14 @@ declare class TimeFilterFormComponent implements OnInit {
|
|
|
5700
5708
|
interval: number;
|
|
5701
5709
|
playIcon: string;
|
|
5702
5710
|
resetIcon: string;
|
|
5703
|
-
|
|
5704
|
-
|
|
5705
|
-
|
|
5706
|
-
|
|
5707
|
-
|
|
5708
|
-
|
|
5711
|
+
readonly enabled: i0.WritableSignal<boolean>;
|
|
5712
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
5713
|
+
readonly options: i0.InputSignal<TimeFilterOptions>;
|
|
5714
|
+
readonly currentValue: i0.InputSignal<string>;
|
|
5715
|
+
readonly rangeDate: i0.Signal<Date[]>;
|
|
5716
|
+
readonly dateChange: i0.OutputEmitterRef<Date | [Date, Date]>;
|
|
5717
|
+
readonly yearChange: i0.OutputEmitterRef<string | [string, string]>;
|
|
5718
|
+
readonly mySlider: i0.Signal<MatSlider>;
|
|
5709
5719
|
get type(): TimeFilterType;
|
|
5710
5720
|
get isRange(): boolean;
|
|
5711
5721
|
get style(): TimeFilterStyle;
|
|
@@ -5732,6 +5742,8 @@ declare class TimeFilterFormComponent implements OnInit {
|
|
|
5732
5742
|
findThumbLabel(test: any[]): any;
|
|
5733
5743
|
toggleFilterState(): void;
|
|
5734
5744
|
resetFilter(): void;
|
|
5745
|
+
private emitDateOrYear;
|
|
5746
|
+
play(): void;
|
|
5735
5747
|
playFilter(): void;
|
|
5736
5748
|
playYear(): void;
|
|
5737
5749
|
stopFilter(): void;
|
|
@@ -5757,7 +5769,7 @@ declare class TimeFilterFormComponent implements OnInit {
|
|
|
5757
5769
|
*/
|
|
5758
5770
|
getStepDefinition(step: any): number;
|
|
5759
5771
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimeFilterFormComponent, never>;
|
|
5760
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterFormComponent, "igo-time-filter-form", never, { "layer": { "alias": "layer"; "required": false; }; "options": { "alias": "options"; "required": false; }; "currentValue": { "alias": "currentValue"; "required": false; }; }, { "dateChange": "dateChange"; "yearChange": "yearChange"; }, never, never, true, never>;
|
|
5772
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterFormComponent, "igo-time-filter-form", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "currentValue": { "alias": "currentValue"; "required": false; "isSignal": true; }; }, { "dateChange": "dateChange"; "yearChange": "yearChange"; }, never, never, true, never>;
|
|
5761
5773
|
}
|
|
5762
5774
|
|
|
5763
5775
|
declare class TimeFilterItemComponent implements OnInit, OnDestroy {
|
|
@@ -5767,20 +5779,21 @@ declare class TimeFilterItemComponent implements OnInit, OnDestroy {
|
|
|
5767
5779
|
inResolutionRange$: BehaviorSubject<boolean>;
|
|
5768
5780
|
private resolution$$;
|
|
5769
5781
|
filtersCollapsed: boolean;
|
|
5770
|
-
header: boolean
|
|
5771
|
-
layer: Layer
|
|
5782
|
+
readonly header: i0.InputSignal<boolean>;
|
|
5783
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
5772
5784
|
get datasource(): TimeFilterableDataSource;
|
|
5773
5785
|
ngOnInit(): void;
|
|
5774
5786
|
ngOnDestroy(): void;
|
|
5775
|
-
handleYearChange(year: string | [string, string]): void;
|
|
5787
|
+
handleYearChange(year: string | [string, string] | undefined): void;
|
|
5776
5788
|
handleDateChange(date: Date | [Date, Date]): void;
|
|
5777
5789
|
private reformDate;
|
|
5778
5790
|
private toggleLegend;
|
|
5779
5791
|
toggleLegendOnClick(): void;
|
|
5780
5792
|
setVisible(): void;
|
|
5793
|
+
toggleLayerVisibility(): void;
|
|
5781
5794
|
toggleFiltersCollapsed(): void;
|
|
5782
5795
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimeFilterItemComponent, never>;
|
|
5783
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterItemComponent, "igo-time-filter-item", never, { "header": { "alias": "header"; "required": false; }; "layer": { "alias": "layer"; "required": false; }; }, {}, never, never, true, never>;
|
|
5796
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterItemComponent, "igo-time-filter-item", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; "layer": { "alias": "layer"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5784
5797
|
}
|
|
5785
5798
|
|
|
5786
5799
|
declare class TimeFilterListBindingDirective implements OnInit, OnDestroy {
|
|
@@ -5795,9 +5808,9 @@ declare class TimeFilterListBindingDirective implements OnInit, OnDestroy {
|
|
|
5795
5808
|
}
|
|
5796
5809
|
|
|
5797
5810
|
declare class TimeFilterListComponent {
|
|
5798
|
-
layers: AnyLayer[]
|
|
5811
|
+
readonly layers: i0.ModelSignal<AnyLayer[]>;
|
|
5799
5812
|
static ɵfac: i0.ɵɵFactoryDeclaration<TimeFilterListComponent, never>;
|
|
5800
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterListComponent, "igo-time-filter-list", never, { "layers": { "alias": "layers"; "required": false; }; }, {}, never, never, true, never>;
|
|
5813
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimeFilterListComponent, "igo-time-filter-list", never, { "layers": { "alias": "layers"; "required": false; "isSignal": true; }; }, { "layers": "layersChange"; }, never, never, true, never>;
|
|
5801
5814
|
}
|
|
5802
5815
|
|
|
5803
5816
|
declare const FILTER_DIRECTIVES: readonly [typeof FilterableDataSourcePipe, typeof TimeFilterButtonComponent, typeof TimeFilterFormComponent, typeof TimeFilterItemComponent, typeof TimeFilterListComponent, typeof TimeFilterListBindingDirective, typeof OgcFilterFormComponent, typeof OgcFilterButtonComponent, typeof OgcFilterSelectionComponent, typeof OgcFilterableFormComponent, typeof OgcFilterableItemComponent, typeof OgcFilterableListComponent, typeof OgcFilterableListBindingDirective, typeof SpatialFilterTypeComponent, typeof SpatialFilterListComponent, typeof SpatialFilterItemComponent, typeof OgcFilterTimeComponent, typeof OgcFilterTimeSliderComponent];
|
|
@@ -5909,6 +5922,9 @@ declare class OGCFilterService {
|
|
|
5909
5922
|
setOgcWFSFiltersOptions(options: WFSDataSourceOptions): void;
|
|
5910
5923
|
setOgcWMSFiltersOptions(wmsDatasource: OgcFilterableDataSource): void;
|
|
5911
5924
|
private mergeInterfaceFilters;
|
|
5925
|
+
private buildStandardOgcFilters;
|
|
5926
|
+
private resetOgcFilters;
|
|
5927
|
+
private buildAdvancedOgcFilters;
|
|
5912
5928
|
static ɵfac: i0.ɵɵFactoryDeclaration<OGCFilterService, never>;
|
|
5913
5929
|
static ɵprov: i0.ɵɵInjectableDeclaration<OGCFilterService>;
|
|
5914
5930
|
}
|
|
@@ -6020,14 +6036,14 @@ declare abstract class Layer extends LayerBase {
|
|
|
6020
6036
|
type AnyLayer = Layer | LayerGroup;
|
|
6021
6037
|
|
|
6022
6038
|
declare class LayerGroupComponent implements OnInit {
|
|
6023
|
-
layer: LayerGroup
|
|
6024
|
-
viewerOptions: LayerViewerOptions
|
|
6025
|
-
selected: boolean
|
|
6026
|
-
selectionDisabled: boolean
|
|
6027
|
-
action:
|
|
6028
|
-
visibilityChange:
|
|
6029
|
-
expand:
|
|
6030
|
-
selectChange:
|
|
6039
|
+
readonly layer: i0.InputSignal<LayerGroup>;
|
|
6040
|
+
readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
|
|
6041
|
+
readonly selected: i0.InputSignal<boolean>;
|
|
6042
|
+
readonly selectionDisabled: i0.InputSignal<boolean>;
|
|
6043
|
+
readonly action: i0.OutputEmitterRef<AnyLayer>;
|
|
6044
|
+
readonly visibilityChange: i0.OutputEmitterRef<Event>;
|
|
6045
|
+
readonly expand: i0.OutputEmitterRef<void>;
|
|
6046
|
+
readonly selectChange: i0.OutputEmitterRef<boolean>;
|
|
6031
6047
|
isDisabled: boolean;
|
|
6032
6048
|
get title(): string;
|
|
6033
6049
|
get collapsed(): boolean;
|
|
@@ -6041,27 +6057,27 @@ declare class LayerGroupComponent implements OnInit {
|
|
|
6041
6057
|
handleExpand(): void;
|
|
6042
6058
|
handleSelect(event: MatCheckboxChange): void;
|
|
6043
6059
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerGroupComponent, never>;
|
|
6044
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerGroupComponent, "igo-layer-group", never, { "layer": { "alias": "layer"; "required": false; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "selectionDisabled": { "alias": "selectionDisabled"; "required": false; }; }, { "action": "action"; "visibilityChange": "visibilityChange"; "expand": "expand"; "selectChange": "selectChange"; }, never, ["*"], true, never>;
|
|
6060
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerGroupComponent, "igo-layer-group", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "selectionDisabled": { "alias": "selectionDisabled"; "required": false; "isSignal": true; }; }, { "action": "action"; "visibilityChange": "visibilityChange"; "expand": "expand"; "selectChange": "selectChange"; }, never, ["*"], true, never>;
|
|
6045
6061
|
}
|
|
6046
6062
|
|
|
6047
6063
|
declare class LayerItemComponent implements OnInit, OnDestroy {
|
|
6048
6064
|
private networkService;
|
|
6049
|
-
showLegend
|
|
6050
|
-
inResolutionRange
|
|
6051
|
-
queryBadgeHidden
|
|
6065
|
+
showLegend: i0.WritableSignal<boolean>;
|
|
6066
|
+
inResolutionRange: boolean;
|
|
6067
|
+
queryBadgeHidden: i0.WritableSignal<boolean>;
|
|
6052
6068
|
tooltipText: string;
|
|
6053
6069
|
state: ConnectionState;
|
|
6054
6070
|
private resolution$$;
|
|
6055
6071
|
private network$$;
|
|
6056
|
-
layer: Layer
|
|
6072
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
6057
6073
|
/** Pass the visibility to trigger change detection */
|
|
6058
|
-
visible: boolean
|
|
6059
|
-
selected: boolean
|
|
6060
|
-
selectionDisabled: boolean
|
|
6061
|
-
viewerOptions: LayerViewerOptions
|
|
6062
|
-
action:
|
|
6063
|
-
selectChange:
|
|
6064
|
-
visibilityChange:
|
|
6074
|
+
readonly visible: i0.InputSignal<boolean>;
|
|
6075
|
+
readonly selected: i0.InputSignal<boolean>;
|
|
6076
|
+
readonly selectionDisabled: i0.InputSignal<boolean>;
|
|
6077
|
+
readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
|
|
6078
|
+
readonly action: i0.OutputEmitterRef<Layer>;
|
|
6079
|
+
readonly selectChange: i0.OutputEmitterRef<boolean>;
|
|
6080
|
+
readonly visibilityChange: i0.OutputEmitterRef<Event>;
|
|
6065
6081
|
isDisabled: boolean;
|
|
6066
6082
|
get opacity(): number;
|
|
6067
6083
|
set opacity(opacity: number);
|
|
@@ -6077,7 +6093,7 @@ declare class LayerItemComponent implements OnInit, OnDestroy {
|
|
|
6077
6093
|
toggleLayerTool(): void;
|
|
6078
6094
|
handleSelect(event: MatCheckboxChange): void;
|
|
6079
6095
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerItemComponent, never>;
|
|
6080
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerItemComponent, "igo-layer-item", never, { "layer": { "alias": "layer"; "required": true; }; "visible": { "alias": "visible"; "required": true; }; "selected": { "alias": "selected"; "required": false; }; "selectionDisabled": { "alias": "selectionDisabled"; "required": false; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; }; }, { "action": "action"; "selectChange": "selectChange"; "visibilityChange": "visibilityChange"; }, never, ["*"], true, never>;
|
|
6096
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerItemComponent, "igo-layer-item", never, { "layer": { "alias": "layer"; "required": true; "isSignal": true; }; "visible": { "alias": "visible"; "required": true; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "selectionDisabled": { "alias": "selectionDisabled"; "required": false; "isSignal": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; "isSignal": true; }; }, { "action": "action"; "selectChange": "selectChange"; "visibilityChange": "visibilityChange"; }, never, ["*"], true, never>;
|
|
6081
6097
|
}
|
|
6082
6098
|
|
|
6083
6099
|
declare class LayerLegendItemComponent implements OnInit, OnDestroy {
|
|
@@ -6087,14 +6103,14 @@ declare class LayerLegendItemComponent implements OnInit, OnDestroy {
|
|
|
6087
6103
|
state: ConnectionState;
|
|
6088
6104
|
private resolution$$;
|
|
6089
6105
|
private network$$;
|
|
6090
|
-
layer: Layer
|
|
6091
|
-
updateLegendOnResolutionChange: boolean
|
|
6106
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
6107
|
+
readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
|
|
6092
6108
|
ngOnInit(): void;
|
|
6093
6109
|
ngOnDestroy(): void;
|
|
6094
6110
|
computeTooltip(): string;
|
|
6095
6111
|
private onResolutionChange;
|
|
6096
6112
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerLegendItemComponent, never>;
|
|
6097
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendItemComponent, "igo-layer-legend-item", never, { "layer": { "alias": "layer"; "required": false; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; }; }, {}, never, never, true, never>;
|
|
6113
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendItemComponent, "igo-layer-legend-item", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6098
6114
|
}
|
|
6099
6115
|
|
|
6100
6116
|
declare class ImageWatcher extends Watcher {
|
|
@@ -6164,29 +6180,27 @@ declare class VectorWatcher extends Watcher {
|
|
|
6164
6180
|
private handleLoadEnd;
|
|
6165
6181
|
}
|
|
6166
6182
|
|
|
6167
|
-
declare class LayerLegendListComponent
|
|
6183
|
+
declare class LayerLegendListComponent {
|
|
6168
6184
|
orderable: boolean;
|
|
6169
|
-
hasVisibleOrInRangeLayers
|
|
6170
|
-
hasVisibleAndNotInRangeLayers
|
|
6171
|
-
layersInUi
|
|
6172
|
-
|
|
6185
|
+
hasVisibleOrInRangeLayers: i0.WritableSignal<boolean>;
|
|
6186
|
+
hasVisibleAndNotInRangeLayers: i0.WritableSignal<boolean>;
|
|
6187
|
+
layersInUi: i0.WritableSignal<AnyLayer[]>;
|
|
6188
|
+
layersLegend: i0.WritableSignal<AnyLayer[]>;
|
|
6173
6189
|
showAllLegend: boolean;
|
|
6174
|
-
|
|
6175
|
-
|
|
6176
|
-
|
|
6177
|
-
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
showAllLegendsValue: boolean;
|
|
6181
|
-
allLegendsShown: EventEmitter<boolean>;
|
|
6190
|
+
readonly layers: i0.ModelSignal<AnyLayer[]>;
|
|
6191
|
+
readonly excludeBaseLayers: i0.InputSignal<boolean>;
|
|
6192
|
+
readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
|
|
6193
|
+
readonly allowShowAllLegends: i0.InputSignal<boolean>;
|
|
6194
|
+
showAllLegendsValue: i0.ModelSignal<boolean>;
|
|
6195
|
+
readonly allLegendsShown: i0.OutputEmitterRef<boolean>;
|
|
6182
6196
|
isLayerItem: typeof isLayerItem;
|
|
6183
|
-
|
|
6184
|
-
|
|
6185
|
-
private next;
|
|
6197
|
+
constructor();
|
|
6198
|
+
private handleLayersChange;
|
|
6186
6199
|
private computeShownLayers;
|
|
6187
6200
|
toggleShowAllLegends(toggle: boolean): void;
|
|
6201
|
+
setLayers(layers: AnyLayer[]): void;
|
|
6188
6202
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerLegendListComponent, never>;
|
|
6189
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendListComponent, "igo-layer-legend-list", never, { "layers": { "alias": "layers"; "required": false; }; "excludeBaseLayers": { "alias": "excludeBaseLayers"; "required": false; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; }; "allowShowAllLegends": { "alias": "allowShowAllLegends"; "required": false; }; "showAllLegendsValue": { "alias": "showAllLegendsValue"; "required": false; }; }, { "allLegendsShown": "allLegendsShown"; }, never, never, true, never>;
|
|
6203
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendListComponent, "igo-layer-legend-list", never, { "layers": { "alias": "layers"; "required": false; "isSignal": true; }; "excludeBaseLayers": { "alias": "excludeBaseLayers"; "required": false; "isSignal": true; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; "isSignal": true; }; "allowShowAllLegends": { "alias": "allowShowAllLegends"; "required": false; "isSignal": true; }; "showAllLegendsValue": { "alias": "showAllLegendsValue"; "required": false; "isSignal": true; }; }, { "layers": "layersChange"; "showAllLegendsValue": "showAllLegendsValueChange"; "allLegendsShown": "allLegendsShown"; }, never, never, true, never>;
|
|
6190
6204
|
}
|
|
6191
6205
|
|
|
6192
6206
|
declare class LayerLegendListBindingDirective implements OnInit, OnDestroy {
|
|
@@ -6207,7 +6221,7 @@ declare class LayerLegendComponent implements OnInit, OnDestroy {
|
|
|
6207
6221
|
private cdRef;
|
|
6208
6222
|
private config;
|
|
6209
6223
|
private http;
|
|
6210
|
-
updateLegendOnResolutionChange: boolean
|
|
6224
|
+
readonly updateLegendOnResolutionChange: i0.InputSignal<boolean>;
|
|
6211
6225
|
/**
|
|
6212
6226
|
* Observable of the legend items
|
|
6213
6227
|
*/
|
|
@@ -6231,12 +6245,12 @@ declare class LayerLegendComponent implements OnInit, OnDestroy {
|
|
|
6231
6245
|
/**
|
|
6232
6246
|
* Get list of images display
|
|
6233
6247
|
*/
|
|
6234
|
-
renderedLegends:
|
|
6248
|
+
readonly renderedLegends: i0.Signal<readonly ElementRef<any>[]>;
|
|
6235
6249
|
/**
|
|
6236
6250
|
* List of size of images displayed
|
|
6237
6251
|
*/
|
|
6238
6252
|
imagesHeight: Record<string, number>;
|
|
6239
|
-
layer: Layer
|
|
6253
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
6240
6254
|
/**
|
|
6241
6255
|
* if getLegendGraphic is authorized
|
|
6242
6256
|
*/
|
|
@@ -6267,26 +6281,26 @@ declare class LayerLegendComponent implements OnInit, OnDestroy {
|
|
|
6267
6281
|
onChangeStyle(): void;
|
|
6268
6282
|
onLoadImage(id: string): void;
|
|
6269
6283
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerLegendComponent, never>;
|
|
6270
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendComponent, "igo-layer-legend", never, { "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; }; "layer": { "alias": "layer"; "required": false; }; }, {}, never, never, true, never>;
|
|
6284
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerLegendComponent, "igo-layer-legend", never, { "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; "isSignal": true; }; "layer": { "alias": "layer"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6271
6285
|
}
|
|
6272
6286
|
|
|
6273
6287
|
declare class LayerListToolComponent {
|
|
6274
6288
|
private layerListToolService;
|
|
6275
|
-
mode:
|
|
6276
|
-
viewerOptions: LayerViewerOptions
|
|
6277
|
-
floatLabel: FloatLabelType
|
|
6278
|
-
onlyVisible: boolean
|
|
6279
|
-
term: string
|
|
6280
|
-
searchChange:
|
|
6281
|
-
visibilityOnlyChange:
|
|
6282
|
-
modeChange:
|
|
6283
|
-
addedLayer:
|
|
6289
|
+
readonly mode: i0.InputSignal<"selection">;
|
|
6290
|
+
readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
|
|
6291
|
+
readonly floatLabel: i0.InputSignal<FloatLabelType>;
|
|
6292
|
+
readonly onlyVisible: i0.InputSignal<boolean>;
|
|
6293
|
+
readonly term: i0.InputSignal<string>;
|
|
6294
|
+
readonly searchChange: i0.OutputEmitterRef<string>;
|
|
6295
|
+
readonly visibilityOnlyChange: i0.OutputEmitterRef<boolean>;
|
|
6296
|
+
readonly modeChange: i0.OutputEmitterRef<boolean>;
|
|
6297
|
+
readonly addedLayer: i0.OutputEmitterRef<LayerGroup>;
|
|
6284
6298
|
get selectionActive(): boolean;
|
|
6285
6299
|
handleTermChange(value: string | undefined): void;
|
|
6286
6300
|
toggleSelectionMode(): void;
|
|
6287
6301
|
createGroup(): void;
|
|
6288
6302
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerListToolComponent, never>;
|
|
6289
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerListToolComponent, "igo-layer-list-tool", never, { "mode": { "alias": "mode"; "required": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "onlyVisible": { "alias": "onlyVisible"; "required": false; }; "term": { "alias": "term"; "required": false; }; }, { "searchChange": "searchChange"; "visibilityOnlyChange": "visibilityOnlyChange"; "modeChange": "modeChange"; "addedLayer": "addedLayer"; }, never, never, true, never>;
|
|
6303
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerListToolComponent, "igo-layer-list-tool", never, { "mode": { "alias": "mode"; "required": true; "isSignal": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; "isSignal": true; }; "floatLabel": { "alias": "floatLabel"; "required": false; "isSignal": true; }; "onlyVisible": { "alias": "onlyVisible"; "required": false; "isSignal": true; }; "term": { "alias": "term"; "required": false; "isSignal": true; }; }, { "searchChange": "searchChange"; "visibilityOnlyChange": "visibilityOnlyChange"; "modeChange": "modeChange"; "addedLayer": "addedLayer"; }, never, never, true, never>;
|
|
6290
6304
|
}
|
|
6291
6305
|
|
|
6292
6306
|
declare class LayerListToolService {
|
|
@@ -6303,15 +6317,13 @@ declare class LayerListComponent {
|
|
|
6303
6317
|
private messageService;
|
|
6304
6318
|
toggleOpacity: boolean;
|
|
6305
6319
|
isInit: boolean;
|
|
6306
|
-
controller: LayerController
|
|
6307
|
-
|
|
6308
|
-
|
|
6309
|
-
|
|
6310
|
-
|
|
6311
|
-
|
|
6312
|
-
|
|
6313
|
-
viewerOptions: LayerViewerOptions;
|
|
6314
|
-
activeChange: EventEmitter<AnyLayer>;
|
|
6320
|
+
readonly controller: i0.InputSignal<LayerController>;
|
|
6321
|
+
readonly layers: i0.InputSignal<AnyLayer[]>;
|
|
6322
|
+
readonly isDesktop: i0.InputSignal<boolean>;
|
|
6323
|
+
readonly isDragDropDisabled: i0.InputSignal<boolean>;
|
|
6324
|
+
readonly selectAll: i0.InputSignal<boolean>;
|
|
6325
|
+
readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
|
|
6326
|
+
readonly activeChange: i0.OutputEmitterRef<AnyLayer>;
|
|
6315
6327
|
private _transformer;
|
|
6316
6328
|
treeControl: FlatTreeControl<LayerFlatNode<AnyLayer>, LayerFlatNode<AnyLayer>>;
|
|
6317
6329
|
treeFlattener: MatTreeFlattener<AnyLayer, LayerFlatNode<AnyLayer>, LayerFlatNode<AnyLayer>>;
|
|
@@ -6336,47 +6348,47 @@ declare class LayerListComponent {
|
|
|
6336
6348
|
private expandGroup;
|
|
6337
6349
|
private restoreModel;
|
|
6338
6350
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerListComponent, never>;
|
|
6339
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerListComponent, "igo-layer-list", never, { "controller": { "alias": "controller"; "required": true; }; "layers": { "alias": "layers"; "required": true; }; "isDesktop": { "alias": "isDesktop"; "required": false; }; "isDragDropDisabled": { "alias": "isDragDropDisabled"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; }; }, { "activeChange": "activeChange"; }, never, never, true, never>;
|
|
6351
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerListComponent, "igo-layer-list", never, { "controller": { "alias": "controller"; "required": true; "isSignal": true; }; "layers": { "alias": "layers"; "required": true; "isSignal": true; }; "isDesktop": { "alias": "isDesktop"; "required": false; "isSignal": true; }; "isDragDropDisabled": { "alias": "isDragDropDisabled"; "required": false; "isSignal": true; }; "selectAll": { "alias": "selectAll"; "required": false; "isSignal": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; "isSignal": true; }; }, { "activeChange": "activeChange"; }, never, never, true, never>;
|
|
6340
6352
|
}
|
|
6341
6353
|
|
|
6342
6354
|
declare class LayerSearchComponent implements OnInit {
|
|
6343
6355
|
control: FormControl<any>;
|
|
6344
|
-
initialValue: string
|
|
6345
|
-
floatLabel: FloatLabelType
|
|
6346
|
-
placeholder: string
|
|
6347
|
-
tooltip: string
|
|
6348
|
-
searchChange:
|
|
6356
|
+
readonly initialValue: i0.InputSignal<string>;
|
|
6357
|
+
readonly floatLabel: i0.InputSignal<FloatLabelType>;
|
|
6358
|
+
readonly placeholder: i0.InputSignal<string>;
|
|
6359
|
+
readonly tooltip: i0.InputSignal<string>;
|
|
6360
|
+
readonly searchChange: i0.OutputEmitterRef<string>;
|
|
6349
6361
|
ngOnInit(): void;
|
|
6350
6362
|
clearTerm(): void;
|
|
6351
6363
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerSearchComponent, never>;
|
|
6352
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerSearchComponent, "igo-layer-search", never, { "initialValue": { "alias": "initialValue"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, { "searchChange": "searchChange"; }, never, never, true, never>;
|
|
6364
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerSearchComponent, "igo-layer-search", never, { "initialValue": { "alias": "initialValue"; "required": false; "isSignal": true; }; "floatLabel": { "alias": "floatLabel"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, { "searchChange": "searchChange"; }, never, never, true, never>;
|
|
6353
6365
|
}
|
|
6354
6366
|
|
|
6355
6367
|
declare class LayerUnavailableComponent {
|
|
6356
|
-
layerOptions: AnyLayerItemOptions
|
|
6357
|
-
remove:
|
|
6368
|
+
readonly layerOptions: i0.InputSignal<AnyLayerItemOptions>;
|
|
6369
|
+
readonly remove: i0.OutputEmitterRef<AnyLayerOptions>;
|
|
6358
6370
|
get title(): string | undefined;
|
|
6359
6371
|
handleRemove(layerOptions: AnyLayerOptions): void;
|
|
6360
6372
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerUnavailableComponent, never>;
|
|
6361
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerUnavailableComponent, "igo-layer-unavailable", never, { "layerOptions": { "alias": "layerOptions"; "required": false; }; }, { "remove": "remove"; }, never, never, true, never>;
|
|
6373
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerUnavailableComponent, "igo-layer-unavailable", never, { "layerOptions": { "alias": "layerOptions"; "required": false; "isSignal": true; }; }, { "remove": "remove"; }, never, never, true, never>;
|
|
6362
6374
|
}
|
|
6363
6375
|
|
|
6364
6376
|
declare class LayerUnavailableListComponent {
|
|
6365
6377
|
private layerService;
|
|
6366
|
-
layersOptions: AnyLayerOptions[]
|
|
6378
|
+
readonly layersOptions: i0.InputSignal<AnyLayerOptions[]>;
|
|
6367
6379
|
deleteUnavailableLayer(options: AnyLayerOptions): void;
|
|
6368
6380
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerUnavailableListComponent, never>;
|
|
6369
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerUnavailableListComponent, "igo-layer-unavailable-list", never, { "layersOptions": { "alias": "layersOptions"; "required": false; }; }, {}, never, never, true, never>;
|
|
6381
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerUnavailableListComponent, "igo-layer-unavailable-list", never, { "layersOptions": { "alias": "layersOptions"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6370
6382
|
}
|
|
6371
6383
|
|
|
6372
6384
|
declare class LayerViewerBottomActionsComponent {
|
|
6373
6385
|
private layerListToolService;
|
|
6374
6386
|
orderable: boolean;
|
|
6375
|
-
map: MapBase
|
|
6376
|
-
controller: LayerController
|
|
6377
|
-
searchTerm: string
|
|
6378
|
-
viewerOptions: LayerViewerOptions
|
|
6379
|
-
layerChange:
|
|
6387
|
+
readonly map: i0.InputSignal<MapBase>;
|
|
6388
|
+
readonly controller: i0.InputSignal<LayerController>;
|
|
6389
|
+
readonly searchTerm: i0.InputSignal<string>;
|
|
6390
|
+
readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
|
|
6391
|
+
readonly layerChange: i0.OutputEmitterRef<void>;
|
|
6380
6392
|
get layersFlattened(): AnyLayer[];
|
|
6381
6393
|
get hasMultipleSelection(): boolean;
|
|
6382
6394
|
get selected(): AnyLayer[];
|
|
@@ -6401,7 +6413,7 @@ declare class LayerViewerBottomActionsComponent {
|
|
|
6401
6413
|
private getRecipientOfVisibleLayer;
|
|
6402
6414
|
private isLayerRemovable;
|
|
6403
6415
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerViewerBottomActionsComponent, never>;
|
|
6404
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerViewerBottomActionsComponent, "igo-layer-viewer-bottom-actions", never, { "map": { "alias": "map"; "required": true; }; "controller": { "alias": "controller"; "required": true; }; "searchTerm": { "alias": "searchTerm"; "required": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; }; }, { "layerChange": "layerChange"; }, never, ["*"], true, never>;
|
|
6416
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerViewerBottomActionsComponent, "igo-layer-viewer-bottom-actions", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "controller": { "alias": "controller"; "required": true; "isSignal": true; }; "searchTerm": { "alias": "searchTerm"; "required": true; "isSignal": true; }; "viewerOptions": { "alias": "viewerOptions"; "required": false; "isSignal": true; }; }, { "layerChange": "layerChange"; }, never, ["*"], true, never>;
|
|
6405
6417
|
}
|
|
6406
6418
|
|
|
6407
6419
|
declare class LayerViewerComponent implements OnInit {
|
|
@@ -6412,12 +6424,12 @@ declare class LayerViewerComponent implements OnInit {
|
|
|
6412
6424
|
keyword$: BehaviorSubject<string>;
|
|
6413
6425
|
mode: LayerToolMode;
|
|
6414
6426
|
isDragDropDisabled: boolean;
|
|
6415
|
-
map: MapBase
|
|
6416
|
-
options: LayerViewerOptions
|
|
6417
|
-
isDesktop: boolean
|
|
6418
|
-
excludeBaseLayers: boolean
|
|
6419
|
-
appliedFilterAndSort:
|
|
6420
|
-
customBottomActions: TemplateRef<
|
|
6427
|
+
readonly map: i0.InputSignal<MapBase>;
|
|
6428
|
+
readonly options: i0.InputSignal<LayerViewerOptions>;
|
|
6429
|
+
readonly isDesktop: i0.InputSignal<boolean>;
|
|
6430
|
+
readonly excludeBaseLayers: i0.InputSignal<boolean>;
|
|
6431
|
+
readonly appliedFilterAndSort: i0.OutputEmitterRef<LayerListControlsOptions>;
|
|
6432
|
+
readonly customBottomActions: i0.Signal<TemplateRef<any>>;
|
|
6421
6433
|
get layerViewerOptions(): LayerViewerOptions;
|
|
6422
6434
|
get layerController(): LayerController;
|
|
6423
6435
|
get unavailableLayers(): LayerOptionsBase[];
|
|
@@ -6443,7 +6455,7 @@ declare class LayerViewerComponent implements OnInit {
|
|
|
6443
6455
|
private layerHasTerm;
|
|
6444
6456
|
private normalizeString;
|
|
6445
6457
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerViewerComponent, never>;
|
|
6446
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerViewerComponent, "igo-layer-viewer", never, { "map": { "alias": "map"; "required": true; }; "options": { "alias": "options"; "required": false; }; "isDesktop": { "alias": "isDesktop"; "required": false; }; "excludeBaseLayers": { "alias": "excludeBaseLayers"; "required": false; }; }, { "appliedFilterAndSort": "appliedFilterAndSort"; }, ["customBottomActions"], ["[emptyList]", "*"], true, never>;
|
|
6458
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerViewerComponent, "igo-layer-viewer", never, { "map": { "alias": "map"; "required": true; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "isDesktop": { "alias": "isDesktop"; "required": false; "isSignal": true; }; "excludeBaseLayers": { "alias": "excludeBaseLayers"; "required": false; "isSignal": true; }; }, { "appliedFilterAndSort": "appliedFilterAndSort"; }, ["customBottomActions"], ["[emptyList]", "*"], true, never>;
|
|
6447
6459
|
}
|
|
6448
6460
|
|
|
6449
6461
|
declare class LayerVisibilityButtonComponent implements OnInit {
|
|
@@ -6451,38 +6463,37 @@ declare class LayerVisibilityButtonComponent implements OnInit {
|
|
|
6451
6463
|
eyeClosedSvg: IconSvg;
|
|
6452
6464
|
hiddenByParent?: boolean;
|
|
6453
6465
|
visible: boolean;
|
|
6454
|
-
layer: AnyLayer
|
|
6455
|
-
tooltip: string
|
|
6456
|
-
disabled: boolean
|
|
6457
|
-
showQueryBadge: boolean
|
|
6458
|
-
inResolutionsRange: boolean
|
|
6466
|
+
readonly layer: i0.InputSignal<AnyLayer>;
|
|
6467
|
+
readonly tooltip: i0.InputSignal<string>;
|
|
6468
|
+
readonly disabled: i0.InputSignal<boolean>;
|
|
6469
|
+
readonly showQueryBadge: i0.InputSignal<boolean>;
|
|
6470
|
+
readonly inResolutionsRange: i0.InputSignal<boolean>;
|
|
6459
6471
|
get defaultTooltip(): string;
|
|
6460
|
-
visibilityChange:
|
|
6472
|
+
readonly visibilityChange: i0.OutputEmitterRef<Event>;
|
|
6461
6473
|
ngOnInit(): void;
|
|
6462
6474
|
toggle(event: Event): void;
|
|
6463
6475
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerVisibilityButtonComponent, never>;
|
|
6464
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayerVisibilityButtonComponent, "igo-layer-visibility-button", never, { "layer": { "alias": "layer"; "required": true; }; "tooltip": { "alias": "tooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showQueryBadge": { "alias": "showQueryBadge"; "required": false; }; "inResolutionsRange": { "alias": "inResolutionsRange"; "required": false; }; }, { "visibilityChange": "visibilityChange"; }, never, never, true, never>;
|
|
6476
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayerVisibilityButtonComponent, "igo-layer-visibility-button", never, { "layer": { "alias": "layer"; "required": true; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "showQueryBadge": { "alias": "showQueryBadge"; "required": false; "isSignal": true; }; "inResolutionsRange": { "alias": "inResolutionsRange"; "required": false; "isSignal": true; }; }, { "visibilityChange": "visibilityChange"; }, never, never, true, never>;
|
|
6465
6477
|
}
|
|
6466
6478
|
|
|
6467
6479
|
declare class TrackFeatureButtonComponent implements OnInit {
|
|
6468
|
-
layer: VectorLayer
|
|
6469
|
-
trackFeature: boolean
|
|
6470
|
-
get options(): VectorLayerOptions;
|
|
6480
|
+
readonly layer: i0.InputSignal<VectorLayer>;
|
|
6481
|
+
trackFeature: i0.ModelSignal<boolean>;
|
|
6471
6482
|
color: string;
|
|
6472
6483
|
ngOnInit(): void;
|
|
6473
6484
|
toggleTrackFeature(): void;
|
|
6474
6485
|
static ɵfac: i0.ɵɵFactoryDeclaration<TrackFeatureButtonComponent, never>;
|
|
6475
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TrackFeatureButtonComponent, "igo-track-feature-button", never, { "layer": { "alias": "layer"; "required": false; }; "trackFeature": { "alias": "trackFeature"; "required": false; }; }, {}, never, never, true, never>;
|
|
6486
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TrackFeatureButtonComponent, "igo-track-feature-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "trackFeature": { "alias": "trackFeature"; "required": false; "isSignal": true; }; }, { "trackFeature": "trackFeatureChange"; }, never, never, true, never>;
|
|
6476
6487
|
}
|
|
6477
6488
|
|
|
6478
6489
|
declare class DownloadButtonComponent {
|
|
6479
6490
|
private downloadService;
|
|
6480
|
-
layer: Layer
|
|
6481
|
-
color: string
|
|
6491
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
6492
|
+
readonly color: i0.InputSignal<string>;
|
|
6493
|
+
readonly options: i0.Signal<DownloadDataSourceOptions>;
|
|
6482
6494
|
openDownload(): void;
|
|
6483
|
-
get options(): DownloadDataSourceOptions;
|
|
6484
6495
|
static ɵfac: i0.ɵɵFactoryDeclaration<DownloadButtonComponent, never>;
|
|
6485
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DownloadButtonComponent, "igo-download-button", never, { "layer": { "alias": "layer"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
6496
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DownloadButtonComponent, "igo-download-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6486
6497
|
}
|
|
6487
6498
|
|
|
6488
6499
|
/**
|
|
@@ -6496,14 +6507,14 @@ declare class IgoDownloadModule {
|
|
|
6496
6507
|
}
|
|
6497
6508
|
|
|
6498
6509
|
declare class ExportButtonComponent {
|
|
6499
|
-
layer: Layer
|
|
6500
|
-
color: string
|
|
6501
|
-
|
|
6502
|
-
layerIsExportable(): boolean;
|
|
6510
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
6511
|
+
readonly color: i0.InputSignal<string>;
|
|
6512
|
+
readonly isExportable: i0.Signal<boolean>;
|
|
6503
6513
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExportButtonComponent, never>;
|
|
6504
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ExportButtonComponent, "igo-export-button", never, { "layer": { "alias": "layer"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
6514
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExportButtonComponent, "igo-export-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6505
6515
|
}
|
|
6506
6516
|
|
|
6517
|
+
declare const RADIUS_NAME = "rad";
|
|
6507
6518
|
interface ExportOptions {
|
|
6508
6519
|
format?: AnyExportFormat;
|
|
6509
6520
|
layers: string[];
|
|
@@ -6577,20 +6588,18 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
|
|
|
6577
6588
|
popupChecked: boolean;
|
|
6578
6589
|
private configFormats;
|
|
6579
6590
|
private previousLayerSpecs$;
|
|
6580
|
-
selectFirstProj: boolean
|
|
6581
|
-
map: IgoMap
|
|
6582
|
-
contextUri: string
|
|
6583
|
-
|
|
6584
|
-
set projectionsLimitations(value: ProjectionsLimitationsOptions);
|
|
6585
|
-
get projectionsLimitations(): ProjectionsLimitationsOptions;
|
|
6591
|
+
readonly selectFirstProj: i0.InputSignal<boolean>;
|
|
6592
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
6593
|
+
readonly contextUri: i0.InputSignal<string>;
|
|
6594
|
+
readonly projectionsLimitations: i0.InputSignal<ProjectionsLimitationsOptions>;
|
|
6586
6595
|
/**
|
|
6587
6596
|
* Store that holds the available workspaces.
|
|
6588
6597
|
*/
|
|
6589
|
-
store: WorkspaceStore
|
|
6590
|
-
selectedMode: SelectMode
|
|
6591
|
-
selectMode:
|
|
6592
|
-
exportOptions$: BehaviorSubject<ExportOptions
|
|
6593
|
-
exportOptionsChange:
|
|
6598
|
+
readonly store: i0.InputSignal<WorkspaceStore>;
|
|
6599
|
+
readonly selectedMode: i0.ModelSignal<SelectMode>;
|
|
6600
|
+
readonly selectMode: i0.OutputEmitterRef<SelectMode>;
|
|
6601
|
+
readonly exportOptions$: i0.InputSignal<BehaviorSubject<ExportOptions>>;
|
|
6602
|
+
readonly exportOptionsChange: i0.OutputEmitterRef<ExportOptions>;
|
|
6594
6603
|
get layers(): any;
|
|
6595
6604
|
set layers(value: any);
|
|
6596
6605
|
get inputProj(): any;
|
|
@@ -6633,7 +6642,7 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
|
|
|
6633
6642
|
private onFileExportSuccess;
|
|
6634
6643
|
onImportExportChange(event: any): void;
|
|
6635
6644
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImportExportComponent, never>;
|
|
6636
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ImportExportComponent, "igo-import-export", never, { "selectFirstProj": { "alias": "selectFirstProj"; "required": false; }; "map": { "alias": "map"; "required": false; }; "contextUri": { "alias": "contextUri"; "required": false; }; "projectionsLimitations": { "alias": "projectionsLimitations"; "required": false; }; "store": { "alias": "store"; "required": false; }; "selectedMode": { "alias": "selectedMode"; "required": false; }; "exportOptions$": { "alias": "exportOptions$"; "required": false; }; }, { "selectMode": "selectMode"; "exportOptionsChange": "exportOptionsChange"; }, never, never, true, never>;
|
|
6645
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImportExportComponent, "igo-import-export", never, { "selectFirstProj": { "alias": "selectFirstProj"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "contextUri": { "alias": "contextUri"; "required": false; "isSignal": true; }; "projectionsLimitations": { "alias": "projectionsLimitations"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; "selectedMode": { "alias": "selectedMode"; "required": false; "isSignal": true; }; "exportOptions$": { "alias": "exportOptions$"; "required": false; "isSignal": true; }; }, { "selectedMode": "selectedModeChange"; "selectMode": "selectMode"; "exportOptionsChange": "exportOptionsChange"; }, never, never, true, never>;
|
|
6637
6646
|
}
|
|
6638
6647
|
|
|
6639
6648
|
declare class DropGeoFileDirective extends DragAndDropDirective implements OnInit, OnDestroy {
|
|
@@ -6645,12 +6654,10 @@ declare class DropGeoFileDirective extends DragAndDropDirective implements OnIni
|
|
|
6645
6654
|
private messageService;
|
|
6646
6655
|
private layerService;
|
|
6647
6656
|
private confirmDialogService;
|
|
6648
|
-
protected filesDropped: EventEmitter<File[]>;
|
|
6649
|
-
protected filesInvalid: EventEmitter<File[]>;
|
|
6650
6657
|
private epsgCode$$;
|
|
6651
6658
|
private filesDropped$$;
|
|
6652
6659
|
get map(): IgoMap;
|
|
6653
|
-
contextUri: string
|
|
6660
|
+
readonly contextUri: i0.InputSignal<string>;
|
|
6654
6661
|
ngOnInit(): void;
|
|
6655
6662
|
ngOnDestroy(): void;
|
|
6656
6663
|
onDragOver(evt: any): void;
|
|
@@ -6660,7 +6667,7 @@ declare class DropGeoFileDirective extends DragAndDropDirective implements OnIni
|
|
|
6660
6667
|
private onFileImportSuccess;
|
|
6661
6668
|
private onFileImportError;
|
|
6662
6669
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropGeoFileDirective, never>;
|
|
6663
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropGeoFileDirective, "[igoDropGeoFile]", never, { "contextUri": { "alias": "contextUri"; "required": false; }; }, {}, never, never, true, never>;
|
|
6670
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropGeoFileDirective, "[igoDropGeoFile]", never, { "contextUri": { "alias": "contextUri"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6664
6671
|
}
|
|
6665
6672
|
|
|
6666
6673
|
declare const IMPORT_EXPORT_DIRECTIVES: readonly [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent];
|
|
@@ -6743,12 +6750,12 @@ interface MetadataLayerOptions extends LayerOptions {
|
|
|
6743
6750
|
declare class MetadataButtonComponent {
|
|
6744
6751
|
private metadataService;
|
|
6745
6752
|
private dialog;
|
|
6746
|
-
layer: Layer
|
|
6747
|
-
color: string
|
|
6753
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
6754
|
+
readonly color: i0.InputSignal<string>;
|
|
6748
6755
|
openMetadata(metadata: MetadataOptions): void;
|
|
6749
6756
|
get options(): MetadataLayerOptions;
|
|
6750
6757
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataButtonComponent, never>;
|
|
6751
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataButtonComponent, "igo-metadata-button", never, { "layer": { "alias": "layer"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
6758
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataButtonComponent, "igo-metadata-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6752
6759
|
}
|
|
6753
6760
|
declare class MetadataAbstractComponent {
|
|
6754
6761
|
data: MetadataOptions;
|
|
@@ -6794,23 +6801,23 @@ declare class QueryDirective implements AfterViewInit, OnDestroy {
|
|
|
6794
6801
|
/**
|
|
6795
6802
|
* Whter to query features or not
|
|
6796
6803
|
*/
|
|
6797
|
-
queryFeatures: boolean
|
|
6804
|
+
readonly queryFeatures: i0.InputSignal<boolean>;
|
|
6798
6805
|
/**
|
|
6799
6806
|
* Feature query hit tolerance
|
|
6800
6807
|
*/
|
|
6801
|
-
queryFeaturesHitTolerance: number
|
|
6808
|
+
readonly queryFeaturesHitTolerance: i0.InputSignal<number>;
|
|
6802
6809
|
/**
|
|
6803
6810
|
* Feature query hit tolerance
|
|
6804
6811
|
*/
|
|
6805
|
-
queryFeaturesCondition: (olLayer: OlLayer<olSource>) => boolean
|
|
6812
|
+
readonly queryFeaturesCondition: i0.InputSignal<(olLayer: OlLayer<olSource>) => boolean>;
|
|
6806
6813
|
/**
|
|
6807
6814
|
* Whether all query should complete before emitting an event
|
|
6808
6815
|
*/
|
|
6809
|
-
waitForAllQueries: boolean
|
|
6816
|
+
readonly waitForAllQueries: i0.InputSignal<boolean>;
|
|
6810
6817
|
/**
|
|
6811
6818
|
* Event emitted when a query (or all queries) complete
|
|
6812
6819
|
*/
|
|
6813
|
-
query:
|
|
6820
|
+
readonly query: i0.OutputEmitterRef<{
|
|
6814
6821
|
features: Feature[] | Feature[][];
|
|
6815
6822
|
event: MapBrowserPointerEvent<any>;
|
|
6816
6823
|
}>;
|
|
@@ -6860,7 +6867,7 @@ declare class QueryDirective implements AfterViewInit, OnDestroy {
|
|
|
6860
6867
|
*/
|
|
6861
6868
|
private removeDragBoxInteraction;
|
|
6862
6869
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueryDirective, never>;
|
|
6863
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<QueryDirective, "[igoQuery]", never, { "queryFeatures": { "alias": "queryFeatures"; "required": false; }; "queryFeaturesHitTolerance": { "alias": "queryFeaturesHitTolerance"; "required": false; }; "queryFeaturesCondition": { "alias": "queryFeaturesCondition"; "required": false; }; "waitForAllQueries": { "alias": "waitForAllQueries"; "required": false; }; }, { "query": "query"; }, never, never, true, never>;
|
|
6870
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<QueryDirective, "[igoQuery]", never, { "queryFeatures": { "alias": "queryFeatures"; "required": false; "isSignal": true; }; "queryFeaturesHitTolerance": { "alias": "queryFeaturesHitTolerance"; "required": false; "isSignal": true; }; "queryFeaturesCondition": { "alias": "queryFeaturesCondition"; "required": false; "isSignal": true; }; "waitForAllQueries": { "alias": "waitForAllQueries"; "required": false; "isSignal": true; }; }, { "query": "query"; }, never, never, true, never>;
|
|
6864
6871
|
}
|
|
6865
6872
|
|
|
6866
6873
|
declare class IgoQueryModule {
|
|
@@ -6954,11 +6961,11 @@ declare class SearchPointerSummaryDirective implements OnInit, OnDestroy, AfterC
|
|
|
6954
6961
|
/**
|
|
6955
6962
|
* The delay where the mouse must be motionless before trigger the reverse search
|
|
6956
6963
|
*/
|
|
6957
|
-
igoSearchPointerSummaryDelay: number
|
|
6964
|
+
readonly igoSearchPointerSummaryDelay: i0.InputSignal<number>;
|
|
6958
6965
|
/**
|
|
6959
6966
|
* If the user has enabled or not the directive
|
|
6960
6967
|
*/
|
|
6961
|
-
igoSearchPointerSummaryEnabled: boolean
|
|
6968
|
+
readonly igoSearchPointerSummaryEnabled: i0.InputSignal<boolean>;
|
|
6962
6969
|
mouseleave(): void;
|
|
6963
6970
|
/**
|
|
6964
6971
|
* IGO map
|
|
@@ -7040,7 +7047,7 @@ declare class SearchPointerSummaryDirective implements OnInit, OnDestroy, AfterC
|
|
|
7040
7047
|
*/
|
|
7041
7048
|
private clearLayer;
|
|
7042
7049
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchPointerSummaryDirective, never>;
|
|
7043
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SearchPointerSummaryDirective, "[igoSearchPointerSummary]", never, { "igoSearchPointerSummaryDelay": { "alias": "igoSearchPointerSummaryDelay"; "required": false; }; "igoSearchPointerSummaryEnabled": { "alias": "igoSearchPointerSummaryEnabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
7050
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SearchPointerSummaryDirective, "[igoSearchPointerSummary]", never, { "igoSearchPointerSummaryDelay": { "alias": "igoSearchPointerSummaryDelay"; "required": false; "isSignal": true; }; "igoSearchPointerSummaryEnabled": { "alias": "igoSearchPointerSummaryEnabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7044
7051
|
}
|
|
7045
7052
|
|
|
7046
7053
|
/**
|
|
@@ -7876,8 +7883,8 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
|
|
|
7876
7883
|
/**
|
|
7877
7884
|
* List of available search types
|
|
7878
7885
|
*/
|
|
7879
|
-
searchTypes: string[]
|
|
7880
|
-
withDivider: boolean
|
|
7886
|
+
readonly searchTypes: i0.InputSignal<string[]>;
|
|
7887
|
+
readonly withDivider: i0.InputSignal<boolean>;
|
|
7881
7888
|
/**
|
|
7882
7889
|
* Search term
|
|
7883
7890
|
*/
|
|
@@ -7887,15 +7894,15 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
|
|
|
7887
7894
|
/**
|
|
7888
7895
|
* Event emitted when the pointer summary is activated by the searchbar setting
|
|
7889
7896
|
*/
|
|
7890
|
-
pointerSummaryStatus:
|
|
7897
|
+
readonly pointerSummaryStatus: i0.OutputEmitterRef<boolean>;
|
|
7891
7898
|
/**
|
|
7892
7899
|
* Event emitted when the show geometry setting is changed
|
|
7893
7900
|
*/
|
|
7894
|
-
searchResultsGeometryStatus:
|
|
7901
|
+
readonly searchResultsGeometryStatus: i0.OutputEmitterRef<boolean>;
|
|
7895
7902
|
/**
|
|
7896
7903
|
* Event emitted when the coords format setting is changed
|
|
7897
7904
|
*/
|
|
7898
|
-
reverseSearchCoordsFormatStatus:
|
|
7905
|
+
readonly reverseSearchCoordsFormatStatus: i0.OutputEmitterRef<boolean>;
|
|
7899
7906
|
/**
|
|
7900
7907
|
* Search term
|
|
7901
7908
|
*/
|
|
@@ -7908,9 +7915,9 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
|
|
|
7908
7915
|
set disabled(value: boolean);
|
|
7909
7916
|
get disabled(): boolean;
|
|
7910
7917
|
readonly disabled$: BehaviorSubject<boolean>;
|
|
7911
|
-
pointerSummaryEnabled: boolean
|
|
7912
|
-
allowResetSearchSourcesOptions: boolean
|
|
7913
|
-
searchResultsGeometryEnabled: boolean
|
|
7918
|
+
readonly pointerSummaryEnabled: i0.InputSignal<boolean>;
|
|
7919
|
+
readonly allowResetSearchSourcesOptions: i0.InputSignal<boolean>;
|
|
7920
|
+
readonly searchResultsGeometryEnabled: i0.InputSignal<boolean>;
|
|
7914
7921
|
/**
|
|
7915
7922
|
* When reverse coordinates status change
|
|
7916
7923
|
*/
|
|
@@ -7920,67 +7927,67 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
|
|
|
7920
7927
|
/**
|
|
7921
7928
|
* Whether a float label should be displayed
|
|
7922
7929
|
*/
|
|
7923
|
-
floatLabel: FloatLabelType
|
|
7924
|
-
appearance: MatFormFieldAppearance
|
|
7925
|
-
placeholder: string
|
|
7926
|
-
label: string
|
|
7930
|
+
readonly floatLabel: i0.InputSignal<FloatLabelType>;
|
|
7931
|
+
readonly appearance: i0.InputSignal<MatFormFieldAppearance>;
|
|
7932
|
+
readonly placeholder: i0.InputSignal<string>;
|
|
7933
|
+
readonly label: i0.InputSignal<string>;
|
|
7927
7934
|
/**
|
|
7928
7935
|
* Icons color (search and clear)
|
|
7929
7936
|
*/
|
|
7930
|
-
color: string
|
|
7931
|
-
termSplitter: string
|
|
7937
|
+
readonly color: i0.InputSignal<string>;
|
|
7938
|
+
readonly termSplitter: i0.InputSignal<string>;
|
|
7932
7939
|
/**
|
|
7933
7940
|
* Debounce time between each keystroke
|
|
7934
7941
|
*/
|
|
7935
|
-
debounce: number
|
|
7942
|
+
readonly debounce: i0.InputSignal<number>;
|
|
7936
7943
|
/**
|
|
7937
7944
|
* Minimum term length required to trigger a research
|
|
7938
7945
|
*/
|
|
7939
|
-
minLength: number
|
|
7946
|
+
readonly minLength: i0.InputSignal<number>;
|
|
7940
7947
|
/**
|
|
7941
7948
|
* Search Selector
|
|
7942
7949
|
*/
|
|
7943
|
-
searchSelector: boolean
|
|
7950
|
+
readonly searchSelector: i0.InputSignal<boolean>;
|
|
7944
7951
|
/**
|
|
7945
7952
|
* Search Settings
|
|
7946
7953
|
*/
|
|
7947
|
-
searchSettings: boolean
|
|
7954
|
+
readonly searchSettings: i0.InputSignal<boolean>;
|
|
7948
7955
|
/**
|
|
7949
7956
|
* Force coordinates in north america
|
|
7950
7957
|
*/
|
|
7951
|
-
forceNA: boolean
|
|
7958
|
+
readonly forceNA: i0.InputSignal<boolean>;
|
|
7952
7959
|
/**
|
|
7953
7960
|
* Search results store
|
|
7954
7961
|
*/
|
|
7955
|
-
store: EntityStore<SearchResult
|
|
7962
|
+
readonly store: i0.InputSignal<EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>>;
|
|
7956
7963
|
/**
|
|
7957
7964
|
* Event emitted when the search term changes
|
|
7958
7965
|
*/
|
|
7959
|
-
searchTermChange:
|
|
7966
|
+
readonly searchTermChange: i0.OutputEmitterRef<string>;
|
|
7960
7967
|
/**
|
|
7961
7968
|
* Event emitted when a research is completed
|
|
7962
7969
|
*/
|
|
7963
|
-
search:
|
|
7970
|
+
readonly search: i0.OutputEmitterRef<{
|
|
7964
7971
|
research: Research;
|
|
7965
7972
|
results: SearchResult[];
|
|
7966
7973
|
}>;
|
|
7967
7974
|
/**
|
|
7968
7975
|
* Event emitted when the search type changes
|
|
7969
7976
|
*/
|
|
7970
|
-
searchTypeChange:
|
|
7977
|
+
readonly searchTypeChange: i0.OutputEmitterRef<string>;
|
|
7971
7978
|
/**
|
|
7972
7979
|
* Event emitted when the search type changes
|
|
7973
7980
|
*/
|
|
7974
|
-
clearFeature:
|
|
7981
|
+
readonly clearFeature: i0.OutputEmitterRef<void>;
|
|
7975
7982
|
/**
|
|
7976
7983
|
* Event emitted when the search settings changes
|
|
7977
7984
|
*/
|
|
7978
|
-
searchSettingsChange:
|
|
7985
|
+
readonly searchSettingsChange: i0.OutputEmitterRef<void>;
|
|
7979
7986
|
/**
|
|
7980
7987
|
* Input element
|
|
7981
7988
|
* @internal
|
|
7982
7989
|
*/
|
|
7983
|
-
input: ElementRef
|
|
7990
|
+
readonly input: i0.Signal<ElementRef<any>>;
|
|
7984
7991
|
/**
|
|
7985
7992
|
* Whether the search bar is empty
|
|
7986
7993
|
* @internal
|
|
@@ -8058,7 +8065,7 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
|
|
|
8058
8065
|
*/
|
|
8059
8066
|
private onResearchCompleted;
|
|
8060
8067
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchBarComponent, never>;
|
|
8061
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "igo-search-bar", never, { "searchTypes": { "alias": "searchTypes"; "required": false; }; "withDivider": { "alias": "withDivider"; "required": false; }; "searchType": { "alias": "searchType"; "required": false; }; "term": { "alias": "term"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pointerSummaryEnabled": { "alias": "pointerSummaryEnabled"; "required": false; }; "allowResetSearchSourcesOptions": { "alias": "allowResetSearchSourcesOptions"; "required": false; }; "searchResultsGeometryEnabled": { "alias": "searchResultsGeometryEnabled"; "required": false; }; "reverseSearchCoordsFormatEnabled": { "alias": "reverseSearchCoordsFormatEnabled"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "color": { "alias": "color"; "required": false; }; "termSplitter": { "alias": "termSplitter"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "searchSelector": { "alias": "searchSelector"; "required": false; }; "searchSettings": { "alias": "searchSettings"; "required": false; }; "forceNA": { "alias": "forceNA"; "required": false; }; "store": { "alias": "store"; "required": false; }; }, { "pointerSummaryStatus": "pointerSummaryStatus"; "searchResultsGeometryStatus": "searchResultsGeometryStatus"; "reverseSearchCoordsFormatStatus": "reverseSearchCoordsFormatStatus"; "searchTermChange": "searchTermChange"; "search": "search"; "searchTypeChange": "searchTypeChange"; "clearFeature": "clearFeature"; "searchSettingsChange": "searchSettingsChange"; }, never, never, true, never>;
|
|
8068
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchBarComponent, "igo-search-bar", never, { "searchTypes": { "alias": "searchTypes"; "required": false; "isSignal": true; }; "withDivider": { "alias": "withDivider"; "required": false; "isSignal": true; }; "searchType": { "alias": "searchType"; "required": false; }; "term": { "alias": "term"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pointerSummaryEnabled": { "alias": "pointerSummaryEnabled"; "required": false; "isSignal": true; }; "allowResetSearchSourcesOptions": { "alias": "allowResetSearchSourcesOptions"; "required": false; "isSignal": true; }; "searchResultsGeometryEnabled": { "alias": "searchResultsGeometryEnabled"; "required": false; "isSignal": true; }; "reverseSearchCoordsFormatEnabled": { "alias": "reverseSearchCoordsFormatEnabled"; "required": false; }; "floatLabel": { "alias": "floatLabel"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "termSplitter": { "alias": "termSplitter"; "required": false; "isSignal": true; }; "debounce": { "alias": "debounce"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "searchSelector": { "alias": "searchSelector"; "required": false; "isSignal": true; }; "searchSettings": { "alias": "searchSettings"; "required": false; "isSignal": true; }; "forceNA": { "alias": "forceNA"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; }, { "pointerSummaryStatus": "pointerSummaryStatus"; "searchResultsGeometryStatus": "searchResultsGeometryStatus"; "reverseSearchCoordsFormatStatus": "reverseSearchCoordsFormatStatus"; "searchTermChange": "searchTermChange"; "search": "search"; "searchTypeChange": "searchTypeChange"; "clearFeature": "clearFeature"; "searchSettingsChange": "searchSettingsChange"; }, never, never, true, never>;
|
|
8062
8069
|
}
|
|
8063
8070
|
|
|
8064
8071
|
/**
|
|
@@ -8069,28 +8076,18 @@ declare class SearchBarComponent implements OnInit, OnDestroy {
|
|
|
8069
8076
|
* placeholder getter. The search source service already supports having
|
|
8070
8077
|
* more than one search source enabled.
|
|
8071
8078
|
*/
|
|
8072
|
-
declare class SearchSelectorComponent implements OnInit
|
|
8079
|
+
declare class SearchSelectorComponent implements OnInit {
|
|
8073
8080
|
private searchSourceService;
|
|
8074
|
-
readonly searchType$: BehaviorSubject<string>;
|
|
8075
|
-
/**
|
|
8076
|
-
* Subscription to the search type
|
|
8077
|
-
*/
|
|
8078
|
-
private searchType$$;
|
|
8079
8081
|
/**
|
|
8080
8082
|
* List of available search types
|
|
8081
8083
|
*/
|
|
8082
|
-
searchTypes: string[]
|
|
8083
|
-
|
|
8084
|
-
* The search type enabled
|
|
8085
|
-
*/
|
|
8086
|
-
set searchType(value: string);
|
|
8087
|
-
get searchType(): string;
|
|
8084
|
+
readonly searchTypes: i0.InputSignal<string[]>;
|
|
8085
|
+
readonly searchType: i0.ModelSignal<string>;
|
|
8088
8086
|
/**
|
|
8089
8087
|
* Event emitted when the enabled search type changes
|
|
8090
8088
|
*/
|
|
8091
|
-
searchTypeChange:
|
|
8089
|
+
readonly searchTypeChange: i0.OutputEmitterRef<string>;
|
|
8092
8090
|
ngOnInit(): void;
|
|
8093
|
-
ngOnDestroy(): void;
|
|
8094
8091
|
/**
|
|
8095
8092
|
* Enable the selected search type
|
|
8096
8093
|
* @param searchType Search type
|
|
@@ -8105,14 +8102,9 @@ declare class SearchSelectorComponent implements OnInit, OnDestroy {
|
|
|
8105
8102
|
* @internal
|
|
8106
8103
|
*/
|
|
8107
8104
|
getSearchTypeTitle(searchType: string): string;
|
|
8108
|
-
/**
|
|
8109
|
-
* Emit an event and enable the search sources of the given type.
|
|
8110
|
-
* @param searchType Search type
|
|
8111
|
-
*/
|
|
8112
|
-
private setSearchType;
|
|
8113
8105
|
private onSetSearchType;
|
|
8114
8106
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchSelectorComponent, never>;
|
|
8115
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchSelectorComponent, "igo-search-selector", never, { "searchTypes": { "alias": "searchTypes"; "required": false; }; "searchType": { "alias": "searchType"; "required": false; }; }, { "searchTypeChange": "searchTypeChange"; }, never, never, true, never>;
|
|
8107
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchSelectorComponent, "igo-search-selector", never, { "searchTypes": { "alias": "searchTypes"; "required": false; "isSignal": true; }; "searchType": { "alias": "searchType"; "required": false; "isSignal": true; }; }, { "searchType": "searchTypeChange"; "searchTypeChange": "searchTypeChange"; }, never, never, true, never>;
|
|
8116
8108
|
}
|
|
8117
8109
|
|
|
8118
8110
|
/**
|
|
@@ -8135,26 +8127,26 @@ declare class SearchSettingsComponent implements OnInit {
|
|
|
8135
8127
|
lastKeyTime: number;
|
|
8136
8128
|
displayBlock: string;
|
|
8137
8129
|
get isTouchScreen(): boolean;
|
|
8138
|
-
pointerSummaryEnabled: boolean
|
|
8139
|
-
searchResultsGeometryEnabled: boolean
|
|
8140
|
-
reverseSearchCoordsFormatEnabled: boolean
|
|
8141
|
-
allowResetSearchSourcesOptions: boolean
|
|
8130
|
+
pointerSummaryEnabled: i0.ModelSignal<boolean>;
|
|
8131
|
+
searchResultsGeometryEnabled: i0.ModelSignal<boolean>;
|
|
8132
|
+
reverseSearchCoordsFormatEnabled: i0.ModelSignal<boolean>;
|
|
8133
|
+
readonly allowResetSearchSourcesOptions: i0.InputSignal<boolean>;
|
|
8142
8134
|
/**
|
|
8143
8135
|
* Event emitted when the enabled search source changes
|
|
8144
8136
|
*/
|
|
8145
|
-
searchSourceChange:
|
|
8137
|
+
readonly searchSourceChange: i0.OutputEmitterRef<SearchSource>;
|
|
8146
8138
|
/**
|
|
8147
8139
|
* Event emitted when the pointer summary is activated
|
|
8148
8140
|
*/
|
|
8149
|
-
pointerSummaryStatus:
|
|
8141
|
+
readonly pointerSummaryStatus: i0.OutputEmitterRef<boolean>;
|
|
8150
8142
|
/**
|
|
8151
8143
|
* Event emitted when the show geometry summary is changed
|
|
8152
8144
|
*/
|
|
8153
|
-
searchResultsGeometryStatus:
|
|
8145
|
+
readonly searchResultsGeometryStatus: i0.OutputEmitterRef<boolean>;
|
|
8154
8146
|
/**
|
|
8155
8147
|
* Event emitted when the coords format is changed
|
|
8156
8148
|
*/
|
|
8157
|
-
reverseSearchCoordsFormatStatus:
|
|
8149
|
+
readonly reverseSearchCoordsFormatStatus: i0.OutputEmitterRef<boolean>;
|
|
8158
8150
|
handleKeyboardEvent(event: KeyboardEvent): void;
|
|
8159
8151
|
ngOnInit(): void;
|
|
8160
8152
|
/**
|
|
@@ -8210,7 +8202,7 @@ declare class SearchSettingsComponent implements OnInit {
|
|
|
8210
8202
|
changeSearchResultsGeometry(event: any): void;
|
|
8211
8203
|
reverseSearchCoordsFormat(event: any): void;
|
|
8212
8204
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchSettingsComponent, never>;
|
|
8213
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchSettingsComponent, "igo-search-settings", never, { "pointerSummaryEnabled": { "alias": "pointerSummaryEnabled"; "required": false; }; "searchResultsGeometryEnabled": { "alias": "searchResultsGeometryEnabled"; "required": false; }; "reverseSearchCoordsFormatEnabled": { "alias": "reverseSearchCoordsFormatEnabled"; "required": false; }; "allowResetSearchSourcesOptions": { "alias": "allowResetSearchSourcesOptions"; "required": false; }; }, { "searchSourceChange": "searchSourceChange"; "pointerSummaryStatus": "pointerSummaryStatus"; "searchResultsGeometryStatus": "searchResultsGeometryStatus"; "reverseSearchCoordsFormatStatus": "reverseSearchCoordsFormatStatus"; }, never, never, true, never>;
|
|
8205
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchSettingsComponent, "igo-search-settings", never, { "pointerSummaryEnabled": { "alias": "pointerSummaryEnabled"; "required": false; "isSignal": true; }; "searchResultsGeometryEnabled": { "alias": "searchResultsGeometryEnabled"; "required": false; "isSignal": true; }; "reverseSearchCoordsFormatEnabled": { "alias": "reverseSearchCoordsFormatEnabled"; "required": false; "isSignal": true; }; "allowResetSearchSourcesOptions": { "alias": "allowResetSearchSourcesOptions"; "required": false; "isSignal": true; }; }, { "pointerSummaryEnabled": "pointerSummaryEnabledChange"; "searchResultsGeometryEnabled": "searchResultsGeometryEnabledChange"; "reverseSearchCoordsFormatEnabled": "reverseSearchCoordsFormatEnabledChange"; "searchSourceChange": "searchSourceChange"; "pointerSummaryStatus": "pointerSummaryStatus"; "searchResultsGeometryStatus": "searchResultsGeometryStatus"; "reverseSearchCoordsFormatStatus": "reverseSearchCoordsFormatStatus"; }, never, never, true, never>;
|
|
8214
8206
|
}
|
|
8215
8207
|
|
|
8216
8208
|
/**
|
|
@@ -8260,60 +8252,60 @@ declare class SearchResultsComponent implements OnInit, OnDestroy {
|
|
|
8260
8252
|
collapsed: {
|
|
8261
8253
|
sourceId: string;
|
|
8262
8254
|
}[];
|
|
8263
|
-
map: IgoMap
|
|
8255
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
8264
8256
|
/**
|
|
8265
8257
|
* Search results store
|
|
8266
8258
|
*/
|
|
8267
|
-
store: EntityStore<SearchResult
|
|
8259
|
+
readonly store: i0.InputSignal<EntityStore<SearchResult<Record<string, any>>, EntityState>>;
|
|
8268
8260
|
/**
|
|
8269
8261
|
* to show hide results icons
|
|
8270
8262
|
*/
|
|
8271
|
-
showIcons: boolean
|
|
8263
|
+
readonly showIcons: i0.InputSignal<boolean>;
|
|
8272
8264
|
/**
|
|
8273
8265
|
* Search results display mode
|
|
8274
8266
|
*/
|
|
8275
|
-
mode: SearchResultMode
|
|
8267
|
+
readonly mode: i0.InputSignal<SearchResultMode>;
|
|
8276
8268
|
/**
|
|
8277
8269
|
* Whether there should be a zoom button
|
|
8278
8270
|
*/
|
|
8279
|
-
withZoomButton: boolean
|
|
8271
|
+
readonly withZoomButton: i0.InputSignal<boolean>;
|
|
8280
8272
|
/**
|
|
8281
8273
|
* To check if the view for tabsMode for search-result-tools
|
|
8282
8274
|
*/
|
|
8283
|
-
tabsMode: boolean
|
|
8275
|
+
readonly tabsMode: i0.InputSignal<boolean>;
|
|
8284
8276
|
/**
|
|
8285
8277
|
* Search term
|
|
8286
8278
|
*/
|
|
8287
8279
|
get term(): string;
|
|
8288
8280
|
set term(value: string);
|
|
8289
8281
|
_term: string;
|
|
8290
|
-
settingsChange$: BehaviorSubject<boolean
|
|
8291
|
-
termSplitter: string
|
|
8282
|
+
readonly settingsChange$: i0.InputSignal<BehaviorSubject<boolean>>;
|
|
8283
|
+
readonly termSplitter: i0.InputSignal<string>;
|
|
8292
8284
|
/**
|
|
8293
8285
|
* Event emitted when a result is focused
|
|
8294
8286
|
*/
|
|
8295
|
-
resultFocus:
|
|
8287
|
+
readonly resultFocus: i0.OutputEmitterRef<SearchResult<Record<string, any>>>;
|
|
8296
8288
|
/**
|
|
8297
8289
|
* Event emitted when a result is unfocused
|
|
8298
8290
|
*/
|
|
8299
|
-
resultUnfocus:
|
|
8291
|
+
readonly resultUnfocus: i0.OutputEmitterRef<SearchResult<Record<string, any>>>;
|
|
8300
8292
|
/**
|
|
8301
8293
|
* Event emitted when a result is selected
|
|
8302
8294
|
*/
|
|
8303
|
-
resultSelect:
|
|
8295
|
+
readonly resultSelect: i0.OutputEmitterRef<SearchResult<Record<string, any>>>;
|
|
8304
8296
|
/**
|
|
8305
8297
|
* Event emitted when a research is completed after displaying more results is clicked
|
|
8306
8298
|
*/
|
|
8307
|
-
moreResults:
|
|
8299
|
+
readonly moreResults: i0.OutputEmitterRef<{
|
|
8308
8300
|
research: Research;
|
|
8309
8301
|
results: SearchResult[];
|
|
8310
8302
|
}>;
|
|
8311
8303
|
/**
|
|
8312
8304
|
* Events emitted when a result is focus or unfocus by mouse event
|
|
8313
8305
|
*/
|
|
8314
|
-
resultMouseenter:
|
|
8315
|
-
resultMouseleave:
|
|
8316
|
-
templateSearchToolbar: TemplateRef<any
|
|
8306
|
+
readonly resultMouseenter: i0.OutputEmitterRef<SearchResult<Record<string, any>>>;
|
|
8307
|
+
readonly resultMouseleave: i0.OutputEmitterRef<SearchResult<Record<string, any>>>;
|
|
8308
|
+
readonly templateSearchToolbar: i0.Signal<TemplateRef<any>>;
|
|
8317
8309
|
get results$(): Observable<{
|
|
8318
8310
|
source: SearchSource;
|
|
8319
8311
|
results: SearchResult[];
|
|
@@ -8373,7 +8365,7 @@ declare class SearchResultsComponent implements OnInit, OnDestroy {
|
|
|
8373
8365
|
results: SearchResult[];
|
|
8374
8366
|
}): void;
|
|
8375
8367
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultsComponent, never>;
|
|
8376
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultsComponent, "igo-search-results", never, { "map": { "alias": "map"; "required": false; }; "store": { "alias": "store"; "required": false; }; "showIcons": { "alias": "showIcons"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "withZoomButton": { "alias": "withZoomButton"; "required": false; }; "tabsMode": { "alias": "tabsMode"; "required": false; }; "term": { "alias": "term"; "required": false; }; "settingsChange$": { "alias": "settingsChange$"; "required": false; }; "termSplitter": { "alias": "termSplitter"; "required": false; }; }, { "resultFocus": "resultFocus"; "resultUnfocus": "resultUnfocus"; "resultSelect": "resultSelect"; "moreResults": "moreResults"; "resultMouseenter": "resultMouseenter"; "resultMouseleave": "resultMouseleave"; }, ["templateSearchToolbar"], never, true, never>;
|
|
8368
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultsComponent, "igo-search-results", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; "showIcons": { "alias": "showIcons"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "withZoomButton": { "alias": "withZoomButton"; "required": false; "isSignal": true; }; "tabsMode": { "alias": "tabsMode"; "required": false; "isSignal": true; }; "term": { "alias": "term"; "required": false; }; "settingsChange$": { "alias": "settingsChange$"; "required": false; "isSignal": true; }; "termSplitter": { "alias": "termSplitter"; "required": false; "isSignal": true; }; }, { "resultFocus": "resultFocus"; "resultUnfocus": "resultUnfocus"; "resultSelect": "resultSelect"; "moreResults": "moreResults"; "resultMouseenter": "resultMouseenter"; "resultMouseleave": "resultMouseleave"; }, ["templateSearchToolbar"], never, true, never>;
|
|
8377
8369
|
}
|
|
8378
8370
|
|
|
8379
8371
|
declare class SearchResultAddButtonComponent implements OnInit, OnDestroy {
|
|
@@ -8391,24 +8383,21 @@ declare class SearchResultAddButtonComponent implements OnInit, OnDestroy {
|
|
|
8391
8383
|
private layersSubcriptions;
|
|
8392
8384
|
private lastTimeoutRequest;
|
|
8393
8385
|
private mouseInsideAdd;
|
|
8394
|
-
layer: SearchResult
|
|
8395
|
-
store: EntityStore<SearchResult
|
|
8386
|
+
readonly layer: i0.InputSignal<SearchResult<Record<string, any>>>;
|
|
8387
|
+
readonly store: i0.InputSignal<EntityStore<SearchResult<Record<string, any>>, _igo2_common_entity.EntityState>>;
|
|
8396
8388
|
/**
|
|
8397
8389
|
* Whether the layer is already added to the map
|
|
8398
8390
|
*/
|
|
8399
|
-
added: boolean
|
|
8391
|
+
readonly added: i0.ModelSignal<boolean>;
|
|
8400
8392
|
/**
|
|
8401
8393
|
* The map to add the search result layer to
|
|
8402
8394
|
*/
|
|
8403
|
-
map: IgoMap
|
|
8395
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
8404
8396
|
/**
|
|
8405
8397
|
* show hide save search result in layer button
|
|
8406
8398
|
*/
|
|
8407
|
-
saveSearchResultInLayer: boolean
|
|
8408
|
-
|
|
8409
|
-
set color(value: string);
|
|
8410
|
-
private _color;
|
|
8411
|
-
stores: FeatureStore<Feature>[];
|
|
8399
|
+
readonly saveSearchResultInLayer: i0.InputSignal<boolean>;
|
|
8400
|
+
readonly stores: i0.InputSignal<FeatureStore<Feature<Record<string, any>>>[]>;
|
|
8412
8401
|
get allLayers(): _igo2_geo.AnyLayer[];
|
|
8413
8402
|
private mediaService$$;
|
|
8414
8403
|
isMobile: boolean;
|
|
@@ -8446,7 +8435,7 @@ declare class SearchResultAddButtonComponent implements OnInit, OnDestroy {
|
|
|
8446
8435
|
addFeature(feature: SearchResult, activeStore: FeatureStore<Feature>): void;
|
|
8447
8436
|
private clearLabelsOfOlGeometry;
|
|
8448
8437
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchResultAddButtonComponent, never>;
|
|
8449
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultAddButtonComponent, "igo-search-add-button", never, { "layer": { "alias": "layer"; "required": false; }; "store": { "alias": "store"; "required": false; }; "added": { "alias": "added"; "required": false; }; "map": { "alias": "map"; "required": false; }; "saveSearchResultInLayer": { "alias": "saveSearchResultInLayer"; "required": false;
|
|
8438
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchResultAddButtonComponent, "igo-search-add-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; "added": { "alias": "added"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "saveSearchResultInLayer": { "alias": "saveSearchResultInLayer"; "required": false; "isSignal": true; }; "stores": { "alias": "stores"; "required": false; "isSignal": true; }; }, { "added": "addedChange"; }, never, never, true, never>;
|
|
8450
8439
|
}
|
|
8451
8440
|
|
|
8452
8441
|
/**
|
|
@@ -8702,7 +8691,6 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8702
8691
|
private searchService;
|
|
8703
8692
|
private queryService;
|
|
8704
8693
|
private messageService;
|
|
8705
|
-
private watcher;
|
|
8706
8694
|
projection: string;
|
|
8707
8695
|
hasOsrmPrivateAccess: boolean;
|
|
8708
8696
|
twoSourcesAvailable: boolean;
|
|
@@ -8718,16 +8706,16 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8718
8706
|
previousStops: Stop[];
|
|
8719
8707
|
private searchs$$;
|
|
8720
8708
|
private authenticated$$;
|
|
8721
|
-
contextUri: string
|
|
8722
|
-
stopsStore: StopsStore
|
|
8723
|
-
stopsFeatureStore: StopsFeatureStore
|
|
8724
|
-
routesFeatureStore: RoutesFeatureStore
|
|
8725
|
-
stepsFeatureStore: StepsFeatureStore
|
|
8726
|
-
debounce: number
|
|
8727
|
-
length: number
|
|
8728
|
-
coordRoundedDecimals: number
|
|
8729
|
-
zoomOnActiveRoute
|
|
8730
|
-
authenticated$: BehaviorSubject<boolean
|
|
8709
|
+
readonly contextUri: i0.InputSignal<string>;
|
|
8710
|
+
readonly stopsStore: i0.InputSignal<StopsStore>;
|
|
8711
|
+
readonly stopsFeatureStore: i0.InputSignal<StopsFeatureStore>;
|
|
8712
|
+
readonly routesFeatureStore: i0.InputSignal<RoutesFeatureStore>;
|
|
8713
|
+
readonly stepsFeatureStore: i0.InputSignal<StepsFeatureStore>;
|
|
8714
|
+
readonly debounce: i0.InputSignal<number>;
|
|
8715
|
+
readonly length: i0.InputSignal<number>;
|
|
8716
|
+
readonly coordRoundedDecimals: i0.InputSignal<number>;
|
|
8717
|
+
readonly zoomOnActiveRoute: i0.InputSignal<boolean>;
|
|
8718
|
+
readonly authenticated$: i0.InputSignal<BehaviorSubject<boolean>>;
|
|
8731
8719
|
/**
|
|
8732
8720
|
* Wheter one of the direction control is active
|
|
8733
8721
|
* @internal
|
|
@@ -8735,6 +8723,7 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8735
8723
|
get directionControlIsActive(): boolean;
|
|
8736
8724
|
get interactions(): olInteraction.Interaction[];
|
|
8737
8725
|
get enabledProfileHasAuthorization(): _igo2_geo.BaseDirectionsSourceOptionsProfileAuthorization;
|
|
8726
|
+
constructor();
|
|
8738
8727
|
ngOnInit(): void;
|
|
8739
8728
|
ngOnDestroy(): void;
|
|
8740
8729
|
private freezeStores;
|
|
@@ -8753,18 +8742,18 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8753
8742
|
onToggleDirectionsControl(isActive: boolean): void;
|
|
8754
8743
|
onTogglePrivateModeControl(isActive: boolean): void;
|
|
8755
8744
|
static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsComponent, never>;
|
|
8756
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsComponent, "igo-directions", never, { "contextUri": { "alias": "contextUri"; "required": false; }; "stopsStore": { "alias": "stopsStore"; "required": true; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": true; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; }; "debounce": { "alias": "debounce"; "required": false; }; "length": { "alias": "length"; "required": false; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; }; "zoomOnActiveRoute
|
|
8745
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsComponent, "igo-directions", never, { "contextUri": { "alias": "contextUri"; "required": false; "isSignal": true; }; "stopsStore": { "alias": "stopsStore"; "required": true; "isSignal": true; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": true; "isSignal": true; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; "isSignal": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; "isSignal": true; }; "debounce": { "alias": "debounce"; "required": false; "isSignal": true; }; "length": { "alias": "length"; "required": false; "isSignal": true; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; "isSignal": true; }; "zoomOnActiveRoute": { "alias": "zoomOnActiveRoute"; "required": true; "isSignal": true; }; "authenticated$": { "alias": "authenticated$"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8757
8746
|
}
|
|
8758
8747
|
|
|
8759
8748
|
declare class DirectionsInputsComponent implements OnDestroy {
|
|
8760
8749
|
private languageService;
|
|
8761
|
-
stopsStore: StopsStore
|
|
8762
|
-
stopsFeatureStore: StopsFeatureStore
|
|
8763
|
-
projection: string
|
|
8764
|
-
coordRoundedDecimals: number
|
|
8765
|
-
debounce: number
|
|
8766
|
-
length: number
|
|
8767
|
-
stopInputHasFocus:
|
|
8750
|
+
readonly stopsStore: i0.InputSignal<StopsStore>;
|
|
8751
|
+
readonly stopsFeatureStore: i0.InputSignal<StopsFeatureStore>;
|
|
8752
|
+
readonly projection: i0.InputSignal<string>;
|
|
8753
|
+
readonly coordRoundedDecimals: i0.InputSignal<number>;
|
|
8754
|
+
readonly debounce: i0.InputSignal<number>;
|
|
8755
|
+
readonly length: i0.InputSignal<number>;
|
|
8756
|
+
readonly stopInputHasFocus: i0.OutputEmitterRef<boolean>;
|
|
8768
8757
|
private readonly invalidKeys;
|
|
8769
8758
|
private onMapClickEventKeys;
|
|
8770
8759
|
stopWithHover: Stop;
|
|
@@ -8892,7 +8881,7 @@ declare class DirectionsInputsComponent implements OnDestroy {
|
|
|
8892
8881
|
*/
|
|
8893
8882
|
private useCoordinatesAsStop;
|
|
8894
8883
|
static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsInputsComponent, never>;
|
|
8895
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsInputsComponent, "igo-directions-inputs", never, { "stopsStore": { "alias": "stopsStore"; "required": true; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": true; }; "projection": { "alias": "projection"; "required": true; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "length": { "alias": "length"; "required": false; }; }, { "stopInputHasFocus": "stopInputHasFocus"; }, never, never, true, never>;
|
|
8884
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsInputsComponent, "igo-directions-inputs", never, { "stopsStore": { "alias": "stopsStore"; "required": true; "isSignal": true; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": true; "isSignal": true; }; "projection": { "alias": "projection"; "required": true; "isSignal": true; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; "isSignal": true; }; "debounce": { "alias": "debounce"; "required": false; "isSignal": true; }; "length": { "alias": "length"; "required": false; "isSignal": true; }; }, { "stopInputHasFocus": "stopInputHasFocus"; }, never, never, true, never>;
|
|
8896
8885
|
}
|
|
8897
8886
|
|
|
8898
8887
|
declare class DirectionsButtonsComponent {
|
|
@@ -8901,11 +8890,11 @@ declare class DirectionsButtonsComponent {
|
|
|
8901
8890
|
private messageService;
|
|
8902
8891
|
private routeService;
|
|
8903
8892
|
private directionsService;
|
|
8904
|
-
contextUri: string
|
|
8905
|
-
zoomOnActiveRoute
|
|
8906
|
-
stopsStore: StopsStore
|
|
8907
|
-
routesFeatureStore: RoutesFeatureStore
|
|
8908
|
-
stepsFeatureStore: StepsFeatureStore
|
|
8893
|
+
readonly contextUri: i0.InputSignal<string>;
|
|
8894
|
+
readonly zoomOnActiveRoute: i0.ModelSignal<boolean>;
|
|
8895
|
+
readonly stopsStore: i0.InputSignal<StopsStore>;
|
|
8896
|
+
readonly routesFeatureStore: i0.InputSignal<RoutesFeatureStore>;
|
|
8897
|
+
readonly stepsFeatureStore: i0.InputSignal<StepsFeatureStore>;
|
|
8909
8898
|
downloadDirectionsBtnDisabled: boolean;
|
|
8910
8899
|
/**
|
|
8911
8900
|
* Returns the active route from the routesFeatureStore.
|
|
@@ -8922,7 +8911,7 @@ declare class DirectionsButtonsComponent {
|
|
|
8922
8911
|
* Triggers the zoom on the active route.
|
|
8923
8912
|
*
|
|
8924
8913
|
*/
|
|
8925
|
-
|
|
8914
|
+
setZoomOnActiveRoute(): void;
|
|
8926
8915
|
/**
|
|
8927
8916
|
* Copies the directions to the clipboard and displays a success message if the copy is successful.
|
|
8928
8917
|
*
|
|
@@ -8959,14 +8948,14 @@ declare class DirectionsButtonsComponent {
|
|
|
8959
8948
|
*/
|
|
8960
8949
|
private getLink;
|
|
8961
8950
|
static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsButtonsComponent, never>;
|
|
8962
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsButtonsComponent, "igo-directions-buttons", never, { "contextUri": { "alias": "contextUri"; "required": true; }; "zoomOnActiveRoute
|
|
8951
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsButtonsComponent, "igo-directions-buttons", never, { "contextUri": { "alias": "contextUri"; "required": true; "isSignal": true; }; "zoomOnActiveRoute": { "alias": "zoomOnActiveRoute"; "required": true; "isSignal": true; }; "stopsStore": { "alias": "stopsStore"; "required": true; "isSignal": true; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; "isSignal": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; "isSignal": true; }; }, { "zoomOnActiveRoute": "zoomOnActiveRouteChange"; }, never, never, true, never>;
|
|
8963
8952
|
}
|
|
8964
8953
|
|
|
8965
8954
|
declare class DirectionsResultsComponent implements OnInit, OnDestroy {
|
|
8966
8955
|
private languageService;
|
|
8967
8956
|
private cdRef;
|
|
8968
|
-
routesFeatureStore: RoutesFeatureStore
|
|
8969
|
-
stepsFeatureStore: StepsFeatureStore
|
|
8957
|
+
readonly routesFeatureStore: i0.InputSignal<RoutesFeatureStore>;
|
|
8958
|
+
readonly stepsFeatureStore: i0.InputSignal<StepsFeatureStore>;
|
|
8970
8959
|
activeRoute: Directions;
|
|
8971
8960
|
routes: Directions[];
|
|
8972
8961
|
private entities$$;
|
|
@@ -9018,7 +9007,7 @@ declare class DirectionsResultsComponent implements OnInit, OnDestroy {
|
|
|
9018
9007
|
showStep(step: IgoStep, zoomToExtent?: boolean): void;
|
|
9019
9008
|
private showRouteSegmentGeometry;
|
|
9020
9009
|
static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsResultsComponent, never>;
|
|
9021
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsResultsComponent, "igo-directions-results", never, { "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; }; }, {}, never, never, true, never>;
|
|
9010
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsResultsComponent, "igo-directions-results", never, { "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; "isSignal": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9022
9011
|
}
|
|
9023
9012
|
|
|
9024
9013
|
declare class IgoDirectionsModule {
|
|
@@ -9037,17 +9026,11 @@ declare class ToastComponent {
|
|
|
9037
9026
|
DOWN: string;
|
|
9038
9027
|
};
|
|
9039
9028
|
private format;
|
|
9040
|
-
|
|
9041
|
-
|
|
9042
|
-
|
|
9043
|
-
|
|
9044
|
-
|
|
9045
|
-
private _map;
|
|
9046
|
-
get feature(): Feature;
|
|
9047
|
-
set feature(value: Feature);
|
|
9048
|
-
private _feature;
|
|
9049
|
-
opened: EventEmitter<boolean>;
|
|
9050
|
-
state: FlexibleState;
|
|
9029
|
+
readonly expanded: i0.ModelSignal<boolean>;
|
|
9030
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
9031
|
+
readonly feature: i0.InputSignal<Feature<Record<string, any>>>;
|
|
9032
|
+
readonly opened: i0.OutputEmitterRef<boolean>;
|
|
9033
|
+
state: i0.Signal<FlexibleState>;
|
|
9051
9034
|
/**
|
|
9052
9035
|
* @internal
|
|
9053
9036
|
*/
|
|
@@ -9056,7 +9039,7 @@ declare class ToastComponent {
|
|
|
9056
9039
|
zoomToFeatureExtent(): void;
|
|
9057
9040
|
swipe(action: string): void;
|
|
9058
9041
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
9059
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "igo-toast", never, { "expanded": { "alias": "expanded"; "required": false; }; "map": { "alias": "map"; "required": false; }; "feature": { "alias": "feature"; "required": false; }; }, { "opened": "opened"; }, never, never, true, never>;
|
|
9042
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToastComponent, "igo-toast", never, { "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "feature": { "alias": "feature"; "required": false; "isSignal": true; }; }, { "expanded": "expandedChange"; "opened": "opened"; }, never, never, true, never>;
|
|
9060
9043
|
}
|
|
9061
9044
|
|
|
9062
9045
|
/**
|
|
@@ -9071,16 +9054,16 @@ declare class IgoToastModule {
|
|
|
9071
9054
|
|
|
9072
9055
|
declare class OgcFilterComponent implements OnUpdateInputs, WidgetComponent {
|
|
9073
9056
|
private cdRef;
|
|
9074
|
-
layer: Layer
|
|
9075
|
-
map: IgoMap
|
|
9057
|
+
readonly layer: i0.InputSignal<Layer>;
|
|
9058
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
9076
9059
|
/**
|
|
9077
9060
|
* Event emitted on complete
|
|
9078
9061
|
*/
|
|
9079
|
-
complete:
|
|
9062
|
+
readonly complete: i0.OutputEmitterRef<void>;
|
|
9080
9063
|
/**
|
|
9081
9064
|
* Event emitted on cancel
|
|
9082
9065
|
*/
|
|
9083
|
-
cancel:
|
|
9066
|
+
readonly cancel: i0.OutputEmitterRef<void>;
|
|
9084
9067
|
/**
|
|
9085
9068
|
* Implemented as part of OnUpdateInputs
|
|
9086
9069
|
*/
|
|
@@ -9090,7 +9073,7 @@ declare class OgcFilterComponent implements OnUpdateInputs, WidgetComponent {
|
|
|
9090
9073
|
*/
|
|
9091
9074
|
onClose(): void;
|
|
9092
9075
|
static ɵfac: i0.ɵɵFactoryDeclaration<OgcFilterComponent, never>;
|
|
9093
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterComponent, "igo-ogc-filter", never, { "layer": { "alias": "layer"; "required": false; }; "map": { "alias": "map"; "required": false; }; }, { "complete": "complete"; "cancel": "cancel"; }, never, never, true, never>;
|
|
9076
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OgcFilterComponent, "igo-ogc-filter", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; }, { "complete": "complete"; "cancel": "cancel"; }, never, never, true, never>;
|
|
9094
9077
|
}
|
|
9095
9078
|
|
|
9096
9079
|
/**
|
|
@@ -9110,11 +9093,11 @@ declare class WorkspaceSelectorDirective implements OnInit, OnDestroy {
|
|
|
9110
9093
|
private featureWorkspaceService;
|
|
9111
9094
|
private layers$$;
|
|
9112
9095
|
private entities$$;
|
|
9113
|
-
map: IgoMap
|
|
9114
|
-
changeWorkspace:
|
|
9115
|
-
disableSwitch:
|
|
9116
|
-
relationLayers:
|
|
9117
|
-
rowsInMapExtentCheckCondition:
|
|
9096
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
9097
|
+
readonly changeWorkspace: i0.OutputEmitterRef<string>;
|
|
9098
|
+
readonly disableSwitch: i0.OutputEmitterRef<boolean>;
|
|
9099
|
+
readonly relationLayers: i0.OutputEmitterRef<ImageLayer[] | VectorLayer[]>;
|
|
9100
|
+
readonly rowsInMapExtentCheckCondition: i0.OutputEmitterRef<boolean>;
|
|
9118
9101
|
get workspaceStore(): WorkspaceStore;
|
|
9119
9102
|
ngOnInit(): void;
|
|
9120
9103
|
ngOnDestroy(): void;
|
|
@@ -9125,7 +9108,7 @@ declare class WorkspaceSelectorDirective implements OnInit, OnDestroy {
|
|
|
9125
9108
|
private enableLayerRefreshForWorkspace;
|
|
9126
9109
|
private disableAllLayerRefresh;
|
|
9127
9110
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceSelectorDirective, never>;
|
|
9128
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<WorkspaceSelectorDirective, "[igoWorkspaceSelector]", never, { "map": { "alias": "map"; "required": false; }; }, { "changeWorkspace": "changeWorkspace"; "disableSwitch": "disableSwitch"; "relationLayers": "relationLayers"; "rowsInMapExtentCheckCondition": "rowsInMapExtentCheckCondition"; }, never, never, true, never>;
|
|
9111
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<WorkspaceSelectorDirective, "[igoWorkspaceSelector]", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, { "changeWorkspace": "changeWorkspace"; "disableSwitch": "disableSwitch"; "relationLayers": "relationLayers"; "rowsInMapExtentCheckCondition": "rowsInMapExtentCheckCondition"; }, never, never, true, never>;
|
|
9129
9112
|
}
|
|
9130
9113
|
|
|
9131
9114
|
/**
|
|
@@ -9170,7 +9153,7 @@ declare class StyleModalDrawingComponent implements OnInit {
|
|
|
9170
9153
|
private formBuilder;
|
|
9171
9154
|
private drawStyleService;
|
|
9172
9155
|
data: DrawingMatDialogData;
|
|
9173
|
-
confirmFlag: boolean
|
|
9156
|
+
confirmFlag: i0.ModelSignal<boolean>;
|
|
9174
9157
|
form: UntypedFormGroup;
|
|
9175
9158
|
styleModalData: StyleModalData;
|
|
9176
9159
|
linestringOnly: boolean;
|
|
@@ -9189,14 +9172,14 @@ declare class StyleModalDrawingComponent implements OnInit {
|
|
|
9189
9172
|
openPicker(): void;
|
|
9190
9173
|
closePicker(): void;
|
|
9191
9174
|
static ɵfac: i0.ɵɵFactoryDeclaration<StyleModalDrawingComponent, never>;
|
|
9192
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalDrawingComponent, "igo-style-modal-drawing", never, { "confirmFlag": { "alias": "confirmFlag"; "required": false; }; }, {}, never, never, true, never>;
|
|
9175
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalDrawingComponent, "igo-style-modal-drawing", never, { "confirmFlag": { "alias": "confirmFlag"; "required": false; "isSignal": true; }; }, { "confirmFlag": "confirmFlagChange"; }, never, never, true, never>;
|
|
9193
9176
|
}
|
|
9194
9177
|
|
|
9195
9178
|
declare class StyleModalLayerComponent implements OnInit {
|
|
9196
9179
|
dialogRef: MatDialogRef<StyleModalLayerComponent, any>;
|
|
9197
9180
|
private formBuilder;
|
|
9198
9181
|
data: LayerMatDialogData;
|
|
9199
|
-
confirmFlag: boolean
|
|
9182
|
+
confirmFlag: i0.ModelSignal<boolean>;
|
|
9200
9183
|
form: UntypedFormGroup;
|
|
9201
9184
|
styleModalData: StyleModalData;
|
|
9202
9185
|
linestringOnly: boolean;
|
|
@@ -9215,18 +9198,18 @@ declare class StyleModalLayerComponent implements OnInit {
|
|
|
9215
9198
|
openPicker(): void;
|
|
9216
9199
|
closePicker(): void;
|
|
9217
9200
|
static ɵfac: i0.ɵɵFactoryDeclaration<StyleModalLayerComponent, never>;
|
|
9218
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalLayerComponent, "igo-style-modal-layer", never, { "confirmFlag": { "alias": "confirmFlag"; "required": false; }; }, {}, never, never, true, never>;
|
|
9201
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalLayerComponent, "igo-style-modal-layer", never, { "confirmFlag": { "alias": "confirmFlag"; "required": false; "isSignal": true; }; }, { "confirmFlag": "confirmFlagChange"; }, never, never, true, never>;
|
|
9219
9202
|
}
|
|
9220
9203
|
|
|
9221
9204
|
declare class StyleModalLayerButtonComponent {
|
|
9222
9205
|
private dialog;
|
|
9223
|
-
layer: VectorLayer
|
|
9206
|
+
readonly layer: i0.InputSignal<VectorLayer>;
|
|
9224
9207
|
/**
|
|
9225
9208
|
* Open the style modal dialog box
|
|
9226
9209
|
*/
|
|
9227
9210
|
openStyleModalDialog(): void;
|
|
9228
9211
|
static ɵfac: i0.ɵɵFactoryDeclaration<StyleModalLayerButtonComponent, never>;
|
|
9229
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalLayerButtonComponent, "igo-style-modal-layer-button", never, { "layer": { "alias": "layer"; "required": false; }; }, {}, never, never, true, never>;
|
|
9212
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StyleModalLayerButtonComponent, "igo-style-modal-layer-button", never, { "layer": { "alias": "layer"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9230
9213
|
}
|
|
9231
9214
|
|
|
9232
9215
|
declare class IgoStyleModule {
|
|
@@ -9397,23 +9380,23 @@ declare class CatalogBrowserComponent implements OnInit, OnDestroy {
|
|
|
9397
9380
|
*/
|
|
9398
9381
|
private watcher;
|
|
9399
9382
|
get resolution$(): BehaviorSubject<number>;
|
|
9400
|
-
catalogAllowLegend: boolean
|
|
9383
|
+
readonly catalogAllowLegend: i0.ModelSignal<boolean>;
|
|
9401
9384
|
/**
|
|
9402
9385
|
* Catalog
|
|
9403
9386
|
*/
|
|
9404
|
-
catalog: Catalog
|
|
9387
|
+
readonly catalog: i0.InputSignal<Catalog>;
|
|
9405
9388
|
/**
|
|
9406
9389
|
* Store holding the catalog's items
|
|
9407
9390
|
*/
|
|
9408
|
-
store: EntityStore<CatalogItem, CatalogItemState
|
|
9391
|
+
readonly store: i0.InputSignal<EntityStore<CatalogItem, CatalogItemState>>;
|
|
9409
9392
|
/**
|
|
9410
9393
|
* Map to add the catalog items to
|
|
9411
9394
|
*/
|
|
9412
|
-
map: IgoMap
|
|
9395
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
9413
9396
|
/**
|
|
9414
9397
|
* Whether a group can be toggled when it's collapsed
|
|
9415
9398
|
*/
|
|
9416
|
-
toggleCollapsedGroup: boolean
|
|
9399
|
+
readonly toggleCollapsedGroup: i0.InputSignal<boolean>;
|
|
9417
9400
|
/**
|
|
9418
9401
|
* @internal
|
|
9419
9402
|
*/
|
|
@@ -9475,7 +9458,7 @@ declare class CatalogBrowserComponent implements OnInit, OnDestroy {
|
|
|
9475
9458
|
*/
|
|
9476
9459
|
private removeGroupFromMap;
|
|
9477
9460
|
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogBrowserComponent, never>;
|
|
9478
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogBrowserComponent, "igo-catalog-browser", never, { "catalogAllowLegend": { "alias": "catalogAllowLegend"; "required": false; }; "catalog": { "alias": "catalog"; "required": false; }; "store": { "alias": "store"; "required": false; }; "map": { "alias": "map"; "required": false; }; "toggleCollapsedGroup": { "alias": "toggleCollapsedGroup"; "required": false; }; }, {}, never, never, true, never>;
|
|
9461
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogBrowserComponent, "igo-catalog-browser", never, { "catalogAllowLegend": { "alias": "catalogAllowLegend"; "required": false; "isSignal": true; }; "catalog": { "alias": "catalog"; "required": false; "isSignal": true; }; "store": { "alias": "store"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "toggleCollapsedGroup": { "alias": "toggleCollapsedGroup"; "required": false; "isSignal": true; }; }, { "catalogAllowLegend": "catalogAllowLegendChange"; }, never, never, true, never>;
|
|
9479
9462
|
}
|
|
9480
9463
|
|
|
9481
9464
|
/**
|
|
@@ -9524,23 +9507,23 @@ declare class CatalogLibraryComponent implements OnInit, OnDestroy {
|
|
|
9524
9507
|
/**
|
|
9525
9508
|
* Store holding the catalogs
|
|
9526
9509
|
*/
|
|
9527
|
-
store: EntityStore<Catalog
|
|
9510
|
+
readonly store: i0.InputSignal<EntityStore<Catalog, _igo2_common_entity.EntityState>>;
|
|
9528
9511
|
/**
|
|
9529
9512
|
* Map to add the catalog items to
|
|
9530
9513
|
*/
|
|
9531
|
-
map: IgoMap
|
|
9514
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
9532
9515
|
/**
|
|
9533
9516
|
* Determine if the form to add a catalog is allowed
|
|
9534
9517
|
*/
|
|
9535
|
-
addCatalogAllowed: boolean
|
|
9518
|
+
readonly addCatalogAllowed: i0.InputSignal<boolean>;
|
|
9536
9519
|
/**
|
|
9537
9520
|
* Determine if the form to add a catalog is allowed
|
|
9538
9521
|
*/
|
|
9539
|
-
predefinedCatalogs: Catalog[]
|
|
9522
|
+
readonly predefinedCatalogs: i0.ModelSignal<Catalog[]>;
|
|
9540
9523
|
/**
|
|
9541
9524
|
* Event emitted a catalog is selected or unselected
|
|
9542
9525
|
*/
|
|
9543
|
-
catalogSelectChange:
|
|
9526
|
+
readonly catalogSelectChange: i0.OutputEmitterRef<{
|
|
9544
9527
|
selected: boolean;
|
|
9545
9528
|
catalog: Catalog;
|
|
9546
9529
|
}>;
|
|
@@ -9568,7 +9551,7 @@ declare class CatalogLibraryComponent implements OnInit, OnDestroy {
|
|
|
9568
9551
|
onCatalogRemove(catalog: any): void;
|
|
9569
9552
|
addCatalogDialog(error?: any, addedCatalog?: Catalog): void;
|
|
9570
9553
|
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogLibraryComponent, never>;
|
|
9571
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogLibraryComponent, "igo-catalog-library", never, { "store": { "alias": "store"; "required": false; }; "map": { "alias": "map"; "required": false; }; "addCatalogAllowed": { "alias": "addCatalogAllowed"; "required": false; }; "predefinedCatalogs": { "alias": "predefinedCatalogs"; "required": false; }; }, { "catalogSelectChange": "catalogSelectChange"; }, never, never, true, never>;
|
|
9554
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CatalogLibraryComponent, "igo-catalog-library", never, { "store": { "alias": "store"; "required": false; "isSignal": true; }; "map": { "alias": "map"; "required": false; "isSignal": true; }; "addCatalogAllowed": { "alias": "addCatalogAllowed"; "required": false; "isSignal": true; }; "predefinedCatalogs": { "alias": "predefinedCatalogs"; "required": false; "isSignal": true; }; }, { "predefinedCatalogs": "predefinedCatalogsChange"; "catalogSelectChange": "catalogSelectChange"; }, never, never, true, never>;
|
|
9572
9555
|
}
|
|
9573
9556
|
|
|
9574
9557
|
declare const CATALOG_LIBRARY_DIRECTIVES: readonly [typeof CatalogLibraryComponent, typeof AddCatalogDialogComponent];
|
|
@@ -9952,8 +9935,8 @@ declare class SliceControl {
|
|
|
9952
9935
|
* This is still WIP.
|
|
9953
9936
|
*/
|
|
9954
9937
|
declare class GeometryFormFieldInputComponent implements OnInit, OnDestroy, ControlValueAccessor {
|
|
9955
|
-
private cdRef;
|
|
9956
9938
|
ngControl: NgControl;
|
|
9939
|
+
private cdRef;
|
|
9957
9940
|
private olOverlayLayer;
|
|
9958
9941
|
private olGeoJSON;
|
|
9959
9942
|
private ready;
|
|
@@ -10007,7 +9990,9 @@ declare class GeometryFormFieldInputComponent implements OnInit, OnDestroy, Cont
|
|
|
10007
9990
|
/**
|
|
10008
9991
|
* Control options
|
|
10009
9992
|
*/
|
|
10010
|
-
controlOptions:
|
|
9993
|
+
controlOptions: {
|
|
9994
|
+
[key: string]: any;
|
|
9995
|
+
};
|
|
10011
9996
|
/**
|
|
10012
9997
|
* Style for the draw control (applies while the geometry is being drawn)
|
|
10013
9998
|
*/
|
|
@@ -10034,7 +10019,7 @@ declare class GeometryFormFieldInputComponent implements OnInit, OnDestroy, Cont
|
|
|
10034
10019
|
*/
|
|
10035
10020
|
get olOverlaySource(): olSourceVector;
|
|
10036
10021
|
set radius(value: any);
|
|
10037
|
-
constructor();
|
|
10022
|
+
constructor(ngControl: NgControl);
|
|
10038
10023
|
/**
|
|
10039
10024
|
* Create an overlay layer, add the initial geometry to it (if any)
|
|
10040
10025
|
* and toggle the right interaction.
|
|
@@ -10131,7 +10116,7 @@ declare class GeometryFormFieldInputComponent implements OnInit, OnDestroy, Cont
|
|
|
10131
10116
|
* @param olStyle The style on which to perform the check
|
|
10132
10117
|
*/
|
|
10133
10118
|
private getGuideStyleFromDrawStyle;
|
|
10134
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GeometryFormFieldInputComponent,
|
|
10119
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GeometryFormFieldInputComponent, [{ optional: true; self: true; }]>;
|
|
10135
10120
|
static ɵcmp: i0.ɵɵComponentDeclaration<GeometryFormFieldInputComponent, "igo-geometry-form-field-input", never, { "map": { "alias": "map"; "required": false; }; "geometryType": { "alias": "geometryType"; "required": false; }; "drawGuide": { "alias": "drawGuide"; "required": false; }; "measure": { "alias": "measure"; "required": false; }; "drawControlIsActive": { "alias": "drawControlIsActive"; "required": false; }; "freehandDrawIsActive": { "alias": "freehandDrawIsActive"; "required": false; }; "predefinedRadius": { "alias": "predefinedRadius"; "required": false; }; "controlOptions": { "alias": "controlOptions"; "required": false; }; "drawStyle": { "alias": "drawStyle"; "required": false; }; "overlayStyle": { "alias": "overlayStyle"; "required": false; }; "value": { "alias": "value"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; }, {}, never, never, true, never>;
|
|
10136
10121
|
}
|
|
10137
10122
|
|
|
@@ -10189,7 +10174,9 @@ declare class GeometryFormFieldComponent implements OnInit, OnDestroy {
|
|
|
10189
10174
|
/**
|
|
10190
10175
|
* Control options
|
|
10191
10176
|
*/
|
|
10192
|
-
controlOptions:
|
|
10177
|
+
controlOptions: {
|
|
10178
|
+
[key: string]: any;
|
|
10179
|
+
};
|
|
10193
10180
|
/**
|
|
10194
10181
|
* Style for the draw control (applies while the geometry is being drawn)
|
|
10195
10182
|
*/
|
|
@@ -10392,7 +10379,7 @@ declare class PrintFormComponent implements OnInit {
|
|
|
10392
10379
|
newpage: "newpage";
|
|
10393
10380
|
};
|
|
10394
10381
|
isPrintService: boolean;
|
|
10395
|
-
disabled$: BehaviorSubject<boolean
|
|
10382
|
+
readonly disabled$: i0.InputSignal<BehaviorSubject<boolean>>;
|
|
10396
10383
|
get imageFormat(): PrintSaveImageFormat;
|
|
10397
10384
|
set imageFormat(value: PrintSaveImageFormat);
|
|
10398
10385
|
get outputFormat(): PrintOutputFormat;
|
|
@@ -10435,7 +10422,7 @@ declare class PrintFormComponent implements OnInit {
|
|
|
10435
10422
|
get titleField(): UntypedFormControl;
|
|
10436
10423
|
get subtitleField(): UntypedFormControl;
|
|
10437
10424
|
get legendPositionField(): UntypedFormControl;
|
|
10438
|
-
submit:
|
|
10425
|
+
readonly submit: i0.OutputEmitterRef<PrintOptions>;
|
|
10439
10426
|
maxLength: number;
|
|
10440
10427
|
constructor();
|
|
10441
10428
|
ngOnInit(): void;
|
|
@@ -10443,7 +10430,7 @@ declare class PrintFormComponent implements OnInit {
|
|
|
10443
10430
|
toggleImageSaveProp(): void;
|
|
10444
10431
|
changeCommentLength(): void;
|
|
10445
10432
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrintFormComponent, never>;
|
|
10446
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PrintFormComponent, "igo-print-form", never, { "disabled$": { "alias": "disabled$"; "required": false; }; "imageFormat": { "alias": "imageFormat"; "required": false; }; "outputFormat": { "alias": "outputFormat"; "required": false; }; "paperFormat": { "alias": "paperFormat"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "resolution": { "alias": "resolution"; "required": false; }; "legendPosition": { "alias": "legendPosition"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "comment": { "alias": "comment"; "required": false; }; "showProjection": { "alias": "showProjection"; "required": false; }; "showScale": { "alias": "showScale"; "required": false; }; "showLegend": { "alias": "showLegend"; "required": false; }; "doZipFile": { "alias": "doZipFile"; "required": false; }; "showNorth": { "alias": "showNorth"; "required": false; }; }, { "submit": "submit"; }, never, never, true, never>;
|
|
10433
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PrintFormComponent, "igo-print-form", never, { "disabled$": { "alias": "disabled$"; "required": false; "isSignal": true; }; "imageFormat": { "alias": "imageFormat"; "required": false; }; "outputFormat": { "alias": "outputFormat"; "required": false; }; "paperFormat": { "alias": "paperFormat"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "resolution": { "alias": "resolution"; "required": false; }; "legendPosition": { "alias": "legendPosition"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "comment": { "alias": "comment"; "required": false; }; "showProjection": { "alias": "showProjection"; "required": false; }; "showScale": { "alias": "showScale"; "required": false; }; "showLegend": { "alias": "showLegend"; "required": false; }; "doZipFile": { "alias": "doZipFile"; "required": false; }; "showNorth": { "alias": "showNorth"; "required": false; }; }, { "submit": "submit"; }, never, never, true, never>;
|
|
10447
10434
|
}
|
|
10448
10435
|
|
|
10449
10436
|
/**
|
|
@@ -11857,15 +11844,15 @@ declare class WorkspaceUpdatorDirective implements OnInit, OnDestroy {
|
|
|
11857
11844
|
private featureWorkspaceService;
|
|
11858
11845
|
private layers$$;
|
|
11859
11846
|
private entities$$;
|
|
11860
|
-
map: IgoMap
|
|
11861
|
-
workspaceStore: WorkspaceStore
|
|
11847
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
11848
|
+
readonly workspaceStore: i0.InputSignal<WorkspaceStore>;
|
|
11862
11849
|
ngOnInit(): void;
|
|
11863
11850
|
ngOnDestroy(): void;
|
|
11864
11851
|
private onLayersChange;
|
|
11865
11852
|
private getOrCreateWorkspace;
|
|
11866
11853
|
private layerIsEditable;
|
|
11867
11854
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkspaceUpdatorDirective, never>;
|
|
11868
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<WorkspaceUpdatorDirective, "[igoWorkspaceUpdator]", never, { "map": { "alias": "map"; "required": false; }; "workspaceStore": { "alias": "workspaceStore"; "required": false; }; }, {}, never, never, true, never>;
|
|
11855
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<WorkspaceUpdatorDirective, "[igoWorkspaceUpdator]", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "workspaceStore": { "alias": "workspaceStore"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11869
11856
|
}
|
|
11870
11857
|
|
|
11871
11858
|
/**
|
|
@@ -11892,5 +11879,5 @@ declare function provideInteractiveSelectionFormWidget(): {
|
|
|
11892
11879
|
deps: (typeof WidgetService)[];
|
|
11893
11880
|
};
|
|
11894
11881
|
|
|
11895
|
-
export { AddCatalogDialogComponent, ArcGISRestCapabilitiesLayerTypes, ArcGISRestDataSource, BaseLayersSwitcherComponent, CATALOG_DIRECTIVES, CATALOG_LIBRARY_DIRECTIVES, CadastreSearchSource, CapabilitiesService, CartoDataSource, Catalog, CatalogBrowserComponent, CatalogItemType, CatalogLibraryComponent, CatalogService, ClusterDataSource, ConfigFileToGeoDBService, ConfirmationPopupComponent, CoordinatesReverseSearchSource, CoordinatesReverseSearchSourceFactory, CoordinatesSearchResultFormatter, CoordinatesUnit, CsvSeparator, DDtoDMS, DataService, DataSource, DataSourceService, DirectionRelativePositionType, DirectionSourceKind, DirectionsButtonsComponent, DirectionsComponent, DirectionsFormat, DirectionsInputsComponent, DirectionsResultsComponent, DirectionsService, DirectionsSource, DirectionsType, DownloadButtonComponent, DownloadService, DrawComponent, DrawControl, DrawIconService, DrawStyleService, DropGeoFileDirective, EditionWorkspace, EditionWorkspaceService, EsriStyleGenerator, EventRefresh, ExportButtonComponent, ExportError, ExportFormat, ExportFormatLegacy, ExportInvalidFileError, ExportNothingToExportError, ExportService, FEATURE, FEATURE_DETAILS_DIRECTIVES, FEATURE_DIRECTIVES, FILTER_DIRECTIVES, FeatureDataSource, FeatureDetailsComponent, FeatureDetailsDirective, FeatureFormComponent, FeatureMotion, FeatureStore, FeatureStoreInMapExtentStrategy, FeatureStoreInMapResolutionStrategy, FeatureStoreLoadingLayerStrategy, FeatureStoreLoadingStrategy, FeatureStoreSearchIndexStrategy, FeatureStoreSelectionStrategy, FeatureWorkspace, FeatureWorkspaceService, FilterableDataSourcePipe, GEOMETRY_FORM_FIELD_DIRECTIVES, GeoDB, GeoNetworkService, GeoPropertiesStrategy, GeolocateButtonComponent, GeolocationOverlayType, GeometryFormFieldComponent, GeometryFormFieldInputComponent, GeometrySliceError, GeometrySliceLineStringError, GeometrySliceMultiPolygonError, GeometrySliceTooManyIntersectionError, GeometryType, GoogleLinks, HomeExtentButtonComponent, HoverFeatureDirective, IChercheReverseSearchSource, IChercheSearchResultFormatter, IChercheSearchSource, ID_GROUP_PREFIX, ILayerSearchResultFormatter, ILayerSearchSource, IMPORT_EXPORT_DIRECTIVES, IgoCatalogBrowserModule, IgoCatalogLibraryModule, IgoCatalogModule, IgoConfirmationPopupModule, IgoDirectionsModule, IgoDownloadModule, IgoDrawModule, IgoDrawingToolModule, IgoFeatureDetailsModule, IgoFeatureFormModule, IgoFeatureModule, IgoFilterModule, IgoGeoModule, IgoGeoWorkspaceModule, IgoGeometryFormFieldModule, IgoGeometryModule, IgoHttpParameterCodec, IgoImportExportModule, IgoLayerModule, IgoMap, IgoMapModule, IgoMeasureModule, IgoMeasurerModule, IgoMetadataModule, IgoOgcFilterModule, IgoPrintModule, IgoQueryModule, IgoSearchBarModule, IgoSearchModule, IgoSearchResultsModule, IgoSearchSelectorModule, IgoSearchSettingsModule, IgoStyleListModule, IgoStyleModule, IgoToastModule, IgoWktModule, IgoWorkspaceSelectorModule, IgoWorkspaceUpdatorModule, ImageArcGISRestDataSource, ImageLayer, ImageWatcher, ImportError, ImportExportComponent, ImportInvalidFileError, ImportNothingToImportError, ImportOgreServerError, ImportSRSError, ImportService, ImportSizeError, ImportUnreadableFileError, InfoSectionComponent, InsertSourceInsertDBEnum, InteractiveSelectionFormWidget, LAYER, LAYER_DIRECTIVES, LabelType, LaneType, Layer, LayerBase, LayerController, LayerDB, LayerGroup, LayerGroupBase, LayerGroupComponent, LayerItemComponent, LayerLegendComponent, LayerLegendItemComponent, LayerLegendListBindingDirective, LayerLegendListComponent, LayerListComponent, LayerListControlsEnum, LayerListToolComponent, LayerListToolService, LayerSearchComponent, LayerService, LayerUnavailableComponent, LayerUnavailableListComponent, LayerViewerBottomActionsComponent, LayerViewerComponent, LayerVisibilityButtonComponent, Linked, LinkedProperties, MAP_DIRECTIVES, MEASURER_DIRECTIVES, MEASURE_UNIT_AUTO, METADATA_DIRECTIVES, MVTDataSource, ManeuverModifier, ManeuverType, MapBase, MapBrowserComponent, MapCenterComponent, MapController, MapGeolocationController, MapOfflineDirective, MapService, MapViewAction, MapViewController, MeasureAreaUnit, MeasureAreaUnitAbbreviation, MeasureFormatPipe, MeasureLengthUnit, MeasureLengthUnitAbbreviation, MeasureType, MeasurerComponent, MenuButtonComponent, MetadataAbstractComponent, MetadataButtonComponent, MetadataService, MiniBaseMapComponent, ModifyControl, NominatimSearchSource, OGCFilterService, OSMDataSource, OfflineButtonComponent, OgcFilterButtonComponent, OgcFilterComponent, OgcFilterFormComponent, OgcFilterOperator, OgcFilterOperatorType, OgcFilterSelectionComponent, OgcFilterTimeComponent, OgcFilterTimeSliderComponent, OgcFilterWidget, OgcFilterWriter, OgcFilterableFormComponent, OgcFilterableItemComponent, OgcFilterableListBindingDirective, OgcFilterableListComponent, OgcSelectorFields, OlDragSelectInteraction, OptionsApiService, OptionsService, OsmLinks, OsrmDirectionsSource, Overlay, OverlayAction, PointerPositionDirective, PrintComponent, PrintFormComponent, PrintLegendPosition, PrintOrientation, PrintOutputFormat, PrintPaperFormat, PrintResolution, PrintSaveImageFormat, PrintService, ProjectionService, PropertyTypeDetectorService, ProposalType, QueryDirective, QueryFormat, QueryFormatMimeType, QueryHtmlTarget, QuerySearchSource, QueryService, ResponseType, RotationButtonComponent, RoutesFeatureStore, SEARCH_DIRECTIVES, SEARCH_RESULTS_DIRECTIVES, SEARCH_TYPES, STYLELIST_OPTIONS, SearchBarComponent, SearchPointerSummaryDirective, SearchResultAddButtonComponent, SearchResultMode, SearchResultsComponent, SearchSelectorComponent, SearchService, SearchSettingsComponent, SearchSource, SearchSourceKind, SearchSourceService, SliceControl, SourceDirectionsType, SpatialFilterItemComponent, SpatialFilterItemType, SpatialFilterListComponent, SpatialFilterQueryType, SpatialFilterService, SpatialFilterType, SpatialFilterTypeComponent, StepsFeatureStore, StopsFeatureStore, StopsStore, StoredQueriesReverseSearchSource, StoredQueriesSearchSource, StyleListService, StyleModalDrawingComponent, StyleModalLayerButtonComponent, StyleModalLayerComponent, StyleService, SwipeControlComponent, TileArcGISRestDataSource, TileDebugDataSource, TileLayer, TileWatcher, TimeFilterButtonComponent, TimeFilterFormComponent, TimeFilterItemComponent, TimeFilterListBindingDirective, TimeFilterListComponent, TimeFilterService, TimeFilterStyle, TimeFilterType, ToastComponent, TooltipType, TrackFeatureButtonComponent, TypeCapabilities, TypeCatalog, VectorLayer, VectorTileLayer, VectorWatcher, WFSDataSource, WFSService, WMSDataSource, WMTSDataSource, WakeLockButtonComponent, WebSocketDataSource, WfsWorkspace, WfsWorkspaceService, WktService, WorkspaceSearchSource, WorkspaceSelectorDirective, WorkspaceUpdatorDirective, XYZDataSource, ZoomButtonComponent, addLayerAndFeaturesStyledToMap, addLayerAndFeaturesToMap, addLinearRingToOlPolygon, addOrRemoveLayer, addRouteToRoutesFeatureStore, addStopToStopsFeatureStore, addStopToStore, bufferOlGeometry, buildUrl, cadastreSearchSourceFactory, checkWfsParams, clearOlGeometryMidpoints, computeBestAreaUnit, computeBestLengthUnit, computeLayerTitleFromFile, computeMVTOptionsOnHover, computeOlFeatureExtent, computeOlFeaturesDiff, computeOlFeaturesExtent, computeProjectionsConstraints, computeRelativePosition, computeStopsPosition, computeTermSimilarity, convertDDToDMS, createDefaultTileGrid, createDrawHoleInteractionStyle, createDrawInteractionStyle, createFilterInMapExtentOrResolutionStrategy, createInteractionStyle, createMeasureInteractionStyle, createMeasureLayerStyle, createOlTooltipAtPoint, createOlTooltipDrawAtPoint, createOverlayDefaultStyle, createOverlayLayer, createOverlayLayerStyle, createOverlayMarkerStyle, createTableTemplate, ctrlKeyDown, defaultCoordinatesSearchResultFormatterFactory, defaultEpsg, defaultFieldNameGeometry, defaultIChercheSearchResultFormatterFactory, defaultMaxFeatures, defaultWfsVersion, detectFileEPSG, directionsStyle, doesOlGeometryIntersects, entitiesToRowData, exportToCSV, featureFromOl, featureRandomStyle, featureRandomStyleFunction, featureToOl, featureToSearchResult, featuresAreOutOfView, featuresAreTooDeepInView, findDiff, findLayerByLinkId, findParentId, formatDistance, formatDuration, formatMeasure, formatScale, formatStep, formatWFSQueryString, generateArcgisRestIdFromSourceOptions, generateFeatureIdFromSourceOptions, generateId, generateIdFromSourceOptions, generateWMSIdFromSourceOptions, generateWMTSIdFromSourceOptions, generateWfsIdFromSourceOptions, generateXYZIdFromSourceOptions, getAllChildLayersByDeletion, getAllChildLayersByProperty, getCommonVectorSelectedStyle, getCommonVectorStyle, getFileExtension, getFormatFromOptions, getGeoServiceAction, getLayerOptionIdentifier, getLayersByDeletion, getLayersLegends, getLinkedLayersOptions, getMousePositionFromOlGeometryEvent, getOlTooltipAtCenter, getOlTooltipsAtMidpoints, getResolutionFromScale, getRootParentByDeletion, getRootParentByProperty, getRowsInMapExtent, getSaveableOgcParams, getScaleFromResolution, getSelectedOnly, getTooltipsOfOlGeometry, gmlRegex, handleFileExportError, handleFileExportSuccess, handleFileImportError, handleFileImportSuccess, handleInvalidFileImportError, handleLayerPropertyChange, handleNothingToExportError, handleNothingToImportError, handleOgreServerImportError, handleSRSImportError, handleSizeFileImportError, handleUnreadbleFileImportError, hideOlFeature, hoverFeatureMarkerStyle, ichercheReverseSearchSourceFactory, ichercheSearchSourceFactory, ilayerSearchResultFormatterFactory, ilayerSearchSourceFactory, initRoutesFeatureStore, initStepsFeatureStore, initStopsFeatureStore, interactiveSelectionFormWidgetFactory, isBaseLayer, isBaseLayerLinked, isCsvExport, isLayerGroup, isLayerGroupOptions, isLayerItem, isLayerItemOptions, isLayerLinked, isLayerLinkedOptions, isLayerLinkedTogether, isLinkMaster, isSaveableLayer, jsonRegex, layerFeatureIsQueryable, layerIsQueryable, lonLatConversion, mapExtentStrategyActiveToolTip, measureOlGeometry, measureOlGeometryArea, measureOlGeometryLength, mergeLayersOptions, metersToFeet, metersToKilometers, metersToMiles, metersToUnit, moveToOlFeatures, mtmZoneFromLonLat, noElementSelected, nominatimSearchSourceFactory, ogcFilterWidgetFactory, olLayerFeatureIsQueryable, olLayerIsQueryable, olStyleToBasicIgoStyle, optionsApiFactory, osrmDirectionsSourcesFactory, pointerPositionSummaryMarkerStyle, provideCadastreSearchSource, provideCoordinatesReverseSearchSource, provideDefaultCoordinatesSearchResultFormatter, provideDefaultIChercheSearchResultFormatter, provideDirection, provideIChercheReverseSearchSource, provideIChercheSearchSource, provideILayerSearchResultFormatter, provideILayerSearchSource, provideInteractiveSelectionFormWidget, provideNominatimSearchSource, provideOffline, provideOgcFilterWidget, provideOptionsApi, provideOsrmDirectionsSource, provideQuerySearchSource, provideSearch, provideSearchSourceService, provideStoredQueriesReverseSearchSource, provideStoredQueriesSearchSource, provideStyleListLoader, provideStyleListOptions, provideWorkspaceSearchSource, querySearchSourceFactory, removeStopFromStore, renderFeatureFromOl, roundCoordTo, roundCoordToString, scaleExtent, searchSourceServiceFactory, setRowsInMapExtent, setSelectedOnly, sliceOlGeometry, sliceOlPolygon, sortLayersByZindex, sourceCanReverseSearch, sourceCanReverseSearchAsSummary, sourceCanSearch, squareMetersToAcres, squareMetersToHectares, squareMetersToSquareFeet, squareMetersToSquareKilometers, squareMetersToSquareMiles, squareMetersToUnit, standardizeUrl, storedqueriesReverseSearchSourceFactory, storedqueriesSearchSourceFactory, stringToLonLat, translateManeuverBearing, translateManeuverModifier, tryAddLoadingStrategy, tryAddSelectionStrategy, tryBindStoreLayer, updateOlGeometryCenter, updateOlGeometryMidpoints, updateOlTooltipAtCenter, updateOlTooltipDrawAtCenter, updateOlTooltipsAtMidpoints, updateOlTooltipsDrawAtMidpoints, updateStoreSorting, utmZoneFromLonLat, viewStatesAreEqual, withCadastreSource, withCoordinatesReverseSource, withIChercheReverseSource, withIChercheSource, withILayerSource, withNominatimSource, withOsrmSource, withStoredQueriesReverseSource, withStoredQueriesSource, withWorkspaceSource, workspaceSearchSourceFactory, zoneMtm, zoneUtm };
|
|
11882
|
+
export { AddCatalogDialogComponent, ArcGISRestCapabilitiesLayerTypes, ArcGISRestDataSource, BaseLayersSwitcherComponent, CATALOG_DIRECTIVES, CATALOG_LIBRARY_DIRECTIVES, CadastreSearchSource, CapabilitiesService, CartoDataSource, Catalog, CatalogBrowserComponent, CatalogItemType, CatalogLibraryComponent, CatalogService, ClusterDataSource, ConfigFileToGeoDBService, ConfirmationPopupComponent, CoordinatesReverseSearchSource, CoordinatesReverseSearchSourceFactory, CoordinatesSearchResultFormatter, CoordinatesUnit, CsvSeparator, DDtoDMS, DataService, DataSource, DataSourceService, DirectionRelativePositionType, DirectionSourceKind, DirectionsButtonsComponent, DirectionsComponent, DirectionsFormat, DirectionsInputsComponent, DirectionsResultsComponent, DirectionsService, DirectionsSource, DirectionsType, DownloadButtonComponent, DownloadService, DrawComponent, DrawControl, DrawIconService, DrawStyleService, DropGeoFileDirective, EditionWorkspace, EditionWorkspaceService, EsriStyleGenerator, EventRefresh, ExportButtonComponent, ExportError, ExportFormat, ExportFormatLegacy, ExportInvalidFileError, ExportNothingToExportError, ExportService, FEATURE, FEATURE_DETAILS_DIRECTIVES, FEATURE_DIRECTIVES, FILTER_DIRECTIVES, FeatureDataSource, FeatureDetailsComponent, FeatureDetailsDirective, FeatureFormComponent, FeatureMotion, FeatureStore, FeatureStoreInMapExtentStrategy, FeatureStoreInMapResolutionStrategy, FeatureStoreLoadingLayerStrategy, FeatureStoreLoadingStrategy, FeatureStoreSearchIndexStrategy, FeatureStoreSelectionStrategy, FeatureWorkspace, FeatureWorkspaceService, FilterableDataSourcePipe, GEOMETRY_FORM_FIELD_DIRECTIVES, GeoDB, GeoNetworkService, GeoPropertiesStrategy, GeolocateButtonComponent, GeolocationOverlayType, GeometryFormFieldComponent, GeometryFormFieldInputComponent, GeometrySliceError, GeometrySliceLineStringError, GeometrySliceMultiPolygonError, GeometrySliceTooManyIntersectionError, GeometryType, GoogleLinks, HomeExtentButtonComponent, HoverFeatureDirective, IChercheReverseSearchSource, IChercheSearchResultFormatter, IChercheSearchSource, ID_GROUP_PREFIX, ILayerSearchResultFormatter, ILayerSearchSource, IMPORT_EXPORT_DIRECTIVES, IgoCatalogBrowserModule, IgoCatalogLibraryModule, IgoCatalogModule, IgoConfirmationPopupModule, IgoDirectionsModule, IgoDownloadModule, IgoDrawModule, IgoDrawingToolModule, IgoFeatureDetailsModule, IgoFeatureFormModule, IgoFeatureModule, IgoFilterModule, IgoGeoModule, IgoGeoWorkspaceModule, IgoGeometryFormFieldModule, IgoGeometryModule, IgoHttpParameterCodec, IgoImportExportModule, IgoLayerModule, IgoMap, IgoMapModule, IgoMeasureModule, IgoMeasurerModule, IgoMetadataModule, IgoOgcFilterModule, IgoPrintModule, IgoQueryModule, IgoSearchBarModule, IgoSearchModule, IgoSearchResultsModule, IgoSearchSelectorModule, IgoSearchSettingsModule, IgoStyleListModule, IgoStyleModule, IgoToastModule, IgoWktModule, IgoWorkspaceSelectorModule, IgoWorkspaceUpdatorModule, ImageArcGISRestDataSource, ImageLayer, ImageWatcher, ImportError, ImportExportComponent, ImportInvalidFileError, ImportNothingToImportError, ImportOgreServerError, ImportSRSError, ImportService, ImportSizeError, ImportUnreadableFileError, InfoSectionComponent, InsertSourceInsertDBEnum, InteractiveSelectionFormWidget, LAYER, LAYER_DIRECTIVES, LabelType, LaneType, Layer, LayerBase, LayerController, LayerDB, LayerGroup, LayerGroupBase, LayerGroupComponent, LayerItemComponent, LayerLegendComponent, LayerLegendItemComponent, LayerLegendListBindingDirective, LayerLegendListComponent, LayerListComponent, LayerListControlsEnum, LayerListToolComponent, LayerListToolService, LayerSearchComponent, LayerService, LayerUnavailableComponent, LayerUnavailableListComponent, LayerViewerBottomActionsComponent, LayerViewerComponent, LayerVisibilityButtonComponent, Linked, LinkedProperties, MAP_DIRECTIVES, MEASURER_DIRECTIVES, MEASURE_UNIT_AUTO, METADATA_DIRECTIVES, MVTDataSource, ManeuverModifier, ManeuverType, MapBase, MapBrowserComponent, MapCenterComponent, MapController, MapGeolocationController, MapOfflineDirective, MapService, MapViewAction, MapViewController, MeasureAreaUnit, MeasureAreaUnitAbbreviation, MeasureFormatPipe, MeasureLengthUnit, MeasureLengthUnitAbbreviation, MeasureType, MeasurerComponent, MenuButtonComponent, MetadataAbstractComponent, MetadataButtonComponent, MetadataService, MiniBaseMapComponent, ModifyControl, NominatimSearchSource, OGCFilterService, OSMDataSource, OfflineButtonComponent, OgcFilterButtonComponent, OgcFilterComponent, OgcFilterFormComponent, OgcFilterOperator, OgcFilterOperatorType, OgcFilterSelectionComponent, OgcFilterTimeComponent, OgcFilterTimeSliderComponent, OgcFilterWidget, OgcFilterWriter, OgcFilterableFormComponent, OgcFilterableItemComponent, OgcFilterableListBindingDirective, OgcFilterableListComponent, OgcSelectorFields, OlDragSelectInteraction, OptionsApiService, OptionsService, OsmLinks, OsrmDirectionsSource, Overlay, OverlayAction, PointerPositionDirective, PrintComponent, PrintFormComponent, PrintLegendPosition, PrintOrientation, PrintOutputFormat, PrintPaperFormat, PrintResolution, PrintSaveImageFormat, PrintService, ProjectionService, PropertyTypeDetectorService, ProposalType, QueryDirective, QueryFormat, QueryFormatMimeType, QueryHtmlTarget, QuerySearchSource, QueryService, RADIUS_NAME, ResponseType, RotationButtonComponent, RoutesFeatureStore, SEARCH_DIRECTIVES, SEARCH_RESULTS_DIRECTIVES, SEARCH_TYPES, STYLELIST_OPTIONS, SearchBarComponent, SearchPointerSummaryDirective, SearchResultAddButtonComponent, SearchResultMode, SearchResultsComponent, SearchSelectorComponent, SearchService, SearchSettingsComponent, SearchSource, SearchSourceKind, SearchSourceService, SliceControl, SourceDirectionsType, SpatialFilterItemComponent, SpatialFilterItemType, SpatialFilterListComponent, SpatialFilterQueryType, SpatialFilterService, SpatialFilterType, SpatialFilterTypeComponent, StepsFeatureStore, StopsFeatureStore, StopsStore, StoredQueriesReverseSearchSource, StoredQueriesSearchSource, StyleListService, StyleModalDrawingComponent, StyleModalLayerButtonComponent, StyleModalLayerComponent, StyleService, SwipeControlComponent, TileArcGISRestDataSource, TileDebugDataSource, TileLayer, TileWatcher, TimeFilterButtonComponent, TimeFilterFormComponent, TimeFilterItemComponent, TimeFilterListBindingDirective, TimeFilterListComponent, TimeFilterService, TimeFilterStyle, TimeFilterType, ToastComponent, TooltipType, TrackFeatureButtonComponent, TypeCapabilities, TypeCatalog, VectorLayer, VectorTileLayer, VectorWatcher, WFSDataSource, WFSService, WMSDataSource, WMTSDataSource, WakeLockButtonComponent, WebSocketDataSource, WfsWorkspace, WfsWorkspaceService, WktService, WorkspaceSearchSource, WorkspaceSelectorDirective, WorkspaceUpdatorDirective, XYZDataSource, ZoomButtonComponent, addLayerAndFeaturesStyledToMap, addLayerAndFeaturesToMap, addLinearRingToOlPolygon, addOrRemoveLayer, addRouteToRoutesFeatureStore, addStopToStopsFeatureStore, addStopToStore, bufferOlGeometry, buildUrl, cadastreSearchSourceFactory, checkWfsParams, clearOlGeometryMidpoints, computeBestAreaUnit, computeBestLengthUnit, computeLayerTitleFromFile, computeMVTOptionsOnHover, computeOlFeatureExtent, computeOlFeaturesDiff, computeOlFeaturesExtent, computeProjectionsConstraints, computeRelativePosition, computeStopsPosition, computeTermSimilarity, convertDDToDMS, createDefaultTileGrid, createDrawHoleInteractionStyle, createDrawInteractionStyle, createFilterInMapExtentOrResolutionStrategy, createInteractionStyle, createMeasureInteractionStyle, createMeasureLayerStyle, createOlTooltipAtPoint, createOlTooltipDrawAtPoint, createOverlayDefaultStyle, createOverlayLayer, createOverlayLayerStyle, createOverlayMarkerStyle, createTableTemplate, ctrlKeyDown, defaultCoordinatesSearchResultFormatterFactory, defaultEpsg, defaultFieldNameGeometry, defaultIChercheSearchResultFormatterFactory, defaultMaxFeatures, defaultWfsVersion, detectFileEPSG, directionsStyle, doesOlGeometryIntersects, entitiesToRowData, exportToCSV, featureFromOl, featureRandomStyle, featureRandomStyleFunction, featureToOl, featureToSearchResult, featuresAreOutOfView, featuresAreTooDeepInView, findDiff, findLayerByLinkId, findParentId, formatDistance, formatDuration, formatMeasure, formatScale, formatStep, formatWFSQueryString, generateArcgisRestIdFromSourceOptions, generateFeatureIdFromSourceOptions, generateId, generateIdFromSourceOptions, generateWMSIdFromSourceOptions, generateWMTSIdFromSourceOptions, generateWfsIdFromSourceOptions, generateXYZIdFromSourceOptions, getAllChildLayersByDeletion, getAllChildLayersByProperty, getCommonVectorSelectedStyle, getCommonVectorStyle, getFileExtension, getFormatFromOptions, getGeoServiceAction, getLayerOptionIdentifier, getLayersByDeletion, getLayersLegends, getLinkedLayersOptions, getMousePositionFromOlGeometryEvent, getOlTooltipAtCenter, getOlTooltipsAtMidpoints, getResolutionFromScale, getRootParentByDeletion, getRootParentByProperty, getRowsInMapExtent, getSaveableOgcParams, getScaleFromResolution, getSelectedOnly, getTooltipsOfOlGeometry, gmlRegex, handleFileExportError, handleFileExportSuccess, handleFileImportError, handleFileImportSuccess, handleInvalidFileImportError, handleLayerPropertyChange, handleNothingToExportError, handleNothingToImportError, handleOgreServerImportError, handleSRSImportError, handleSizeFileImportError, handleUnreadbleFileImportError, hideOlFeature, hoverFeatureMarkerStyle, ichercheReverseSearchSourceFactory, ichercheSearchSourceFactory, ilayerSearchResultFormatterFactory, ilayerSearchSourceFactory, initRoutesFeatureStore, initStepsFeatureStore, initStopsFeatureStore, interactiveSelectionFormWidgetFactory, isBaseLayer, isBaseLayerLinked, isCsvExport, isLayerGroup, isLayerGroupOptions, isLayerItem, isLayerItemOptions, isLayerLinked, isLayerLinkedOptions, isLayerLinkedTogether, isLinkMaster, isSaveableLayer, jsonRegex, layerFeatureIsQueryable, layerIsQueryable, lonLatConversion, mapExtentStrategyActiveToolTip, measureOlGeometry, measureOlGeometryArea, measureOlGeometryLength, mergeLayersOptions, metersToFeet, metersToKilometers, metersToMiles, metersToUnit, moveToOlFeatures, mtmZoneFromLonLat, noElementSelected, nominatimSearchSourceFactory, ogcFilterWidgetFactory, olLayerFeatureIsQueryable, olLayerIsQueryable, olStyleToBasicIgoStyle, optionsApiFactory, osrmDirectionsSourcesFactory, pointerPositionSummaryMarkerStyle, provideCadastreSearchSource, provideCoordinatesReverseSearchSource, provideDefaultCoordinatesSearchResultFormatter, provideDefaultIChercheSearchResultFormatter, provideDirection, provideIChercheReverseSearchSource, provideIChercheSearchSource, provideILayerSearchResultFormatter, provideILayerSearchSource, provideInteractiveSelectionFormWidget, provideNominatimSearchSource, provideOffline, provideOgcFilterWidget, provideOptionsApi, provideOsrmDirectionsSource, provideQuerySearchSource, provideSearch, provideSearchSourceService, provideStoredQueriesReverseSearchSource, provideStoredQueriesSearchSource, provideStyleListLoader, provideStyleListOptions, provideWorkspaceSearchSource, querySearchSourceFactory, removeStopFromStore, renderFeatureFromOl, roundCoordTo, roundCoordToString, scaleExtent, searchSourceServiceFactory, setRowsInMapExtent, setSelectedOnly, sliceOlGeometry, sliceOlPolygon, sortLayersByZindex, sourceCanReverseSearch, sourceCanReverseSearchAsSummary, sourceCanSearch, squareMetersToAcres, squareMetersToHectares, squareMetersToSquareFeet, squareMetersToSquareKilometers, squareMetersToSquareMiles, squareMetersToUnit, standardizeUrl, storedqueriesReverseSearchSourceFactory, storedqueriesSearchSourceFactory, stringToLonLat, translateManeuverBearing, translateManeuverModifier, tryAddLoadingStrategy, tryAddSelectionStrategy, tryBindStoreLayer, updateOlGeometryCenter, updateOlGeometryMidpoints, updateOlTooltipAtCenter, updateOlTooltipDrawAtCenter, updateOlTooltipsAtMidpoints, updateOlTooltipsDrawAtMidpoints, updateStoreSorting, utmZoneFromLonLat, viewStatesAreEqual, withCadastreSource, withCoordinatesReverseSource, withIChercheReverseSource, withIChercheSource, withILayerSource, withNominatimSource, withOsrmSource, withStoredQueriesReverseSource, withStoredQueriesSource, withWorkspaceSource, workspaceSearchSourceFactory, zoneMtm, zoneUtm };
|
|
11896
11883
|
export type { AddedChangeEmitter, AddedChangeGroupEmitter, AnyBaseOgcFilterOptions, AnyDataSource, AnyDataSourceOptions, AnyDataSourceOptionsWithParams, AnyEventName, AnyExportFormat, AnyLayer, AnyLayerBase, AnyLayerItemOptions, AnyLayerOptions, AnyPropertyOptions, AnyWorkspace, ArcGISRestCapabilitiesLayer, ArcGISRestDataSourceOptions, ArcGISRestDataSourceOptionsParams, ArcGISRestImageDataSourceOptions, BaseDirectionsSourceOptionsProfile, BaseDirectionsSourceOptionsProfileAuthorization, Buffer, CartoDataSourceOptions, CatalogItem, CatalogItemGroup, CatalogItemLayer, CatalogItemState, CatalogQueryFormatTypes, CatalogServiceOptions, ClusterDataSourceOptions, ClusterParam, ClusterRange, CollectCatalogItemsFn, CommonVectorStyleOptions, CoordinatesData, CoordinatesResponse, CoordinatesReverseData, CoordinatesReverseResponse, CreateStyle, DataSourceOptions, DatasToIDB, DatasourceEvent, DialogData, DirectionOptions, DirectionSourceFeature, Directions, DirectionsGeometry, DirectionsSourceOptions, DownloadDataSourceOptions, DownloadOptions, Draw, DrawControlOptions, DrawOptions, DrawingMatDialogData, DrawingStyle, EditionOptions, EditionWorkspaceOptions, EnvironmentOptions, ExportOgreFormat, ExportOptions, Feature, FeatureCommonVectorStyleOptions, FeatureDataSourceOptions, FeatureFormSubmitEvent, FeatureGeometry, FeatureMeta, FeatureStoreDrawStrategyOptions, FeatureStoreInMapExtentStrategyOptions, FeatureStoreInMapResolutionStrategyOptions, FeatureStoreLoadingLayerStrategyOptions, FeatureStoreLoadingStrategyOptions, FeatureStoreMeasureStrategyOptions, FeatureStoreOptions, FeatureStorePropertyTypeStrategyOptions, FeatureStoreSearchIndexStrategyOptions, FeatureStoreSelectionStrategyOptions, FeatureStoreStrategyOptions, FeatureWithDirections, FeatureWithDirectionsProperties, FeatureWithDraw, FeatureWithDrawProperties, FeatureWithMeasure, FeatureWithMeasureProperties, FeatureWithStep, FeatureWithStepProperties, FeatureWithStop, FeatureWithStopProperties, FeatureWorkspaceOptions, ForcedProperty, FormattedStep, GeoDBData, GeoDataToIDB, GeoJSONGeometry, GeoServiceDefinition, GeoWorkspaceOptions, GeoWorkspaceQueryOptions, GeolocationBuffer, GeolocationOptions, GeometryCollection, GeometryFormFieldInputs, HomeExtentButtonOptions, ICatalog, IChercheData, IChercheResponse, IChercheReverseData, IChercheReverseResponse, ICompositeCatalog, ILayerData, ILayerDataHighlight, ILayerDataSource, ILayerItemResponse, ILayerSearchSourceOptions, ILayerServiceResponse, IOfflineOptions, IOgcFiltersOptionSaveable, IOgcInterfaceFilterOptions, ISearchSourceParams, IdbInfo, IgoDomSelector, IgoLabel, IgoLogicalArrayOptions, IgoOgcFilterObject, IgoOgcSelector, IgoStep, IgoStyle, IgoStyleBase, ImageLayerOptions, ImportExportServiceOptions, InputProjections, ItemStyleOptions, LayerConfig, LayerDBData, LayerGroupOptions, LayerListControlsOptions, LayerMatDialogData, LayerOptions, LayerOptionsBase, LayerSecurityOptions, LayerToolMode, LayerType, LayerViewerOptions, LayersLink, LayersLinkProperties, Legend, LegendMapViewOptions, LegendOptions, MVTDataSourceOptions, MapAttributionOptions, MapControlsOptions, MapExtent, MapGeolocationControllerOptions, MapGeolocationState, MapOptions, MapScaleLineOptions, MapViewControllerOptions, MapViewOptions, MapViewState, MapboxStyle, Measure, MeasurerDialogData, MetadataLayerOptions, MetadataOptions, ModifyControlOptions, NominatimData, OSMDataSourceOptions, OgcAutocomplete, OgcCheckbox, OgcFilter, OgcFilterAttributeOptions, OgcFilterConditionsArrayOptions, OgcFilterDuringOptions, OgcFilterEqualToOptions, OgcFilterGreaterLessOptions, OgcFilterIsBetweenOptions, OgcFilterIsLikeOptions, OgcFilterIsNullOptions, OgcFilterSpatialOptions, OgcFilterableDataSource, OgcFilterableDataSourceOptions, OgcFiltersOptions, OgcInterfaceFilterOptions, OgcPushButton, OgcRadioButton, OgcSelect, OgcSelectorBundle, OptionsApiOptions, OsrmDirectionsSourceOptions, OsrmIntersection, OsrmLane, OsrmRouteLeg, OsrmRouteStep, OsrmStepManeuver, OsrmWaypoint, OutputLayerLegend, OverlayStyleOptions, PreloadOptions, PrintOptions, Projection, ProjectionsLimitationsOptions, QueryOptions, QueryUrlData, QueryableDataSource, QueryableDataSourceOptions, RelationOptions, Research, ReverseSearch, ReverseSearchOptions, SearchMeta, SearchResult, SearchSourceFeature, SearchSourceOptions, SearchSourceSettings, SelectorGroup, SettingOptions, SimpleGetOptions, SliceControlOptions, SliderOptionsInterface, SourceFieldsOptionsParams, SourceFieldsValidationParams, SourceProposal, SpatialFilterOptions, SpatialFilterThematic, Stop, StoreAndDrawControl, StoredQueriesData, StoredQueriesFields, StoredQueriesResponse, StoredQueriesReverseData, StoredQueriesReverseResponse, StoredQueriesReverseSearchSourceOptions, StoredQueriesSearchSourceOptions, StyleByAttribute, StyleListOptions, StyleModalData, TextPdfSizeAndMargin, TextSearch, TextSearchOptions, TileArcGISRestDataSourceOptions, TileDebugDataSourceOptions, TileGridOptions, TileLayerOptions, TimeFilterOptions, TimeFilterableDataSource, TimeFilterableDataSourceOptions, TooltipContent, TypeCapabilitiesStrings, TypeCatalogStrings, VectorAnimation, VectorLayerOptions, VectorTileLayerOptions, WFSDataSourceOptions, WFSDataSourceOptionsParams, WFSWriteGetFeatureOptions, WMSDataSourceOptions, WMSDataSourceOptionsParams, WMTSDataSourceOptions, WebSocketDataSourceOptions, WfsWorkspaceOptions, WorkspaceData, XYZDataSourceOptions, ZindexPropertyOptions, searchIndexOptions };
|