@igo2/geo 20.1.0-next.2 → 20.1.0-next.21
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 +3519 -3233
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/index.d.ts +139 -125
- package/locale/en.geo.json +10 -2
- package/locale/fr.geo.json +11 -3
- package/package.json +10 -9
package/index.d.ts
CHANGED
|
@@ -5,12 +5,13 @@ 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
|
-
import * as rxjs from 'rxjs';
|
|
9
8
|
import { Observable, Subscription, BehaviorSubject, Subject } from 'rxjs';
|
|
10
9
|
import olSourceCluster from 'ol/source/Cluster';
|
|
11
10
|
import olSource from 'ol/source/Source';
|
|
12
11
|
import olSourceVector from 'ol/source/Vector';
|
|
13
12
|
import { Units } from 'ol/control/ScaleLine';
|
|
13
|
+
import * as _igo2_common_entity from '@igo2/common/entity';
|
|
14
|
+
import { BaseEntityTableColumn, EntityStore, EntityKey, EntityStoreOptions, EntityStoreStrategyOptions, EntityStoreStrategy, EntityTableTemplate, EntityTableComponent, EntityTableColumn, EntityState, EntityStoreFilterCustomFuncStrategy, EntityTableColumnRenderer, EntityRecord, EntityTableButton } from '@igo2/common/entity';
|
|
14
15
|
import OlGeometry, { Type } from 'ol/geom/Geometry';
|
|
15
16
|
import { Preset, Tokenizer, Encoders, Document } from 'flexsearch';
|
|
16
17
|
import { SubjectStatus, Watcher, TimeFrame, resolveDate } from '@igo2/utils';
|
|
@@ -19,7 +20,7 @@ import { ProjectionLike, Projection as Projection$1 } from 'ol/proj';
|
|
|
19
20
|
import * as ol from 'ol';
|
|
20
21
|
import { Map as Map$1 } from 'ol';
|
|
21
22
|
import OlFeature from 'ol/Feature';
|
|
22
|
-
import olFormatFeature
|
|
23
|
+
import olFormatFeature from 'ol/format/Feature';
|
|
23
24
|
import { Group } from 'ol/layer.js';
|
|
24
25
|
import BaseLayer from 'ol/layer/Base';
|
|
25
26
|
import olAttribution from 'ol/control/Attribution';
|
|
@@ -46,8 +47,6 @@ import { HttpClient, HttpParameterCodec } from '@angular/common/http';
|
|
|
46
47
|
import { Extent } from 'ol/extent';
|
|
47
48
|
import olProjection from 'ol/proj/Projection';
|
|
48
49
|
import { UntypedFormGroup, UntypedFormControl, FormControl, ControlValueAccessor, NgControl } from '@angular/forms';
|
|
49
|
-
import * as _igo2_common_entity from '@igo2/common/entity';
|
|
50
|
-
import { EntityStore, EntityKey, EntityStoreOptions, EntityStoreStrategyOptions, EntityStoreStrategy, EntityTableTemplate, EntityTableComponent, EntityTableColumn, EntityState, EntityTableColumnRenderer, EntityRecord, EntityTableButton, EntityStoreFilterCustomFuncStrategy } from '@igo2/common/entity';
|
|
51
50
|
import { Position, Geometry, GeoJsonGeometryTypes } from 'geojson';
|
|
52
51
|
import { ConfigService } from '@igo2/core/config';
|
|
53
52
|
import { StorageService } from '@igo2/core/storage';
|
|
@@ -67,14 +66,16 @@ import { MatSlider, MatSliderChange } from '@angular/material/slider';
|
|
|
67
66
|
import { DatepickerComponent } from '@igo2/common/datepicker';
|
|
68
67
|
import { TimepickerComponent } from '@igo2/common/timepicker';
|
|
69
68
|
import { SelectionModel } from '@angular/cdk/collections';
|
|
70
|
-
import { NestedTreeControl
|
|
71
|
-
import { MatTreeNestedDataSource,
|
|
69
|
+
import { NestedTreeControl } from '@angular/cdk/tree';
|
|
70
|
+
import { MatTreeNestedDataSource, MatTree } from '@angular/material/tree';
|
|
72
71
|
import * as olStyle from 'ol/style';
|
|
73
72
|
import { Form, FormComponent, FormFieldInputs } from '@igo2/common/form';
|
|
74
73
|
import { ThemePalette, MatOption } from '@angular/material/core';
|
|
74
|
+
import * as i4 from '@angular/material/dialog';
|
|
75
|
+
import { MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
75
76
|
import { MatSlideToggleChange } from '@angular/material/slide-toggle';
|
|
76
77
|
import { Workspace, WorkspaceStore, WorkspaceOptions } from '@igo2/common/workspace';
|
|
77
|
-
import {
|
|
78
|
+
import { ITreeConfig, TreeDropEvent, DropPermission, DragAndDropDirective } from '@igo2/common/drag-drop';
|
|
78
79
|
import { MatCheckboxChange } from '@angular/material/checkbox';
|
|
79
80
|
import { ConnectionState } from '@igo2/core/network';
|
|
80
81
|
import { IconSvg } from '@igo2/common/icon';
|
|
@@ -87,8 +88,6 @@ import { FlexibleState } from '@igo2/common/flexible';
|
|
|
87
88
|
import * as i1$1 from '@igo2/common/widget';
|
|
88
89
|
import { WidgetComponent, Widget, WidgetService } from '@igo2/common/widget';
|
|
89
90
|
import { OnUpdateInputs } from '@igo2/common/dynamic-component';
|
|
90
|
-
import * as i4 from '@angular/material/dialog';
|
|
91
|
-
import { MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
92
91
|
import { LanguageService } from '@igo2/core/language';
|
|
93
92
|
import { SafeResourceUrl } from '@angular/platform-browser';
|
|
94
93
|
import { Toolbox } from '@igo2/common/tool';
|
|
@@ -296,7 +295,7 @@ interface DataSourceOptions {
|
|
|
296
295
|
relations?: RelationOptions[];
|
|
297
296
|
fieldNameGeometry?: string;
|
|
298
297
|
}
|
|
299
|
-
interface SourceFieldsOptionsParams {
|
|
298
|
+
interface SourceFieldsOptionsParams extends Omit<BaseEntityTableColumn, 'title'> {
|
|
300
299
|
name: any;
|
|
301
300
|
alias?: any;
|
|
302
301
|
values?: any;
|
|
@@ -304,11 +303,10 @@ interface SourceFieldsOptionsParams {
|
|
|
304
303
|
allowedOperatorsType?: OgcFilterOperatorType;
|
|
305
304
|
step?: number;
|
|
306
305
|
relation?: RelationOptions;
|
|
307
|
-
type?: number | number[] | string | string[] | boolean | Date;
|
|
306
|
+
type?: 'number' | 'number[]' | 'string' | 'string[]' | 'boolean' | 'Date' | 'list' | 'autocomplete';
|
|
308
307
|
primary?: boolean;
|
|
309
308
|
visible?: boolean;
|
|
310
309
|
validation?: SourceFieldsValidationParams;
|
|
311
|
-
linkColumnForce?: string;
|
|
312
310
|
multiple?: boolean;
|
|
313
311
|
tooltip?: string;
|
|
314
312
|
searchIndex?: searchIndexOptions;
|
|
@@ -1406,12 +1404,18 @@ declare enum TooltipType {
|
|
|
1406
1404
|
}
|
|
1407
1405
|
type LayerType = 'vector' | 'raster' | 'group';
|
|
1408
1406
|
|
|
1409
|
-
|
|
1410
|
-
|
|
1407
|
+
interface ILayerGroup {
|
|
1408
|
+
id: LayerId;
|
|
1409
|
+
map: MapBase;
|
|
1410
|
+
displayed$: Observable<boolean>;
|
|
1411
|
+
addChild(layer: LayerBase<ILayerGroup>): void;
|
|
1412
|
+
removeChild(layer: LayerBase<ILayerGroup>): void;
|
|
1413
|
+
}
|
|
1414
|
+
type AnyLayerBase = LayerBase<ILayerGroup> | LayerGroupBase<ILayerGroup>;
|
|
1415
|
+
declare abstract class LayerBase<G extends ILayerGroup = ILayerGroup> {
|
|
1411
1416
|
options: LayerOptions;
|
|
1412
1417
|
abstract type: LayerType;
|
|
1413
1418
|
abstract ol: BaseLayer;
|
|
1414
|
-
abstract parent: LayerGroupBase;
|
|
1415
1419
|
protected abstract createOlLayer(): BaseLayer;
|
|
1416
1420
|
collapsed: boolean;
|
|
1417
1421
|
firstLoadComponent: boolean;
|
|
@@ -1447,34 +1451,37 @@ declare abstract class LayerBase {
|
|
|
1447
1451
|
set visible(value: boolean);
|
|
1448
1452
|
get visible(): boolean;
|
|
1449
1453
|
private _visible$;
|
|
1450
|
-
readonly visible$:
|
|
1454
|
+
readonly visible$: Observable<boolean>;
|
|
1455
|
+
get parent(): G;
|
|
1456
|
+
set parent(parent: G);
|
|
1457
|
+
readonly parent$: BehaviorSubject<G>;
|
|
1451
1458
|
get displayed(): boolean;
|
|
1452
1459
|
set displayed(value: boolean);
|
|
1453
1460
|
private _displayed$;
|
|
1454
|
-
displayed$:
|
|
1461
|
+
displayed$: Observable<boolean>;
|
|
1455
1462
|
private displayed$$;
|
|
1456
1463
|
get showInLayerList(): boolean;
|
|
1457
1464
|
get saveableOptions(): Partial<LayerOptions>;
|
|
1458
1465
|
constructor(options: LayerOptions);
|
|
1459
1466
|
afterCreated(): void;
|
|
1460
1467
|
init(map: MapBase): void;
|
|
1461
|
-
add(parent?:
|
|
1468
|
+
add(parent?: G): void;
|
|
1462
1469
|
private _add;
|
|
1463
|
-
addParent(parent?:
|
|
1470
|
+
addParent(parent?: G): void;
|
|
1464
1471
|
remove(): void;
|
|
1465
1472
|
private _remove;
|
|
1466
|
-
reset(parent?:
|
|
1467
|
-
moveTo(parent?:
|
|
1473
|
+
reset(parent?: G): void;
|
|
1474
|
+
moveTo(parent?: G): void;
|
|
1468
1475
|
clone(): LayerBase;
|
|
1469
1476
|
private initDisplayed$$;
|
|
1470
1477
|
}
|
|
1471
|
-
declare abstract class LayerGroupBase extends LayerBase {
|
|
1478
|
+
declare abstract class LayerGroupBase<G extends ILayerGroup = ILayerGroup> extends LayerBase<G> implements ILayerGroup {
|
|
1472
1479
|
type: LayerType;
|
|
1473
|
-
children: LayerBase[];
|
|
1474
|
-
abstract get descendants(): LayerBase[];
|
|
1475
|
-
abstract addChild(layer: LayerBase): void;
|
|
1476
|
-
abstract removeChild(layer: LayerBase): void;
|
|
1477
|
-
abstract isDescendant(layer: LayerBase): boolean;
|
|
1480
|
+
children: LayerBase<G>[];
|
|
1481
|
+
abstract get descendants(): LayerBase<G>[];
|
|
1482
|
+
abstract addChild(layer: LayerBase<G>): void;
|
|
1483
|
+
abstract removeChild(layer: LayerBase<G>): void;
|
|
1484
|
+
abstract isDescendant(layer: LayerBase<G>): boolean;
|
|
1478
1485
|
}
|
|
1479
1486
|
|
|
1480
1487
|
interface ImageLayerOptions extends LayerOptions {
|
|
@@ -1644,8 +1651,9 @@ interface VectorLayerOptions extends LayerOptions {
|
|
|
1644
1651
|
interface IdbInfo {
|
|
1645
1652
|
storeToIdb: boolean;
|
|
1646
1653
|
contextUri?: string;
|
|
1647
|
-
/**
|
|
1648
|
-
|
|
1654
|
+
/** Interfaces restricted for system usage*/
|
|
1655
|
+
_firstLoad?: boolean;
|
|
1656
|
+
_deleteFromIdb?: boolean;
|
|
1649
1657
|
}
|
|
1650
1658
|
interface VectorAnimation {
|
|
1651
1659
|
duration?: number;
|
|
@@ -1692,10 +1700,9 @@ interface LayerGroupOptions extends Omit<LayerOptionsBase, 'title'> {
|
|
|
1692
1700
|
}
|
|
1693
1701
|
|
|
1694
1702
|
declare const ID_GROUP_PREFIX = "local-group_";
|
|
1695
|
-
declare class LayerGroup extends LayerGroupBase {
|
|
1703
|
+
declare class LayerGroup extends LayerGroupBase<LayerGroup> {
|
|
1696
1704
|
children: AnyLayer[] | null;
|
|
1697
1705
|
options: LayerGroupOptions;
|
|
1698
|
-
parent: LayerGroup;
|
|
1699
1706
|
ol: Group;
|
|
1700
1707
|
expanded: boolean;
|
|
1701
1708
|
private isInResolutionsRange$$;
|
|
@@ -1705,7 +1712,7 @@ declare class LayerGroup extends LayerGroupBase {
|
|
|
1705
1712
|
get descendantsLevel(): number;
|
|
1706
1713
|
constructor(children: AnyLayer[] | null, options: LayerGroupOptions);
|
|
1707
1714
|
init(map: MapBase): void;
|
|
1708
|
-
add(parent?:
|
|
1715
|
+
add(parent?: LayerGroup): void;
|
|
1709
1716
|
addChild(...layers: AnyLayer[]): void;
|
|
1710
1717
|
remove(): void;
|
|
1711
1718
|
removeChild(layer: AnyLayer): void;
|
|
@@ -1877,7 +1884,6 @@ declare class LayerController extends LayerSelectionModel {
|
|
|
1877
1884
|
private findLowestVisiblePostion;
|
|
1878
1885
|
private handleMove;
|
|
1879
1886
|
private _internalMove;
|
|
1880
|
-
private getBefore;
|
|
1881
1887
|
/** Recursive */
|
|
1882
1888
|
private recalculateZindex;
|
|
1883
1889
|
private handleAdd;
|
|
@@ -1890,17 +1896,15 @@ declare class LayerController extends LayerSelectionModel {
|
|
|
1890
1896
|
private isOtherLayer;
|
|
1891
1897
|
private clearBaselayers;
|
|
1892
1898
|
private clearTree;
|
|
1893
|
-
private clearSystems;
|
|
1894
1899
|
private clearOther;
|
|
1895
1900
|
private getZindexOffset;
|
|
1896
1901
|
private setZindex;
|
|
1897
|
-
private handleBaselayerZIndex;
|
|
1898
1902
|
private notify;
|
|
1899
1903
|
}
|
|
1900
1904
|
|
|
1901
1905
|
declare class Linked {
|
|
1902
1906
|
layer: Layer;
|
|
1903
|
-
|
|
1907
|
+
readonly children: Layer[];
|
|
1904
1908
|
private watcher;
|
|
1905
1909
|
private bidirectionnalChildren;
|
|
1906
1910
|
private childrenByProperty;
|
|
@@ -1917,6 +1921,7 @@ declare class Linked {
|
|
|
1917
1921
|
remove(layer: Layer): void;
|
|
1918
1922
|
deleteChildren(controller: LayerController): void;
|
|
1919
1923
|
move(layer: Layer, parent?: LayerGroup): void;
|
|
1924
|
+
display(): void;
|
|
1920
1925
|
private disable;
|
|
1921
1926
|
private enable;
|
|
1922
1927
|
private getByProperty;
|
|
@@ -2530,14 +2535,9 @@ declare function findLayerByLinkId(layers: Layer[], id: LayerId): Layer;
|
|
|
2530
2535
|
declare function getLayersByDeletion(layers: Layer[], links: LayersLinkProperties[]): Layer[];
|
|
2531
2536
|
declare function handleLayerPropertyChange(layers: AnyLayer[], change: LayerWatcherChange, viewController: MapViewController): void;
|
|
2532
2537
|
|
|
2533
|
-
|
|
2534
|
-
Arraybuffer = "arraybuffer",
|
|
2535
|
-
Blob = "blob",
|
|
2536
|
-
Text = "text",
|
|
2537
|
-
Json = "json"
|
|
2538
|
-
}
|
|
2538
|
+
type ResponseType = 'arraybuffer' | 'json' | 'text' | 'xml' | 'blob';
|
|
2539
2539
|
interface SimpleGetOptions {
|
|
2540
|
-
responseType:
|
|
2540
|
+
responseType: ResponseType;
|
|
2541
2541
|
withCredentials?: boolean;
|
|
2542
2542
|
}
|
|
2543
2543
|
declare class GeoNetworkService {
|
|
@@ -2923,6 +2923,7 @@ declare class RotationButtonComponent implements AfterContentInit {
|
|
|
2923
2923
|
* Tool to swipe the layers
|
|
2924
2924
|
*/
|
|
2925
2925
|
declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
|
|
2926
|
+
private destroyRef;
|
|
2926
2927
|
/**
|
|
2927
2928
|
* Get an active map
|
|
2928
2929
|
*/
|
|
@@ -2943,14 +2944,11 @@ declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
|
|
|
2943
2944
|
* State of draggable action
|
|
2944
2945
|
*/
|
|
2945
2946
|
private inDragAction;
|
|
2946
|
-
/**
|
|
2947
|
-
* Listener of toggle from advanced-map-tool
|
|
2948
|
-
*/
|
|
2949
|
-
private swipeEnabled$$;
|
|
2950
2947
|
/**
|
|
2951
2948
|
* Binder of prerender on the same element
|
|
2952
2949
|
*/
|
|
2953
2950
|
private boundPrerender;
|
|
2951
|
+
activated: i0.WritableSignal<boolean>;
|
|
2954
2952
|
/**
|
|
2955
2953
|
* Get the list of layers for swipe and activate of deactivate the swipe
|
|
2956
2954
|
* @internal
|
|
@@ -3005,10 +3003,6 @@ declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
|
|
|
3005
3003
|
* Save a current state of the context
|
|
3006
3004
|
*/
|
|
3007
3005
|
postrender(event: any): void;
|
|
3008
|
-
/**
|
|
3009
|
-
* Zoom on div
|
|
3010
|
-
*/
|
|
3011
|
-
private letZoom;
|
|
3012
3006
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwipeControlComponent, never>;
|
|
3013
3007
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwipeControlComponent, "igo-swipe-control", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3014
3008
|
}
|
|
@@ -4407,6 +4401,7 @@ interface ISearchSourceParams {
|
|
|
4407
4401
|
ecmax?: string;
|
|
4408
4402
|
page?: string;
|
|
4409
4403
|
type?: string;
|
|
4404
|
+
source?: string;
|
|
4410
4405
|
}
|
|
4411
4406
|
interface SettingOptions {
|
|
4412
4407
|
value: string | number;
|
|
@@ -4565,10 +4560,10 @@ declare class FeatureDetailsComponent implements OnInit, OnDestroy {
|
|
|
4565
4560
|
htmlSanitizer(value: any): SafeResourceUrl;
|
|
4566
4561
|
isObject(value: any): boolean;
|
|
4567
4562
|
openSecureUrl(value: any): void;
|
|
4568
|
-
isUrl(value:
|
|
4569
|
-
isDoc(value:
|
|
4570
|
-
isImg(value:
|
|
4571
|
-
|
|
4563
|
+
isUrl(value: unknown): boolean;
|
|
4564
|
+
isDoc(value: unknown): boolean;
|
|
4565
|
+
isImg(value: unknown): boolean;
|
|
4566
|
+
hasEmbeddedLinks(value: unknown): boolean;
|
|
4572
4567
|
getEmbeddedLinkText(value: any): string;
|
|
4573
4568
|
filterFeatureProperties(feature: any): Record<string, any>;
|
|
4574
4569
|
/**
|
|
@@ -5956,6 +5951,9 @@ declare class WFSDataSource extends DataSource {
|
|
|
5956
5951
|
private _parseXmlFeatures;
|
|
5957
5952
|
}
|
|
5958
5953
|
|
|
5954
|
+
type AnyDataSourceOptions = DataSourceOptions | OSMDataSourceOptions | FeatureDataSourceOptions | WFSDataSourceOptions | XYZDataSourceOptions | TileDebugDataSourceOptions | WMTSDataSourceOptions | WMSDataSourceOptions | CartoDataSourceOptions | ArcGISRestDataSourceOptions | ArcGISRestImageDataSourceOptions | TileArcGISRestDataSourceOptions | MVTDataSourceOptions | ClusterDataSourceOptions;
|
|
5955
|
+
type AnyDataSourceOptionsWithParams = FeatureDataSourceOptions | WFSDataSourceOptions | WMSDataSourceOptions | CartoDataSourceOptions | ArcGISRestDataSourceOptions | ArcGISRestImageDataSourceOptions | TileArcGISRestDataSourceOptions;
|
|
5956
|
+
|
|
5959
5957
|
declare const defaultEpsg = "EPSG:3857";
|
|
5960
5958
|
declare const defaultMaxFeatures = 5000;
|
|
5961
5959
|
declare const defaultWfsVersion = "2.0.0";
|
|
@@ -5994,18 +5992,15 @@ declare function formatWFSQueryString(dataSourceOptions: WFSDataSourceOptions |
|
|
|
5994
5992
|
declare function checkWfsParams(wfsDataSourceOptions: any, srcType?: string): any;
|
|
5995
5993
|
declare function getFormatFromOptions(options: WFSDataSourceOptions | WMSDataSourceOptions): any;
|
|
5996
5994
|
declare function getSaveableOgcParams(options: OgcFiltersOptions): IOgcFiltersOptionSaveable;
|
|
5995
|
+
declare function getFilterBadge(dataSourceOptions: AnyDataSourceOptions): number | undefined;
|
|
5997
5996
|
|
|
5998
5997
|
type AnyDataSource = DataSource | OSMDataSource | FeatureDataSource | WFSDataSource | XYZDataSource | TileDebugDataSource | WMTSDataSource | WMSDataSource | CartoDataSource | ArcGISRestDataSource | ImageArcGISRestDataSource | TileArcGISRestDataSource | WebSocketDataSource | MVTDataSource | ClusterDataSource;
|
|
5999
5998
|
|
|
6000
|
-
|
|
6001
|
-
type AnyDataSourceOptionsWithParams = FeatureDataSourceOptions | WFSDataSourceOptions | WMSDataSourceOptions | CartoDataSourceOptions | ArcGISRestDataSourceOptions | ArcGISRestImageDataSourceOptions | TileArcGISRestDataSourceOptions;
|
|
6002
|
-
|
|
6003
|
-
declare abstract class Layer extends LayerBase {
|
|
5999
|
+
declare abstract class Layer extends LayerBase<LayerGroup> {
|
|
6004
6000
|
options: LayerOptions;
|
|
6005
6001
|
protected messageService?: MessageService;
|
|
6006
6002
|
protected authInterceptor?: AuthInterceptor;
|
|
6007
6003
|
dataSource: DataSource;
|
|
6008
|
-
parent: LayerGroup;
|
|
6009
6004
|
ol: OlLayer<Source>;
|
|
6010
6005
|
hasBeenVisible$: BehaviorSubject<boolean>;
|
|
6011
6006
|
legend: Legend[];
|
|
@@ -6025,7 +6020,7 @@ declare abstract class Layer extends LayerBase {
|
|
|
6025
6020
|
init(map: MapBase): void;
|
|
6026
6021
|
createLink(): void;
|
|
6027
6022
|
remove(): void;
|
|
6028
|
-
add(parent?:
|
|
6023
|
+
add(parent?: LayerGroup): void;
|
|
6029
6024
|
moveTo(parent?: LayerGroup): void;
|
|
6030
6025
|
private createLinkWithParent;
|
|
6031
6026
|
private findParentByLinkId;
|
|
@@ -6205,14 +6200,11 @@ declare class LayerLegendListComponent {
|
|
|
6205
6200
|
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>;
|
|
6206
6201
|
}
|
|
6207
6202
|
|
|
6208
|
-
declare class LayerLegendListBindingDirective implements OnInit
|
|
6209
|
-
private mapService;
|
|
6210
|
-
private component;
|
|
6211
|
-
private
|
|
6212
|
-
layersVisibility$$: Subscription;
|
|
6213
|
-
constructor();
|
|
6203
|
+
declare class LayerLegendListBindingDirective implements OnInit {
|
|
6204
|
+
private readonly mapService;
|
|
6205
|
+
private readonly component;
|
|
6206
|
+
private readonly destroyRef;
|
|
6214
6207
|
ngOnInit(): void;
|
|
6215
|
-
ngOnDestroy(): void;
|
|
6216
6208
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerLegendListBindingDirective, never>;
|
|
6217
6209
|
static ɵdir: i0.ɵɵDirectiveDeclaration<LayerLegendListBindingDirective, "[igoLayerLegendListBinding]", never, {}, {}, never, never, true, never>;
|
|
6218
6210
|
}
|
|
@@ -6314,11 +6306,10 @@ declare class LayerListToolService {
|
|
|
6314
6306
|
static ɵprov: i0.ɵɵInjectableDeclaration<LayerListToolService>;
|
|
6315
6307
|
}
|
|
6316
6308
|
|
|
6317
|
-
|
|
6318
|
-
declare class LayerListComponent {
|
|
6309
|
+
declare class LayerListComponent implements AfterViewInit {
|
|
6319
6310
|
private messageService;
|
|
6320
6311
|
toggleOpacity: boolean;
|
|
6321
|
-
|
|
6312
|
+
expansionKey: (node: AnyLayer) => string;
|
|
6322
6313
|
readonly controller: i0.InputSignal<LayerController>;
|
|
6323
6314
|
readonly layers: i0.InputSignal<AnyLayer[]>;
|
|
6324
6315
|
readonly isDesktop: i0.InputSignal<boolean>;
|
|
@@ -6326,29 +6317,25 @@ declare class LayerListComponent {
|
|
|
6326
6317
|
readonly selectAll: i0.InputSignal<boolean>;
|
|
6327
6318
|
readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
|
|
6328
6319
|
readonly activeChange: i0.OutputEmitterRef<AnyLayer>;
|
|
6329
|
-
|
|
6330
|
-
|
|
6331
|
-
|
|
6332
|
-
|
|
6333
|
-
constructor();
|
|
6334
|
-
isGroup: (_: number, node: LayerFlatNode) => boolean;
|
|
6320
|
+
readonly tree: i0.Signal<MatTree<AnyLayer, string>>;
|
|
6321
|
+
childrenAccessor: (layer: AnyLayer) => AnyLayer[];
|
|
6322
|
+
treeConfig: ITreeConfig<AnyLayer>;
|
|
6323
|
+
isNodeGroup: (_: number, node: AnyLayer) => node is LayerGroup;
|
|
6335
6324
|
isLayerGroup: typeof isLayerGroup;
|
|
6336
6325
|
isLayerItem: typeof isLayerItem;
|
|
6337
6326
|
isSelected: (layer: AnyLayer) => boolean;
|
|
6338
6327
|
isDescendantSelection: (layer: AnyLayer) => boolean;
|
|
6328
|
+
ngAfterViewInit(): void;
|
|
6339
6329
|
toggleActive(layer: AnyLayer): void;
|
|
6340
6330
|
handleSelect(checked: boolean, layer: AnyLayer): void;
|
|
6341
6331
|
getLayerType(layer: Layer): LayerType | 'measure' | 'draw';
|
|
6342
6332
|
getLayerIcon(layer: Layer): string | IconSvg;
|
|
6343
|
-
|
|
6333
|
+
trackByFn(_index: number, node: AnyLayer): string;
|
|
6334
|
+
dropNode(event: TreeDropEvent<AnyLayer>): void;
|
|
6344
6335
|
dropNodeError(details: DropPermission): void;
|
|
6345
6336
|
dragStart(): void;
|
|
6346
|
-
handleNodeToggle(node:
|
|
6347
|
-
private findNodeByLayerId;
|
|
6348
|
-
private updateDatasource;
|
|
6349
|
-
/** Recursive */
|
|
6337
|
+
handleNodeToggle(node: AnyLayer): void;
|
|
6350
6338
|
private expandGroup;
|
|
6351
|
-
private restoreModel;
|
|
6352
6339
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerListComponent, never>;
|
|
6353
6340
|
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>;
|
|
6354
6341
|
}
|
|
@@ -6401,6 +6388,7 @@ declare class LayerViewerBottomActionsComponent {
|
|
|
6401
6388
|
get isSelectionLowerable(): boolean;
|
|
6402
6389
|
get canRename(): boolean;
|
|
6403
6390
|
isLayerItem: typeof isLayerItem;
|
|
6391
|
+
isLayerGroup: typeof isLayerGroup;
|
|
6404
6392
|
handleRename(): void;
|
|
6405
6393
|
isLayersRemovable(layers: AnyLayer[]): boolean;
|
|
6406
6394
|
removeLayers(): void;
|
|
@@ -6409,7 +6397,7 @@ declare class LayerViewerBottomActionsComponent {
|
|
|
6409
6397
|
raiseSelection(): void;
|
|
6410
6398
|
lowerSelection(): void;
|
|
6411
6399
|
changeOpacity(event: MatSliderChange): void;
|
|
6412
|
-
toggleSelectionVisibility(): void;
|
|
6400
|
+
toggleSelectionVisibility(layers?: AnyLayer[], visibility?: boolean): void;
|
|
6413
6401
|
private isLowerable;
|
|
6414
6402
|
private isRaisable;
|
|
6415
6403
|
private getRecipientOfVisibleLayer;
|
|
@@ -6460,20 +6448,26 @@ declare class LayerViewerComponent implements OnInit {
|
|
|
6460
6448
|
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>;
|
|
6461
6449
|
}
|
|
6462
6450
|
|
|
6463
|
-
declare class LayerVisibilityButtonComponent
|
|
6464
|
-
private
|
|
6465
|
-
|
|
6466
|
-
|
|
6467
|
-
|
|
6451
|
+
declare class LayerVisibilityButtonComponent {
|
|
6452
|
+
private iconRegistry;
|
|
6453
|
+
private sanitizer;
|
|
6454
|
+
private languageService;
|
|
6455
|
+
eyeClosedByGroupSvg: IconSvg;
|
|
6468
6456
|
readonly layer: i0.InputSignal<AnyLayer>;
|
|
6469
6457
|
readonly tooltip: i0.InputSignal<string>;
|
|
6470
6458
|
readonly disabled: i0.InputSignal<boolean>;
|
|
6471
6459
|
readonly showQueryBadge: i0.InputSignal<boolean>;
|
|
6472
6460
|
readonly inResolutionsRange: i0.InputSignal<boolean>;
|
|
6473
|
-
|
|
6461
|
+
readonly parentDisplayed: i0.Signal<boolean>;
|
|
6462
|
+
readonly visible: i0.Signal<boolean>;
|
|
6463
|
+
readonly badge: i0.Signal<number>;
|
|
6464
|
+
defaultTooltipText: i0.Signal<any>;
|
|
6465
|
+
readonly tooltipText: i0.Signal<any>;
|
|
6474
6466
|
readonly visibilityChange: i0.OutputEmitterRef<Event>;
|
|
6475
|
-
|
|
6467
|
+
constructor();
|
|
6476
6468
|
toggle(event: Event): void;
|
|
6469
|
+
private getBadge;
|
|
6470
|
+
private getDefaultTooltip;
|
|
6477
6471
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerVisibilityButtonComponent, never>;
|
|
6478
6472
|
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>;
|
|
6479
6473
|
}
|
|
@@ -6508,6 +6502,19 @@ declare class IgoDownloadModule {
|
|
|
6508
6502
|
static ɵinj: i0.ɵɵInjectorDeclaration<IgoDownloadModule>;
|
|
6509
6503
|
}
|
|
6510
6504
|
|
|
6505
|
+
declare class EpsgSelectorModalComponent {
|
|
6506
|
+
dialogRef: MatDialogRef<EpsgSelectorModalComponent, any>;
|
|
6507
|
+
data: {
|
|
6508
|
+
fileName: string;
|
|
6509
|
+
projections: InputProjections[];
|
|
6510
|
+
};
|
|
6511
|
+
selectedEpsg?: string;
|
|
6512
|
+
cancel(): void;
|
|
6513
|
+
confirm(): void;
|
|
6514
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EpsgSelectorModalComponent, never>;
|
|
6515
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EpsgSelectorModalComponent, "igo-epsg-selector-modal", never, {}, {}, never, never, true, never>;
|
|
6516
|
+
}
|
|
6517
|
+
|
|
6511
6518
|
declare class ExportButtonComponent {
|
|
6512
6519
|
readonly layer: i0.InputSignal<Layer>;
|
|
6513
6520
|
readonly color: i0.InputSignal<string>;
|
|
@@ -6586,7 +6593,6 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
|
|
|
6586
6593
|
private clientSideFileSizeMax;
|
|
6587
6594
|
fileSizeMb: number;
|
|
6588
6595
|
projections$: BehaviorSubject<InputProjections[]>;
|
|
6589
|
-
private projectionsConstraints;
|
|
6590
6596
|
popupChecked: boolean;
|
|
6591
6597
|
private configFormats;
|
|
6592
6598
|
private previousLayerSpecs$;
|
|
@@ -6610,7 +6616,6 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
|
|
|
6610
6616
|
set popupAllowed(value: boolean);
|
|
6611
6617
|
constructor();
|
|
6612
6618
|
ngOnInit(): void;
|
|
6613
|
-
private computeProjections;
|
|
6614
6619
|
getLayerTitleById(id: any): string;
|
|
6615
6620
|
layerHasSelectedFeatures(layer: Layer): boolean;
|
|
6616
6621
|
onlySelected(event: MatSlideToggleChange, id: LayerId): void;
|
|
@@ -6656,10 +6661,12 @@ declare class DropGeoFileDirective extends DragAndDropDirective implements OnIni
|
|
|
6656
6661
|
private messageService;
|
|
6657
6662
|
private layerService;
|
|
6658
6663
|
private confirmDialogService;
|
|
6664
|
+
private dialog;
|
|
6659
6665
|
private epsgCode$$;
|
|
6660
6666
|
private filesDropped$$;
|
|
6661
6667
|
get map(): IgoMap;
|
|
6662
6668
|
readonly contextUri: i0.InputSignal<string>;
|
|
6669
|
+
readonly projectionsLimitations: i0.InputSignal<ProjectionsLimitationsOptions>;
|
|
6663
6670
|
ngOnInit(): void;
|
|
6664
6671
|
ngOnDestroy(): void;
|
|
6665
6672
|
onDragOver(evt: any): void;
|
|
@@ -6668,18 +6675,19 @@ declare class DropGeoFileDirective extends DragAndDropDirective implements OnIni
|
|
|
6668
6675
|
private onFilesDropped;
|
|
6669
6676
|
private onFileImportSuccess;
|
|
6670
6677
|
private onFileImportError;
|
|
6678
|
+
private openEPSGModal;
|
|
6671
6679
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropGeoFileDirective, never>;
|
|
6672
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropGeoFileDirective, "[igoDropGeoFile]", never, { "contextUri": { "alias": "contextUri"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6680
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropGeoFileDirective, "[igoDropGeoFile]", never, { "contextUri": { "alias": "contextUri"; "required": false; "isSignal": true; }; "projectionsLimitations": { "alias": "projectionsLimitations"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6673
6681
|
}
|
|
6674
6682
|
|
|
6675
|
-
declare const IMPORT_EXPORT_DIRECTIVES: readonly [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent];
|
|
6683
|
+
declare const IMPORT_EXPORT_DIRECTIVES: readonly [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent, typeof EpsgSelectorModalComponent];
|
|
6676
6684
|
/**
|
|
6677
6685
|
* @deprecated import the components directly or IMPORT_EXPORT_DIRECTIVES for the set
|
|
6678
6686
|
*/
|
|
6679
6687
|
declare class IgoImportExportModule {
|
|
6680
6688
|
static forRoot(): ModuleWithProviders<IgoImportExportModule>;
|
|
6681
6689
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgoImportExportModule, never>;
|
|
6682
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoImportExportModule, never, [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent], [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent]>;
|
|
6690
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoImportExportModule, never, [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent, typeof EpsgSelectorModalComponent], [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent, typeof EpsgSelectorModalComponent]>;
|
|
6683
6691
|
static ɵinj: i0.ɵɵInjectorDeclaration<IgoImportExportModule>;
|
|
6684
6692
|
}
|
|
6685
6693
|
|
|
@@ -8692,11 +8700,8 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8692
8700
|
private directionsSourceService;
|
|
8693
8701
|
private searchService;
|
|
8694
8702
|
private queryService;
|
|
8695
|
-
private messageService;
|
|
8696
8703
|
projection: string;
|
|
8697
|
-
hasOsrmPrivateAccess: boolean;
|
|
8698
8704
|
twoSourcesAvailable: boolean;
|
|
8699
|
-
private zoomOnActiveRoute$$;
|
|
8700
8705
|
private storeEmpty$$;
|
|
8701
8706
|
private storeChange$$;
|
|
8702
8707
|
private routesQueries$$;
|
|
@@ -8707,7 +8712,6 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8707
8712
|
private isTranslating;
|
|
8708
8713
|
previousStops: Stop[];
|
|
8709
8714
|
private searchs$$;
|
|
8710
|
-
private authenticated$$;
|
|
8711
8715
|
readonly contextUri: i0.InputSignal<string>;
|
|
8712
8716
|
readonly stopsStore: i0.InputSignal<StopsStore>;
|
|
8713
8717
|
readonly stopsFeatureStore: i0.InputSignal<StopsFeatureStore>;
|
|
@@ -8716,7 +8720,7 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8716
8720
|
readonly debounce: i0.InputSignal<number>;
|
|
8717
8721
|
readonly length: i0.InputSignal<number>;
|
|
8718
8722
|
readonly coordRoundedDecimals: i0.InputSignal<number>;
|
|
8719
|
-
readonly
|
|
8723
|
+
readonly zoomToActiveRoute: i0.InputSignal<boolean>;
|
|
8720
8724
|
readonly authenticated$: i0.InputSignal<BehaviorSubject<boolean>>;
|
|
8721
8725
|
/**
|
|
8722
8726
|
* Wheter one of the direction control is active
|
|
@@ -8730,7 +8734,7 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8730
8734
|
ngOnDestroy(): void;
|
|
8731
8735
|
private freezeStores;
|
|
8732
8736
|
private initEntityStores;
|
|
8733
|
-
|
|
8737
|
+
zoomOnActiveRoute(): void;
|
|
8734
8738
|
private initOlInteraction;
|
|
8735
8739
|
onStopInputHasFocusChange(stopInputHasFocus: boolean): void;
|
|
8736
8740
|
private executeStopTranslation;
|
|
@@ -8742,9 +8746,8 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8742
8746
|
private getRoutes;
|
|
8743
8747
|
addStopOverlay(stop: Stop): void;
|
|
8744
8748
|
onToggleDirectionsControl(isActive: boolean): void;
|
|
8745
|
-
onTogglePrivateModeControl(isActive: boolean): void;
|
|
8746
8749
|
static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsComponent, never>;
|
|
8747
|
-
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; }; "
|
|
8750
|
+
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; }; "zoomToActiveRoute": { "alias": "zoomToActiveRoute"; "required": true; "isSignal": true; }; "authenticated$": { "alias": "authenticated$"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8748
8751
|
}
|
|
8749
8752
|
|
|
8750
8753
|
declare class DirectionsInputsComponent implements OnDestroy {
|
|
@@ -8893,10 +8896,10 @@ declare class DirectionsButtonsComponent {
|
|
|
8893
8896
|
private routeService;
|
|
8894
8897
|
private directionsService;
|
|
8895
8898
|
readonly contextUri: i0.InputSignal<string>;
|
|
8896
|
-
readonly zoomOnActiveRoute: i0.ModelSignal<boolean>;
|
|
8897
8899
|
readonly stopsStore: i0.InputSignal<StopsStore>;
|
|
8898
8900
|
readonly routesFeatureStore: i0.InputSignal<RoutesFeatureStore>;
|
|
8899
8901
|
readonly stepsFeatureStore: i0.InputSignal<StepsFeatureStore>;
|
|
8902
|
+
readonly zoomOnActiveRoute: i0.OutputEmitterRef<void>;
|
|
8900
8903
|
downloadDirectionsBtnDisabled: boolean;
|
|
8901
8904
|
/**
|
|
8902
8905
|
* Returns the active route from the routesFeatureStore.
|
|
@@ -8909,11 +8912,6 @@ declare class DirectionsButtonsComponent {
|
|
|
8909
8912
|
*
|
|
8910
8913
|
*/
|
|
8911
8914
|
resetStops(): void;
|
|
8912
|
-
/**
|
|
8913
|
-
* Triggers the zoom on the active route.
|
|
8914
|
-
*
|
|
8915
|
-
*/
|
|
8916
|
-
setZoomOnActiveRoute(): void;
|
|
8917
8915
|
/**
|
|
8918
8916
|
* Copies the directions to the clipboard and displays a success message if the copy is successful.
|
|
8919
8917
|
*
|
|
@@ -8950,7 +8948,7 @@ declare class DirectionsButtonsComponent {
|
|
|
8950
8948
|
*/
|
|
8951
8949
|
private getLink;
|
|
8952
8950
|
static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsButtonsComponent, never>;
|
|
8953
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsButtonsComponent, "igo-directions-buttons", never, { "contextUri": { "alias": "contextUri"; "required": true; "isSignal": true; }; "
|
|
8951
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsButtonsComponent, "igo-directions-buttons", never, { "contextUri": { "alias": "contextUri"; "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": "zoomOnActiveRoute"; }, never, never, true, never>;
|
|
8954
8952
|
}
|
|
8955
8953
|
|
|
8956
8954
|
declare class DirectionsResultsComponent implements OnInit, OnDestroy {
|
|
@@ -9098,7 +9096,7 @@ declare class WorkspaceSelectorDirective implements OnInit, OnDestroy {
|
|
|
9098
9096
|
readonly map: i0.InputSignal<IgoMap>;
|
|
9099
9097
|
readonly changeWorkspace: i0.OutputEmitterRef<string>;
|
|
9100
9098
|
readonly disableSwitch: i0.OutputEmitterRef<boolean>;
|
|
9101
|
-
readonly relationLayers: i0.OutputEmitterRef<
|
|
9099
|
+
readonly relationLayers: i0.OutputEmitterRef<VectorLayer[] | ImageLayer[]>;
|
|
9102
9100
|
readonly rowsInMapExtentCheckCondition: i0.OutputEmitterRef<boolean>;
|
|
9103
9101
|
get workspaceStore(): WorkspaceStore;
|
|
9104
9102
|
ngOnInit(): void;
|
|
@@ -9399,6 +9397,7 @@ declare class CatalogBrowserComponent implements OnInit, OnDestroy {
|
|
|
9399
9397
|
* Whether a group can be toggled when it's collapsed
|
|
9400
9398
|
*/
|
|
9401
9399
|
readonly toggleCollapsedGroup: i0.InputSignal<boolean>;
|
|
9400
|
+
private isAddingLayers;
|
|
9402
9401
|
/**
|
|
9403
9402
|
* @internal
|
|
9404
9403
|
*/
|
|
@@ -9444,6 +9443,7 @@ declare class CatalogBrowserComponent implements OnInit, OnDestroy {
|
|
|
9444
9443
|
* @param layers Catalog layers
|
|
9445
9444
|
*/
|
|
9446
9445
|
private removeLayersFromMap;
|
|
9446
|
+
private _removeLayersFromMap;
|
|
9447
9447
|
/**
|
|
9448
9448
|
* Sort the layers by title. asc or desc.
|
|
9449
9449
|
* @internal
|
|
@@ -9482,6 +9482,7 @@ declare class AddCatalogDialogComponent implements OnInit, OnDestroy {
|
|
|
9482
9482
|
store: EntityStore<Catalog>;
|
|
9483
9483
|
error: boolean;
|
|
9484
9484
|
addedCatalog: Catalog;
|
|
9485
|
+
isPredefinedCatalog: boolean;
|
|
9485
9486
|
};
|
|
9486
9487
|
predefinedForm$: BehaviorSubject<Form>;
|
|
9487
9488
|
customForm$: BehaviorSubject<Form>;
|
|
@@ -9551,7 +9552,7 @@ declare class CatalogLibraryComponent implements OnInit, OnDestroy {
|
|
|
9551
9552
|
ngOnDestroy(): void;
|
|
9552
9553
|
private handleAddCatalogToStore;
|
|
9553
9554
|
onCatalogRemove(catalog: any): void;
|
|
9554
|
-
addCatalogDialog(error?: any, addedCatalog?: Catalog): void;
|
|
9555
|
+
addCatalogDialog(error?: any, addedCatalog?: Catalog, isPredefinedCatalog?: boolean): void;
|
|
9555
9556
|
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogLibraryComponent, never>;
|
|
9556
9557
|
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>;
|
|
9557
9558
|
}
|
|
@@ -10453,7 +10454,7 @@ declare class DataSourceService {
|
|
|
10453
10454
|
private messageService;
|
|
10454
10455
|
private authInterceptor;
|
|
10455
10456
|
datasources$: BehaviorSubject<DataSource[]>;
|
|
10456
|
-
createAsyncDataSource(
|
|
10457
|
+
createAsyncDataSource(options: AnyDataSourceOptions, detailedContextUri?: string): Observable<DataSource>;
|
|
10457
10458
|
private createOSMDataSource;
|
|
10458
10459
|
private createFeatureDataSource;
|
|
10459
10460
|
private createWebSocketDataSource;
|
|
@@ -11059,6 +11060,7 @@ declare class ExportNothingToExportError extends ExportError {
|
|
|
11059
11060
|
declare class ExportService {
|
|
11060
11061
|
private config;
|
|
11061
11062
|
private httpClient;
|
|
11063
|
+
private tableDataService;
|
|
11062
11064
|
static ogreFormats: Record<ExportOgreFormat, string>;
|
|
11063
11065
|
static noOgreFallbacks: Partial<AnyExportFormat[]>;
|
|
11064
11066
|
private ogreUrl;
|
|
@@ -11070,7 +11072,9 @@ declare class ExportService {
|
|
|
11070
11072
|
private exportAsync;
|
|
11071
11073
|
protected exportToFile(olFeatures: OlFeature<OlGeometry>[], format: AnyExportFormat, title: string, projectionIn: string, projectionOut: string): Promise<void>;
|
|
11072
11074
|
private formatFeatures;
|
|
11073
|
-
getFormatter(format: AnyExportFormat): ol_format_GML3.default | olformat.GPX | olformat.KML | olformat.GeoJSON<OlFeature<OlGeometry
|
|
11075
|
+
getFormatter(format: AnyExportFormat): ol_format_GML3.default | olformat.GPX | olformat.KML | olformat.GeoJSON<OlFeature<OlGeometry, {
|
|
11076
|
+
[x: string]: any;
|
|
11077
|
+
}>>;
|
|
11074
11078
|
exportExcel(map: IgoMap, store: WorkspaceStore, data: ExportOptions): Promise<void>;
|
|
11075
11079
|
private getTitleFromLayers;
|
|
11076
11080
|
private getLayerTitleFromId;
|
|
@@ -11084,6 +11088,16 @@ declare class ExportService {
|
|
|
11084
11088
|
getFeatures(map: IgoMap, layer: Layer, data: ExportOptions, store: WorkspaceStore): Observable<OlFeature[]>;
|
|
11085
11089
|
getWorkspaceByLayerId(id: LayerId, store: WorkspaceStore): Workspace;
|
|
11086
11090
|
getGeomTypes(features: OlFeature[], format?: AnyExportFormat): GeometryCollection[];
|
|
11091
|
+
/**
|
|
11092
|
+
* Checks if the given payload exceeds the OGRE maximum allowed size (2MB).
|
|
11093
|
+
* @param payload The GeoJSON payload as a string.
|
|
11094
|
+
* @returns An Observable that throws an error if the payload is too large, or undefined if the size is acceptable.
|
|
11095
|
+
*/
|
|
11096
|
+
private checkOgrePayloadSize;
|
|
11097
|
+
/**
|
|
11098
|
+
* Transform features to an export-friendly format (titles and domain values).
|
|
11099
|
+
*/
|
|
11100
|
+
transformFeaturesToExportFormat(features: OlFeature<OlGeometry>[], layer: Layer): Promise<OlFeature<OlGeometry>[]>;
|
|
11087
11101
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExportService, never>;
|
|
11088
11102
|
static ɵprov: i0.ɵɵInjectableDeclaration<ExportService>;
|
|
11089
11103
|
}
|
|
@@ -11132,6 +11146,7 @@ declare class ImportService {
|
|
|
11132
11146
|
private importFileWithOgre;
|
|
11133
11147
|
private parseFeaturesFromFile;
|
|
11134
11148
|
private parseFeaturesFromGeoJSON;
|
|
11149
|
+
computeProjections(limitations: ProjectionsLimitationsOptions): InputProjections[];
|
|
11135
11150
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImportService, never>;
|
|
11136
11151
|
static ɵprov: i0.ɵɵInjectableDeclaration<ImportService>;
|
|
11137
11152
|
}
|
|
@@ -11284,11 +11299,6 @@ declare enum OverlayAction {
|
|
|
11284
11299
|
*/
|
|
11285
11300
|
declare function createOverlayLayer(): VectorLayer;
|
|
11286
11301
|
|
|
11287
|
-
declare global {
|
|
11288
|
-
interface Navigator {
|
|
11289
|
-
msSaveBlob?: (blob: any, defaultName?: string) => boolean;
|
|
11290
|
-
}
|
|
11291
|
-
}
|
|
11292
11302
|
declare class PrintService {
|
|
11293
11303
|
private http;
|
|
11294
11304
|
private config;
|
|
@@ -11616,7 +11626,9 @@ declare class OsmLinks {
|
|
|
11616
11626
|
}
|
|
11617
11627
|
|
|
11618
11628
|
declare class WktService {
|
|
11619
|
-
wktToFeature(wkt: any, wktProj: any, featureProj: any): ol.Feature<olGeom.Geometry
|
|
11629
|
+
wktToFeature(wkt: any, wktProj: any, featureProj: any): ol.Feature<olGeom.Geometry, {
|
|
11630
|
+
[x: string]: any;
|
|
11631
|
+
}>;
|
|
11620
11632
|
extentToWkt(epsgTO: any, extent: any, extentProj: any): {
|
|
11621
11633
|
wktPoly: string;
|
|
11622
11634
|
wktLine: string;
|
|
@@ -11772,11 +11784,13 @@ declare class EditionWorkspaceService {
|
|
|
11772
11784
|
authInterceptor?: AuthInterceptor;
|
|
11773
11785
|
ws$: BehaviorSubject<string>;
|
|
11774
11786
|
adding$: BehaviorSubject<boolean>;
|
|
11775
|
-
relationLayers$: BehaviorSubject<
|
|
11787
|
+
relationLayers$: BehaviorSubject<VectorLayer[] | ImageLayer[]>;
|
|
11776
11788
|
rowsInMapExtentCheckCondition$: BehaviorSubject<boolean>;
|
|
11777
11789
|
loading: boolean;
|
|
11778
11790
|
wktFormat: WKT;
|
|
11779
|
-
geoJsonFormat: GeoJSON<OlFeature<OlGeometry
|
|
11791
|
+
geoJsonFormat: GeoJSON<OlFeature<OlGeometry, {
|
|
11792
|
+
[x: string]: any;
|
|
11793
|
+
}>>;
|
|
11780
11794
|
get zoomAuto(): boolean;
|
|
11781
11795
|
createWorkspace(layer: ImageLayer, map: IgoMap): EditionWorkspace;
|
|
11782
11796
|
private createFeatureStore;
|
|
@@ -11881,5 +11895,5 @@ declare function provideInteractiveSelectionFormWidget(): {
|
|
|
11881
11895
|
deps: (typeof WidgetService)[];
|
|
11882
11896
|
};
|
|
11883
11897
|
|
|
11884
|
-
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 };
|
|
11885
|
-
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, LayerId, 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 };
|
|
11898
|
+
export { AddCatalogDialogComponent, ArcGISRestCapabilitiesLayerTypes, ArcGISRestDataSource, BaseLayersSwitcherComponent, CATALOG_DIRECTIVES, CATALOG_LIBRARY_DIRECTIVES, CadastreSearchSource, CapabilitiesService, CartoDataSource, Catalog, CatalogBrowserComponent, CatalogItemType, CatalogLibraryComponent, CatalogService, ClusterDataSource, ConfigFileToGeoDBService, ConfirmationPopupComponent, CoordinatesReverseSearchSource, CoordinatesReverseSearchSourceFactory, CoordinatesSearchResultFormatter, CoordinatesUnit, CsvSeparator, DDtoDMS, DataService, DataSource, DataSourceService, DirectionRelativePositionType, DirectionSourceKind, DirectionsButtonsComponent, DirectionsComponent, DirectionsFormat, DirectionsInputsComponent, DirectionsResultsComponent, DirectionsService, DirectionsSource, DirectionsType, DownloadButtonComponent, DownloadService, DrawComponent, DrawControl, DrawIconService, DrawStyleService, DropGeoFileDirective, EditionWorkspace, EditionWorkspaceService, EpsgSelectorModalComponent, EsriStyleGenerator, EventRefresh, ExportButtonComponent, ExportError, ExportFormat, ExportFormatLegacy, ExportInvalidFileError, ExportNothingToExportError, ExportService, FEATURE, FEATURE_DETAILS_DIRECTIVES, FEATURE_DIRECTIVES, FILTER_DIRECTIVES, FeatureDataSource, FeatureDetailsComponent, FeatureDetailsDirective, FeatureFormComponent, FeatureMotion, FeatureStore, FeatureStoreInMapExtentStrategy, FeatureStoreInMapResolutionStrategy, FeatureStoreLoadingLayerStrategy, FeatureStoreLoadingStrategy, FeatureStoreSearchIndexStrategy, FeatureStoreSelectionStrategy, FeatureWorkspace, FeatureWorkspaceService, FilterableDataSourcePipe, 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, 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, getFilterBadge, getFormatFromOptions, getGeoServiceAction, getLayerOptionIdentifier, getLayersByDeletion, getLayersLegends, getLinkedLayersOptions, getMousePositionFromOlGeometryEvent, getOlTooltipAtCenter, getOlTooltipsAtMidpoints, getResolutionFromScale, getRootParentByDeletion, getRootParentByProperty, getRowsInMapExtent, getSaveableOgcParams, getScaleFromResolution, getSelectedOnly, getTooltipsOfOlGeometry, gmlRegex, handleFileExportError, handleFileExportSuccess, handleFileImportError, handleFileImportSuccess, handleInvalidFileImportError, handleLayerPropertyChange, handleNothingToExportError, handleNothingToImportError, handleOgreServerImportError, handleSRSImportError, handleSizeFileImportError, handleUnreadbleFileImportError, hideOlFeature, 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 };
|
|
11899
|
+
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, LayerId, 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, ResponseType, 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 };
|