@igo2/geo 20.1.0-next.8 → 20.1.0
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 +2123 -2103
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/index.d.ts +105 -124
- package/locale/en.geo.json +8 -3
- package/locale/fr.geo.json +10 -5
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -5,14 +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';
|
|
14
13
|
import * as _igo2_common_entity from '@igo2/common/entity';
|
|
15
|
-
import { BaseEntityTableColumn, EntityStore, EntityKey, EntityStoreOptions, EntityStoreStrategyOptions, EntityStoreStrategy, EntityTableTemplate, EntityTableComponent, EntityTableColumn, EntityState, EntityTableColumnRenderer, EntityRecord, EntityTableButton
|
|
14
|
+
import { BaseEntityTableColumn, EntityStore, EntityKey, EntityStoreOptions, EntityStoreStrategyOptions, EntityStoreStrategy, EntityTableTemplate, EntityTableComponent, EntityTableColumn, EntityState, EntityStoreFilterCustomFuncStrategy, EntityTableColumnRenderer, EntityRecord, EntityTableButton } from '@igo2/common/entity';
|
|
16
15
|
import OlGeometry, { Type } from 'ol/geom/Geometry';
|
|
17
16
|
import { Preset, Tokenizer, Encoders, Document } from 'flexsearch';
|
|
18
17
|
import { SubjectStatus, Watcher, TimeFrame, resolveDate } from '@igo2/utils';
|
|
@@ -67,8 +66,8 @@ 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';
|
|
@@ -76,7 +75,7 @@ import * as i4 from '@angular/material/dialog';
|
|
|
76
75
|
import { MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
77
76
|
import { MatSlideToggleChange } from '@angular/material/slide-toggle';
|
|
78
77
|
import { Workspace, WorkspaceStore, WorkspaceOptions } from '@igo2/common/workspace';
|
|
79
|
-
import {
|
|
78
|
+
import { ITreeConfig, TreeDropEvent, DropPermission, DragAndDropDirective } from '@igo2/common/drag-drop';
|
|
80
79
|
import { MatCheckboxChange } from '@angular/material/checkbox';
|
|
81
80
|
import { ConnectionState } from '@igo2/core/network';
|
|
82
81
|
import { IconSvg } from '@igo2/common/icon';
|
|
@@ -1405,12 +1404,18 @@ declare enum TooltipType {
|
|
|
1405
1404
|
}
|
|
1406
1405
|
type LayerType = 'vector' | 'raster' | 'group';
|
|
1407
1406
|
|
|
1408
|
-
|
|
1409
|
-
|
|
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> {
|
|
1410
1416
|
options: LayerOptions;
|
|
1411
1417
|
abstract type: LayerType;
|
|
1412
1418
|
abstract ol: BaseLayer;
|
|
1413
|
-
abstract parent: LayerGroupBase;
|
|
1414
1419
|
protected abstract createOlLayer(): BaseLayer;
|
|
1415
1420
|
collapsed: boolean;
|
|
1416
1421
|
firstLoadComponent: boolean;
|
|
@@ -1446,34 +1451,37 @@ declare abstract class LayerBase {
|
|
|
1446
1451
|
set visible(value: boolean);
|
|
1447
1452
|
get visible(): boolean;
|
|
1448
1453
|
private _visible$;
|
|
1449
|
-
readonly visible$:
|
|
1454
|
+
readonly visible$: Observable<boolean>;
|
|
1455
|
+
get parent(): G;
|
|
1456
|
+
set parent(parent: G);
|
|
1457
|
+
readonly parent$: BehaviorSubject<G>;
|
|
1450
1458
|
get displayed(): boolean;
|
|
1451
1459
|
set displayed(value: boolean);
|
|
1452
1460
|
private _displayed$;
|
|
1453
|
-
displayed$:
|
|
1461
|
+
displayed$: Observable<boolean>;
|
|
1454
1462
|
private displayed$$;
|
|
1455
1463
|
get showInLayerList(): boolean;
|
|
1456
1464
|
get saveableOptions(): Partial<LayerOptions>;
|
|
1457
1465
|
constructor(options: LayerOptions);
|
|
1458
1466
|
afterCreated(): void;
|
|
1459
1467
|
init(map: MapBase): void;
|
|
1460
|
-
add(parent?:
|
|
1468
|
+
add(parent?: G): void;
|
|
1461
1469
|
private _add;
|
|
1462
|
-
addParent(parent?:
|
|
1470
|
+
addParent(parent?: G): void;
|
|
1463
1471
|
remove(): void;
|
|
1464
1472
|
private _remove;
|
|
1465
|
-
reset(parent?:
|
|
1466
|
-
moveTo(parent?:
|
|
1473
|
+
reset(parent?: G): void;
|
|
1474
|
+
moveTo(parent?: G): void;
|
|
1467
1475
|
clone(): LayerBase;
|
|
1468
1476
|
private initDisplayed$$;
|
|
1469
1477
|
}
|
|
1470
|
-
declare abstract class LayerGroupBase extends LayerBase {
|
|
1478
|
+
declare abstract class LayerGroupBase<G extends ILayerGroup = ILayerGroup> extends LayerBase<G> implements ILayerGroup {
|
|
1471
1479
|
type: LayerType;
|
|
1472
|
-
children: LayerBase[];
|
|
1473
|
-
abstract get descendants(): LayerBase[];
|
|
1474
|
-
abstract addChild(layer: LayerBase): void;
|
|
1475
|
-
abstract removeChild(layer: LayerBase): void;
|
|
1476
|
-
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;
|
|
1477
1485
|
}
|
|
1478
1486
|
|
|
1479
1487
|
interface ImageLayerOptions extends LayerOptions {
|
|
@@ -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;
|
|
@@ -2918,6 +2923,7 @@ declare class RotationButtonComponent implements AfterContentInit {
|
|
|
2918
2923
|
* Tool to swipe the layers
|
|
2919
2924
|
*/
|
|
2920
2925
|
declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
|
|
2926
|
+
private destroyRef;
|
|
2921
2927
|
/**
|
|
2922
2928
|
* Get an active map
|
|
2923
2929
|
*/
|
|
@@ -2938,14 +2944,11 @@ declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
|
|
|
2938
2944
|
* State of draggable action
|
|
2939
2945
|
*/
|
|
2940
2946
|
private inDragAction;
|
|
2941
|
-
/**
|
|
2942
|
-
* Listener of toggle from advanced-map-tool
|
|
2943
|
-
*/
|
|
2944
|
-
private swipeEnabled$$;
|
|
2945
2947
|
/**
|
|
2946
2948
|
* Binder of prerender on the same element
|
|
2947
2949
|
*/
|
|
2948
2950
|
private boundPrerender;
|
|
2951
|
+
activated: i0.WritableSignal<boolean>;
|
|
2949
2952
|
/**
|
|
2950
2953
|
* Get the list of layers for swipe and activate of deactivate the swipe
|
|
2951
2954
|
* @internal
|
|
@@ -3000,10 +3003,6 @@ declare class SwipeControlComponent implements AfterViewInit, OnDestroy {
|
|
|
3000
3003
|
* Save a current state of the context
|
|
3001
3004
|
*/
|
|
3002
3005
|
postrender(event: any): void;
|
|
3003
|
-
/**
|
|
3004
|
-
* Zoom on div
|
|
3005
|
-
*/
|
|
3006
|
-
private letZoom;
|
|
3007
3006
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwipeControlComponent, never>;
|
|
3008
3007
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwipeControlComponent, "igo-swipe-control", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3009
3008
|
}
|
|
@@ -4402,6 +4401,7 @@ interface ISearchSourceParams {
|
|
|
4402
4401
|
ecmax?: string;
|
|
4403
4402
|
page?: string;
|
|
4404
4403
|
type?: string;
|
|
4404
|
+
source?: string;
|
|
4405
4405
|
}
|
|
4406
4406
|
interface SettingOptions {
|
|
4407
4407
|
value: string | number;
|
|
@@ -4560,10 +4560,10 @@ declare class FeatureDetailsComponent implements OnInit, OnDestroy {
|
|
|
4560
4560
|
htmlSanitizer(value: any): SafeResourceUrl;
|
|
4561
4561
|
isObject(value: any): boolean;
|
|
4562
4562
|
openSecureUrl(value: any): void;
|
|
4563
|
-
isUrl(value:
|
|
4564
|
-
isDoc(value:
|
|
4565
|
-
isImg(value:
|
|
4566
|
-
|
|
4563
|
+
isUrl(value: unknown): boolean;
|
|
4564
|
+
isDoc(value: unknown): boolean;
|
|
4565
|
+
isImg(value: unknown): boolean;
|
|
4566
|
+
hasEmbeddedLinks(value: unknown): boolean;
|
|
4567
4567
|
getEmbeddedLinkText(value: any): string;
|
|
4568
4568
|
filterFeatureProperties(feature: any): Record<string, any>;
|
|
4569
4569
|
/**
|
|
@@ -5951,6 +5951,9 @@ declare class WFSDataSource extends DataSource {
|
|
|
5951
5951
|
private _parseXmlFeatures;
|
|
5952
5952
|
}
|
|
5953
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
|
+
|
|
5954
5957
|
declare const defaultEpsg = "EPSG:3857";
|
|
5955
5958
|
declare const defaultMaxFeatures = 5000;
|
|
5956
5959
|
declare const defaultWfsVersion = "2.0.0";
|
|
@@ -5989,18 +5992,15 @@ declare function formatWFSQueryString(dataSourceOptions: WFSDataSourceOptions |
|
|
|
5989
5992
|
declare function checkWfsParams(wfsDataSourceOptions: any, srcType?: string): any;
|
|
5990
5993
|
declare function getFormatFromOptions(options: WFSDataSourceOptions | WMSDataSourceOptions): any;
|
|
5991
5994
|
declare function getSaveableOgcParams(options: OgcFiltersOptions): IOgcFiltersOptionSaveable;
|
|
5995
|
+
declare function getFilterBadge(dataSourceOptions: AnyDataSourceOptions): number | undefined;
|
|
5992
5996
|
|
|
5993
5997
|
type AnyDataSource = DataSource | OSMDataSource | FeatureDataSource | WFSDataSource | XYZDataSource | TileDebugDataSource | WMTSDataSource | WMSDataSource | CartoDataSource | ArcGISRestDataSource | ImageArcGISRestDataSource | TileArcGISRestDataSource | WebSocketDataSource | MVTDataSource | ClusterDataSource;
|
|
5994
5998
|
|
|
5995
|
-
|
|
5996
|
-
type AnyDataSourceOptionsWithParams = FeatureDataSourceOptions | WFSDataSourceOptions | WMSDataSourceOptions | CartoDataSourceOptions | ArcGISRestDataSourceOptions | ArcGISRestImageDataSourceOptions | TileArcGISRestDataSourceOptions;
|
|
5997
|
-
|
|
5998
|
-
declare abstract class Layer extends LayerBase {
|
|
5999
|
+
declare abstract class Layer extends LayerBase<LayerGroup> {
|
|
5999
6000
|
options: LayerOptions;
|
|
6000
6001
|
protected messageService?: MessageService;
|
|
6001
6002
|
protected authInterceptor?: AuthInterceptor;
|
|
6002
6003
|
dataSource: DataSource;
|
|
6003
|
-
parent: LayerGroup;
|
|
6004
6004
|
ol: OlLayer<Source>;
|
|
6005
6005
|
hasBeenVisible$: BehaviorSubject<boolean>;
|
|
6006
6006
|
legend: Legend[];
|
|
@@ -6020,7 +6020,7 @@ declare abstract class Layer extends LayerBase {
|
|
|
6020
6020
|
init(map: MapBase): void;
|
|
6021
6021
|
createLink(): void;
|
|
6022
6022
|
remove(): void;
|
|
6023
|
-
add(parent?:
|
|
6023
|
+
add(parent?: LayerGroup): void;
|
|
6024
6024
|
moveTo(parent?: LayerGroup): void;
|
|
6025
6025
|
private createLinkWithParent;
|
|
6026
6026
|
private findParentByLinkId;
|
|
@@ -6200,14 +6200,11 @@ declare class LayerLegendListComponent {
|
|
|
6200
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>;
|
|
6201
6201
|
}
|
|
6202
6202
|
|
|
6203
|
-
declare class LayerLegendListBindingDirective implements OnInit
|
|
6204
|
-
private mapService;
|
|
6205
|
-
private component;
|
|
6206
|
-
private
|
|
6207
|
-
layersVisibility$$: Subscription;
|
|
6208
|
-
constructor();
|
|
6203
|
+
declare class LayerLegendListBindingDirective implements OnInit {
|
|
6204
|
+
private readonly mapService;
|
|
6205
|
+
private readonly component;
|
|
6206
|
+
private readonly destroyRef;
|
|
6209
6207
|
ngOnInit(): void;
|
|
6210
|
-
ngOnDestroy(): void;
|
|
6211
6208
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerLegendListBindingDirective, never>;
|
|
6212
6209
|
static ɵdir: i0.ɵɵDirectiveDeclaration<LayerLegendListBindingDirective, "[igoLayerLegendListBinding]", never, {}, {}, never, never, true, never>;
|
|
6213
6210
|
}
|
|
@@ -6309,11 +6306,10 @@ declare class LayerListToolService {
|
|
|
6309
6306
|
static ɵprov: i0.ɵɵInjectableDeclaration<LayerListToolService>;
|
|
6310
6307
|
}
|
|
6311
6308
|
|
|
6312
|
-
|
|
6313
|
-
declare class LayerListComponent {
|
|
6309
|
+
declare class LayerListComponent implements AfterViewInit {
|
|
6314
6310
|
private messageService;
|
|
6315
6311
|
toggleOpacity: boolean;
|
|
6316
|
-
|
|
6312
|
+
expansionKey: (node: AnyLayer) => string;
|
|
6317
6313
|
readonly controller: i0.InputSignal<LayerController>;
|
|
6318
6314
|
readonly layers: i0.InputSignal<AnyLayer[]>;
|
|
6319
6315
|
readonly isDesktop: i0.InputSignal<boolean>;
|
|
@@ -6321,29 +6317,25 @@ declare class LayerListComponent {
|
|
|
6321
6317
|
readonly selectAll: i0.InputSignal<boolean>;
|
|
6322
6318
|
readonly viewerOptions: i0.InputSignal<LayerViewerOptions>;
|
|
6323
6319
|
readonly activeChange: i0.OutputEmitterRef<AnyLayer>;
|
|
6324
|
-
|
|
6325
|
-
|
|
6326
|
-
|
|
6327
|
-
|
|
6328
|
-
constructor();
|
|
6329
|
-
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;
|
|
6330
6324
|
isLayerGroup: typeof isLayerGroup;
|
|
6331
6325
|
isLayerItem: typeof isLayerItem;
|
|
6332
6326
|
isSelected: (layer: AnyLayer) => boolean;
|
|
6333
6327
|
isDescendantSelection: (layer: AnyLayer) => boolean;
|
|
6328
|
+
ngAfterViewInit(): void;
|
|
6334
6329
|
toggleActive(layer: AnyLayer): void;
|
|
6335
6330
|
handleSelect(checked: boolean, layer: AnyLayer): void;
|
|
6336
6331
|
getLayerType(layer: Layer): LayerType | 'measure' | 'draw';
|
|
6337
6332
|
getLayerIcon(layer: Layer): string | IconSvg;
|
|
6338
|
-
|
|
6333
|
+
trackByFn(_index: number, node: AnyLayer): string;
|
|
6334
|
+
dropNode(event: TreeDropEvent<AnyLayer>): void;
|
|
6339
6335
|
dropNodeError(details: DropPermission): void;
|
|
6340
6336
|
dragStart(): void;
|
|
6341
|
-
handleNodeToggle(node:
|
|
6342
|
-
private findNodeByLayerId;
|
|
6343
|
-
private updateDatasource;
|
|
6344
|
-
/** Recursive */
|
|
6337
|
+
handleNodeToggle(node: AnyLayer): void;
|
|
6345
6338
|
private expandGroup;
|
|
6346
|
-
private restoreModel;
|
|
6347
6339
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerListComponent, never>;
|
|
6348
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>;
|
|
6349
6341
|
}
|
|
@@ -6396,6 +6388,7 @@ declare class LayerViewerBottomActionsComponent {
|
|
|
6396
6388
|
get isSelectionLowerable(): boolean;
|
|
6397
6389
|
get canRename(): boolean;
|
|
6398
6390
|
isLayerItem: typeof isLayerItem;
|
|
6391
|
+
isLayerGroup: typeof isLayerGroup;
|
|
6399
6392
|
handleRename(): void;
|
|
6400
6393
|
isLayersRemovable(layers: AnyLayer[]): boolean;
|
|
6401
6394
|
removeLayers(): void;
|
|
@@ -6455,20 +6448,26 @@ declare class LayerViewerComponent implements OnInit {
|
|
|
6455
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>;
|
|
6456
6449
|
}
|
|
6457
6450
|
|
|
6458
|
-
declare class LayerVisibilityButtonComponent
|
|
6459
|
-
private
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
|
|
6451
|
+
declare class LayerVisibilityButtonComponent {
|
|
6452
|
+
private iconRegistry;
|
|
6453
|
+
private sanitizer;
|
|
6454
|
+
private languageService;
|
|
6455
|
+
eyeClosedByGroupSvg: IconSvg;
|
|
6463
6456
|
readonly layer: i0.InputSignal<AnyLayer>;
|
|
6464
6457
|
readonly tooltip: i0.InputSignal<string>;
|
|
6465
6458
|
readonly disabled: i0.InputSignal<boolean>;
|
|
6466
6459
|
readonly showQueryBadge: i0.InputSignal<boolean>;
|
|
6467
6460
|
readonly inResolutionsRange: i0.InputSignal<boolean>;
|
|
6468
|
-
|
|
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>;
|
|
6469
6466
|
readonly visibilityChange: i0.OutputEmitterRef<Event>;
|
|
6470
|
-
|
|
6467
|
+
constructor();
|
|
6471
6468
|
toggle(event: Event): void;
|
|
6469
|
+
private getBadge;
|
|
6470
|
+
private getDefaultTooltip;
|
|
6472
6471
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerVisibilityButtonComponent, never>;
|
|
6473
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>;
|
|
6474
6473
|
}
|
|
@@ -8701,11 +8700,8 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8701
8700
|
private directionsSourceService;
|
|
8702
8701
|
private searchService;
|
|
8703
8702
|
private queryService;
|
|
8704
|
-
private messageService;
|
|
8705
8703
|
projection: string;
|
|
8706
|
-
hasOsrmPrivateAccess: boolean;
|
|
8707
8704
|
twoSourcesAvailable: boolean;
|
|
8708
|
-
private zoomOnActiveRoute$$;
|
|
8709
8705
|
private storeEmpty$$;
|
|
8710
8706
|
private storeChange$$;
|
|
8711
8707
|
private routesQueries$$;
|
|
@@ -8716,7 +8712,6 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8716
8712
|
private isTranslating;
|
|
8717
8713
|
previousStops: Stop[];
|
|
8718
8714
|
private searchs$$;
|
|
8719
|
-
private authenticated$$;
|
|
8720
8715
|
readonly contextUri: i0.InputSignal<string>;
|
|
8721
8716
|
readonly stopsStore: i0.InputSignal<StopsStore>;
|
|
8722
8717
|
readonly stopsFeatureStore: i0.InputSignal<StopsFeatureStore>;
|
|
@@ -8725,7 +8720,7 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8725
8720
|
readonly debounce: i0.InputSignal<number>;
|
|
8726
8721
|
readonly length: i0.InputSignal<number>;
|
|
8727
8722
|
readonly coordRoundedDecimals: i0.InputSignal<number>;
|
|
8728
|
-
readonly
|
|
8723
|
+
readonly zoomToActiveRoute: i0.InputSignal<boolean>;
|
|
8729
8724
|
readonly authenticated$: i0.InputSignal<BehaviorSubject<boolean>>;
|
|
8730
8725
|
/**
|
|
8731
8726
|
* Wheter one of the direction control is active
|
|
@@ -8739,7 +8734,7 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8739
8734
|
ngOnDestroy(): void;
|
|
8740
8735
|
private freezeStores;
|
|
8741
8736
|
private initEntityStores;
|
|
8742
|
-
|
|
8737
|
+
zoomOnActiveRoute(): void;
|
|
8743
8738
|
private initOlInteraction;
|
|
8744
8739
|
onStopInputHasFocusChange(stopInputHasFocus: boolean): void;
|
|
8745
8740
|
private executeStopTranslation;
|
|
@@ -8751,9 +8746,8 @@ declare class DirectionsComponent implements OnInit, OnDestroy {
|
|
|
8751
8746
|
private getRoutes;
|
|
8752
8747
|
addStopOverlay(stop: Stop): void;
|
|
8753
8748
|
onToggleDirectionsControl(isActive: boolean): void;
|
|
8754
|
-
onTogglePrivateModeControl(isActive: boolean): void;
|
|
8755
8749
|
static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsComponent, never>;
|
|
8756
|
-
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>;
|
|
8757
8751
|
}
|
|
8758
8752
|
|
|
8759
8753
|
declare class DirectionsInputsComponent implements OnDestroy {
|
|
@@ -8902,10 +8896,10 @@ declare class DirectionsButtonsComponent {
|
|
|
8902
8896
|
private routeService;
|
|
8903
8897
|
private directionsService;
|
|
8904
8898
|
readonly contextUri: i0.InputSignal<string>;
|
|
8905
|
-
readonly zoomOnActiveRoute: i0.ModelSignal<boolean>;
|
|
8906
8899
|
readonly stopsStore: i0.InputSignal<StopsStore>;
|
|
8907
8900
|
readonly routesFeatureStore: i0.InputSignal<RoutesFeatureStore>;
|
|
8908
8901
|
readonly stepsFeatureStore: i0.InputSignal<StepsFeatureStore>;
|
|
8902
|
+
readonly zoomOnActiveRoute: i0.OutputEmitterRef<void>;
|
|
8909
8903
|
downloadDirectionsBtnDisabled: boolean;
|
|
8910
8904
|
/**
|
|
8911
8905
|
* Returns the active route from the routesFeatureStore.
|
|
@@ -8918,11 +8912,6 @@ declare class DirectionsButtonsComponent {
|
|
|
8918
8912
|
*
|
|
8919
8913
|
*/
|
|
8920
8914
|
resetStops(): void;
|
|
8921
|
-
/**
|
|
8922
|
-
* Triggers the zoom on the active route.
|
|
8923
|
-
*
|
|
8924
|
-
*/
|
|
8925
|
-
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,7 +8948,7 @@ 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; "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>;
|
|
8963
8952
|
}
|
|
8964
8953
|
|
|
8965
8954
|
declare class DirectionsResultsComponent implements OnInit, OnDestroy {
|
|
@@ -9328,6 +9317,7 @@ declare abstract class Catalog implements ICatalog {
|
|
|
9328
9317
|
abstract?: string;
|
|
9329
9318
|
forcedProperties?: any[];
|
|
9330
9319
|
items?: CatalogItem[];
|
|
9320
|
+
/** Default to wms */
|
|
9331
9321
|
type?: TypeCatalogStrings;
|
|
9332
9322
|
version?: string;
|
|
9333
9323
|
matrixSet?: string;
|
|
@@ -9408,6 +9398,7 @@ declare class CatalogBrowserComponent implements OnInit, OnDestroy {
|
|
|
9408
9398
|
* Whether a group can be toggled when it's collapsed
|
|
9409
9399
|
*/
|
|
9410
9400
|
readonly toggleCollapsedGroup: i0.InputSignal<boolean>;
|
|
9401
|
+
private isAddingLayers;
|
|
9411
9402
|
/**
|
|
9412
9403
|
* @internal
|
|
9413
9404
|
*/
|
|
@@ -9453,6 +9444,7 @@ declare class CatalogBrowserComponent implements OnInit, OnDestroy {
|
|
|
9453
9444
|
* @param layers Catalog layers
|
|
9454
9445
|
*/
|
|
9455
9446
|
private removeLayersFromMap;
|
|
9447
|
+
private _removeLayersFromMap;
|
|
9456
9448
|
/**
|
|
9457
9449
|
* Sort the layers by title. asc or desc.
|
|
9458
9450
|
* @internal
|
|
@@ -9491,6 +9483,7 @@ declare class AddCatalogDialogComponent implements OnInit, OnDestroy {
|
|
|
9491
9483
|
store: EntityStore<Catalog>;
|
|
9492
9484
|
error: boolean;
|
|
9493
9485
|
addedCatalog: Catalog;
|
|
9486
|
+
isPredefinedCatalog: boolean;
|
|
9494
9487
|
};
|
|
9495
9488
|
predefinedForm$: BehaviorSubject<Form>;
|
|
9496
9489
|
customForm$: BehaviorSubject<Form>;
|
|
@@ -9560,7 +9553,7 @@ declare class CatalogLibraryComponent implements OnInit, OnDestroy {
|
|
|
9560
9553
|
ngOnDestroy(): void;
|
|
9561
9554
|
private handleAddCatalogToStore;
|
|
9562
9555
|
onCatalogRemove(catalog: any): void;
|
|
9563
|
-
addCatalogDialog(error?: any, addedCatalog?: Catalog): void;
|
|
9556
|
+
addCatalogDialog(error?: any, addedCatalog?: Catalog, isPredefinedCatalog?: boolean): void;
|
|
9564
9557
|
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogLibraryComponent, never>;
|
|
9565
9558
|
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>;
|
|
9566
9559
|
}
|
|
@@ -10325,30 +10318,16 @@ interface TextPdfSizeAndMargin {
|
|
|
10325
10318
|
declare class PrintComponent {
|
|
10326
10319
|
private printService;
|
|
10327
10320
|
disabled$: BehaviorSubject<boolean>;
|
|
10328
|
-
|
|
10329
|
-
|
|
10330
|
-
|
|
10331
|
-
|
|
10332
|
-
|
|
10333
|
-
|
|
10334
|
-
|
|
10335
|
-
set paperFormat(value: PrintPaperFormat);
|
|
10336
|
-
private _paperFormat;
|
|
10337
|
-
get orientation(): PrintOrientation;
|
|
10338
|
-
set orientation(value: PrintOrientation);
|
|
10339
|
-
private _orientation;
|
|
10340
|
-
get imageFormat(): PrintSaveImageFormat;
|
|
10341
|
-
set imageFormat(value: PrintSaveImageFormat);
|
|
10342
|
-
private _imageFormat;
|
|
10343
|
-
get legendPosition(): PrintLegendPosition;
|
|
10344
|
-
set legendPosition(value: PrintLegendPosition);
|
|
10345
|
-
private _legendPosition;
|
|
10346
|
-
get resolution(): PrintResolution;
|
|
10347
|
-
set resolution(value: PrintResolution);
|
|
10348
|
-
private _resolution;
|
|
10321
|
+
readonly map: i0.InputSignal<IgoMap>;
|
|
10322
|
+
readonly outputFormat: i0.InputSignal<"Pdf" | "Image">;
|
|
10323
|
+
readonly paperFormat: i0.InputSignal<"A0" | "A1" | "A2" | "A3" | "A4" | "A5" | "Letter" | "Legal">;
|
|
10324
|
+
readonly orientation: i0.InputSignal<"landscape" | "portrait">;
|
|
10325
|
+
readonly imageFormat: i0.InputSignal<"Bmp" | "Gif" | "Jpeg" | "Png" | "Tiff">;
|
|
10326
|
+
readonly legendPosition: i0.InputSignal<"none" | "topright" | "topleft" | "bottomleft" | "bottomright" | "newpage">;
|
|
10327
|
+
readonly resolution: i0.InputSignal<"72" | "96" | "150" | "300">;
|
|
10349
10328
|
handleFormSubmit(data: PrintOptions): void;
|
|
10350
10329
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrintComponent, never>;
|
|
10351
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PrintComponent, "igo-print", never, { "map": { "alias": "map"; "required": false; }; "outputFormat": { "alias": "outputFormat"; "required": false; }; "paperFormat": { "alias": "paperFormat"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "imageFormat": { "alias": "imageFormat"; "required": false; }; "legendPosition": { "alias": "legendPosition"; "required": false; }; "resolution": { "alias": "resolution"; "required": false; }; }, {}, never, never, true, never>;
|
|
10330
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PrintComponent, "igo-print", never, { "map": { "alias": "map"; "required": false; "isSignal": true; }; "outputFormat": { "alias": "outputFormat"; "required": false; "isSignal": true; }; "paperFormat": { "alias": "paperFormat"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "imageFormat": { "alias": "imageFormat"; "required": false; "isSignal": true; }; "legendPosition": { "alias": "legendPosition"; "required": false; "isSignal": true; }; "resolution": { "alias": "resolution"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10352
10331
|
}
|
|
10353
10332
|
|
|
10354
10333
|
declare class PrintFormComponent implements OnInit {
|
|
@@ -10462,7 +10441,7 @@ declare class DataSourceService {
|
|
|
10462
10441
|
private messageService;
|
|
10463
10442
|
private authInterceptor;
|
|
10464
10443
|
datasources$: BehaviorSubject<DataSource[]>;
|
|
10465
|
-
createAsyncDataSource(
|
|
10444
|
+
createAsyncDataSource(options: AnyDataSourceOptions, detailedContextUri?: string): Observable<DataSource>;
|
|
10466
10445
|
private createOSMDataSource;
|
|
10467
10446
|
private createFeatureDataSource;
|
|
10468
10447
|
private createWebSocketDataSource;
|
|
@@ -11080,7 +11059,9 @@ declare class ExportService {
|
|
|
11080
11059
|
private exportAsync;
|
|
11081
11060
|
protected exportToFile(olFeatures: OlFeature<OlGeometry>[], format: AnyExportFormat, title: string, projectionIn: string, projectionOut: string): Promise<void>;
|
|
11082
11061
|
private formatFeatures;
|
|
11083
|
-
getFormatter(format: AnyExportFormat): ol_format_GML3.default | olformat.GPX | olformat.KML | olformat.GeoJSON<OlFeature<OlGeometry
|
|
11062
|
+
getFormatter(format: AnyExportFormat): ol_format_GML3.default | olformat.GPX | olformat.KML | olformat.GeoJSON<OlFeature<OlGeometry, {
|
|
11063
|
+
[x: string]: any;
|
|
11064
|
+
}>>;
|
|
11084
11065
|
exportExcel(map: IgoMap, store: WorkspaceStore, data: ExportOptions): Promise<void>;
|
|
11085
11066
|
private getTitleFromLayers;
|
|
11086
11067
|
private getLayerTitleFromId;
|
|
@@ -11305,11 +11286,6 @@ declare enum OverlayAction {
|
|
|
11305
11286
|
*/
|
|
11306
11287
|
declare function createOverlayLayer(): VectorLayer;
|
|
11307
11288
|
|
|
11308
|
-
declare global {
|
|
11309
|
-
interface Navigator {
|
|
11310
|
-
msSaveBlob?: (blob: any, defaultName?: string) => boolean;
|
|
11311
|
-
}
|
|
11312
|
-
}
|
|
11313
11289
|
declare class PrintService {
|
|
11314
11290
|
private http;
|
|
11315
11291
|
private config;
|
|
@@ -11394,7 +11370,7 @@ declare class PrintService {
|
|
|
11394
11370
|
defineNbFileToProcess(nbFileToProcess: any): void;
|
|
11395
11371
|
private timeout;
|
|
11396
11372
|
private addCanvas;
|
|
11397
|
-
addMap(doc: jsPDF, map: IgoMap, resolution: number, imageDimensions: [number, number], baseMargins: [number, number, number, number]): Subject<
|
|
11373
|
+
addMap(doc: jsPDF, map: IgoMap, resolution: number, imageDimensions: [number, number], baseMargins: [number, number, number, number]): Subject<SubjectStatus>;
|
|
11398
11374
|
private setMapResolution;
|
|
11399
11375
|
private resetOriginalMapSize;
|
|
11400
11376
|
drawMap(size: number[], mapCanvas: HTMLCollectionOf<HTMLCanvasElement>): Promise<HTMLCanvasElement>;
|
|
@@ -11419,7 +11395,7 @@ declare class PrintService {
|
|
|
11419
11395
|
* @param doZipFile - Indicate if we do a zip with the file
|
|
11420
11396
|
* @return Image file of the map with extension format given as parameter
|
|
11421
11397
|
*/
|
|
11422
|
-
downloadMapImage(map: IgoMap, printResolution: PrintResolution, format: string, projection: boolean, scale: boolean, title: string, subtitle: string, comment: string, doZipFile: boolean, legendPosition: PrintLegendPosition, showNorthArrow: boolean): Subject<
|
|
11398
|
+
downloadMapImage(map: IgoMap, printResolution: PrintResolution, format: string, projection: boolean, scale: boolean, title: string, subtitle: string, comment: string, doZipFile: boolean, legendPosition: PrintLegendPosition, showNorthArrow: boolean): Subject<SubjectStatus>;
|
|
11423
11399
|
private setMapImageResolution;
|
|
11424
11400
|
/**
|
|
11425
11401
|
* Create and Add Legend to the map canvas
|
|
@@ -11473,6 +11449,7 @@ declare class PrintService {
|
|
|
11473
11449
|
*/
|
|
11474
11450
|
private getZipFile;
|
|
11475
11451
|
private pdf_units2points;
|
|
11452
|
+
private mapRenderCompleteEvent$;
|
|
11476
11453
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrintService, never>;
|
|
11477
11454
|
static ɵprov: i0.ɵɵInjectableDeclaration<PrintService>;
|
|
11478
11455
|
}
|
|
@@ -11637,7 +11614,9 @@ declare class OsmLinks {
|
|
|
11637
11614
|
}
|
|
11638
11615
|
|
|
11639
11616
|
declare class WktService {
|
|
11640
|
-
wktToFeature(wkt: any, wktProj: any, featureProj: any): ol.Feature<olGeom.Geometry
|
|
11617
|
+
wktToFeature(wkt: any, wktProj: any, featureProj: any): ol.Feature<olGeom.Geometry, {
|
|
11618
|
+
[x: string]: any;
|
|
11619
|
+
}>;
|
|
11641
11620
|
extentToWkt(epsgTO: any, extent: any, extentProj: any): {
|
|
11642
11621
|
wktPoly: string;
|
|
11643
11622
|
wktLine: string;
|
|
@@ -11797,7 +11776,9 @@ declare class EditionWorkspaceService {
|
|
|
11797
11776
|
rowsInMapExtentCheckCondition$: BehaviorSubject<boolean>;
|
|
11798
11777
|
loading: boolean;
|
|
11799
11778
|
wktFormat: WKT;
|
|
11800
|
-
geoJsonFormat: GeoJSON<OlFeature<OlGeometry
|
|
11779
|
+
geoJsonFormat: GeoJSON<OlFeature<OlGeometry, {
|
|
11780
|
+
[x: string]: any;
|
|
11781
|
+
}>>;
|
|
11801
11782
|
get zoomAuto(): boolean;
|
|
11802
11783
|
createWorkspace(layer: ImageLayer, map: IgoMap): EditionWorkspace;
|
|
11803
11784
|
private createFeatureStore;
|
|
@@ -11902,5 +11883,5 @@ declare function provideInteractiveSelectionFormWidget(): {
|
|
|
11902
11883
|
deps: (typeof WidgetService)[];
|
|
11903
11884
|
};
|
|
11904
11885
|
|
|
11905
|
-
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, 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 };
|
|
11886
|
+
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 };
|
|
11906
11887
|
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 };
|