@igo2/geo 20.1.0-next.1 → 20.1.0-next.2
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 +25 -16
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/index.d.ts +126 -124
- package/package.json +5 -5
package/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import olSourceVector from 'ol/source/Vector';
|
|
|
13
13
|
import { Units } from 'ol/control/ScaleLine';
|
|
14
14
|
import OlGeometry, { Type } from 'ol/geom/Geometry';
|
|
15
15
|
import { Preset, Tokenizer, Encoders, Document } from 'flexsearch';
|
|
16
|
-
import {
|
|
16
|
+
import { SubjectStatus, Watcher, TimeFrame, resolveDate } from '@igo2/utils';
|
|
17
17
|
import * as olproj from 'ol/proj';
|
|
18
18
|
import { ProjectionLike, Projection as Projection$1 } from 'ol/proj';
|
|
19
19
|
import * as ol from 'ol';
|
|
@@ -1308,77 +1308,6 @@ declare class MapViewController extends MapController {
|
|
|
1308
1308
|
private onMoveEnd;
|
|
1309
1309
|
}
|
|
1310
1310
|
|
|
1311
|
-
interface LayerWatcherChange {
|
|
1312
|
-
event: LayerWatcherEvent;
|
|
1313
|
-
layer: Layer;
|
|
1314
|
-
}
|
|
1315
|
-
type LayerWatcherEvent = Pick<ObjectEvent, 'key' | 'oldValue'> & {
|
|
1316
|
-
value: unknown;
|
|
1317
|
-
};
|
|
1318
|
-
declare class LayerWatcher extends Watcher {
|
|
1319
|
-
propertyChange$: BehaviorSubject<LayerWatcherChange>;
|
|
1320
|
-
private loaded;
|
|
1321
|
-
private loading;
|
|
1322
|
-
private layers;
|
|
1323
|
-
private subscriptionsByLayerId;
|
|
1324
|
-
private subscriptions;
|
|
1325
|
-
constructor();
|
|
1326
|
-
watch(): void;
|
|
1327
|
-
unwatch(): void;
|
|
1328
|
-
setPropertyChange(change: LayerWatcherChange): void;
|
|
1329
|
-
watchLayer(layer: AnyLayer): void;
|
|
1330
|
-
private _watchLayer;
|
|
1331
|
-
private createOlEventObservable;
|
|
1332
|
-
unwatchLayer(layer: AnyLayer): void;
|
|
1333
|
-
private _unwatchLayer;
|
|
1334
|
-
}
|
|
1335
|
-
|
|
1336
|
-
declare abstract class MapBase {
|
|
1337
|
-
ol: Map$1;
|
|
1338
|
-
forcedOffline$: BehaviorSubject<boolean>;
|
|
1339
|
-
layersAddedByClick$: BehaviorSubject<AnyLayer[]>;
|
|
1340
|
-
status$: Subject<SubjectStatus>;
|
|
1341
|
-
propertyChange$: Subject<LayerWatcherChange>;
|
|
1342
|
-
overlay: Overlay;
|
|
1343
|
-
queryResultsOverlay: Overlay;
|
|
1344
|
-
searchResultsOverlay: Overlay;
|
|
1345
|
-
viewController: MapViewController;
|
|
1346
|
-
geolocationController: MapGeolocationController;
|
|
1347
|
-
swipeEnabled$: BehaviorSubject<boolean>;
|
|
1348
|
-
mapCenter$: BehaviorSubject<boolean>;
|
|
1349
|
-
selectedFeatures$: BehaviorSubject<Layer[]>;
|
|
1350
|
-
bufferDataSource: FeatureDataSource;
|
|
1351
|
-
layerWatcher: LayerWatcher;
|
|
1352
|
-
readonly options: MapOptions;
|
|
1353
|
-
layerController: LayerController;
|
|
1354
|
-
projection: string;
|
|
1355
|
-
viewProjection: Projection$1;
|
|
1356
|
-
projectionCode: string;
|
|
1357
|
-
abstract setTarget(id: string): void;
|
|
1358
|
-
abstract updateView(options: MapViewOptions): void;
|
|
1359
|
-
abstract setView(options: MapViewOptions): void;
|
|
1360
|
-
abstract updateControls(value: MapControlsOptions): void;
|
|
1361
|
-
abstract getCenter(projection?: string | Projection$1): [number, number];
|
|
1362
|
-
abstract getExtent(projection?: string | Projection$1): MapExtent;
|
|
1363
|
-
abstract getZoom(): number;
|
|
1364
|
-
/** @deprecated find a way to remove this method. For now we discourage to use it until we find the way to remove it */
|
|
1365
|
-
abstract getLayerByOlUId(olUId: string): AnyLayer;
|
|
1366
|
-
}
|
|
1367
|
-
|
|
1368
|
-
declare class LayerSelectionModel {
|
|
1369
|
-
private selection;
|
|
1370
|
-
private descendantSelection;
|
|
1371
|
-
get selected(): AnyLayer[];
|
|
1372
|
-
get hasSelection(): boolean;
|
|
1373
|
-
get isSelectionEmpty(): boolean;
|
|
1374
|
-
clearSelection(): void;
|
|
1375
|
-
select(...layers: AnyLayer[]): void;
|
|
1376
|
-
deselect(...layers: AnyLayer[]): void;
|
|
1377
|
-
isSelected: (layer: AnyLayer) => boolean;
|
|
1378
|
-
isDescendantSelection: (layer: AnyLayer) => boolean;
|
|
1379
|
-
private getDescendants;
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
1311
|
type AnyPropertyOptions = ZindexPropertyOptions | BasePropertyOptions;
|
|
1383
1312
|
interface ZindexPropertyOptions extends BasePropertyOptions {
|
|
1384
1313
|
initialOrder: AnyLayer[];
|
|
@@ -1387,14 +1316,14 @@ interface BasePropertyOptions {
|
|
|
1387
1316
|
layers: Layer[];
|
|
1388
1317
|
}
|
|
1389
1318
|
interface LayersLink {
|
|
1390
|
-
linkId:
|
|
1319
|
+
linkId: LayerId;
|
|
1391
1320
|
/** Default value is true */
|
|
1392
1321
|
showInMiniBaseMap?: boolean;
|
|
1393
1322
|
links?: LayersLinkProperties[];
|
|
1394
1323
|
}
|
|
1395
1324
|
interface LayersLinkProperties {
|
|
1396
1325
|
bidirectionnal?: boolean;
|
|
1397
|
-
linkedIds:
|
|
1326
|
+
linkedIds: LayerId[];
|
|
1398
1327
|
syncedDelete: boolean;
|
|
1399
1328
|
properties: LinkedProperties[];
|
|
1400
1329
|
}
|
|
@@ -1429,8 +1358,9 @@ interface LayerOptions extends LayerOptionsBase {
|
|
|
1429
1358
|
linkedLayers?: LayersLink;
|
|
1430
1359
|
showButtonZoomToExtent?: boolean;
|
|
1431
1360
|
}
|
|
1361
|
+
type LayerId = string | number;
|
|
1432
1362
|
interface LayerOptionsBase {
|
|
1433
|
-
id?:
|
|
1363
|
+
id?: LayerId;
|
|
1434
1364
|
/**
|
|
1435
1365
|
* An unique identifier calculated client side
|
|
1436
1366
|
* The name prop provide a way to have a unique identifier between all layers
|
|
@@ -1444,14 +1374,14 @@ interface LayerOptionsBase {
|
|
|
1444
1374
|
minResolution?: number;
|
|
1445
1375
|
maxResolution?: number;
|
|
1446
1376
|
showInLayerList?: boolean;
|
|
1447
|
-
parentId?:
|
|
1377
|
+
parentId?: LayerId;
|
|
1448
1378
|
}
|
|
1449
1379
|
interface LayerSecurityOptions {
|
|
1450
1380
|
profils?: string[];
|
|
1451
1381
|
}
|
|
1452
1382
|
interface GeoWorkspaceOptions {
|
|
1453
|
-
srcId?:
|
|
1454
|
-
workspaceId?:
|
|
1383
|
+
srcId?: LayerId;
|
|
1384
|
+
workspaceId?: LayerId;
|
|
1455
1385
|
minResolution?: number;
|
|
1456
1386
|
maxResolution?: number;
|
|
1457
1387
|
enabled?: boolean;
|
|
@@ -1495,8 +1425,9 @@ declare abstract class LayerBase {
|
|
|
1495
1425
|
* return false by default.
|
|
1496
1426
|
*/
|
|
1497
1427
|
get isIgoInternalLayer(): boolean;
|
|
1498
|
-
get id():
|
|
1499
|
-
|
|
1428
|
+
get id(): LayerId;
|
|
1429
|
+
set id(value: LayerId);
|
|
1430
|
+
get parentId(): LayerId | undefined;
|
|
1500
1431
|
get alias(): string;
|
|
1501
1432
|
get title(): string;
|
|
1502
1433
|
set title(title: string);
|
|
@@ -1788,6 +1719,108 @@ declare class LayerGroup extends LayerGroupBase {
|
|
|
1788
1719
|
private _getDescendantsLevel;
|
|
1789
1720
|
}
|
|
1790
1721
|
|
|
1722
|
+
declare class LayerService {
|
|
1723
|
+
private http;
|
|
1724
|
+
private styleService;
|
|
1725
|
+
private dataSourceService;
|
|
1726
|
+
private messageService;
|
|
1727
|
+
private geoNetworkService;
|
|
1728
|
+
private authInterceptor;
|
|
1729
|
+
unavailableLayers: AnyLayerItemOptions[];
|
|
1730
|
+
createLayers(layersOption: AnyLayerOptions[], contextUri?: string): Observable<(AnyLayer | undefined)[]>;
|
|
1731
|
+
createLayer(layerOptions: AnyLayerItemOptions): Layer;
|
|
1732
|
+
createAsyncLayer(options: AnyLayerItemOptions, detailedContextUri?: string): Observable<Layer | undefined>;
|
|
1733
|
+
createAsyncGroup(options: LayerGroupOptions, detailedContextUri?: string): Observable<LayerGroup>;
|
|
1734
|
+
private createGroup;
|
|
1735
|
+
private createImageLayer;
|
|
1736
|
+
private createTileLayer;
|
|
1737
|
+
private createVectorLayer;
|
|
1738
|
+
private handleLegacyStyles;
|
|
1739
|
+
private createVectorTileLayer;
|
|
1740
|
+
private applyMapboxStyle;
|
|
1741
|
+
private getStuff;
|
|
1742
|
+
private getAbsoluteUrl;
|
|
1743
|
+
createAsyncIdbLayers(contextUri?: string): Observable<Layer[]>;
|
|
1744
|
+
deleteUnavailableLayers(anyLayerOptions: AnyLayerItemOptions): void;
|
|
1745
|
+
sourceOptionsWithParams(sourceOptions: AnyDataSourceOptions): sourceOptions is AnyDataSourceOptionsWithParams;
|
|
1746
|
+
sourceOptionsWithLayer(sourceOptions: AnyDataSourceOptions): sourceOptions is ArcGISRestDataSourceOptions | WMTSDataSourceOptions;
|
|
1747
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayerService, never>;
|
|
1748
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LayerService>;
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
declare const LAYER = "Layer";
|
|
1752
|
+
|
|
1753
|
+
interface LayerWatcherChange {
|
|
1754
|
+
event: LayerWatcherEvent;
|
|
1755
|
+
layer: Layer;
|
|
1756
|
+
}
|
|
1757
|
+
type LayerWatcherEvent = Pick<ObjectEvent, 'key' | 'oldValue'> & {
|
|
1758
|
+
value: unknown;
|
|
1759
|
+
};
|
|
1760
|
+
declare class LayerWatcher extends Watcher {
|
|
1761
|
+
propertyChange$: BehaviorSubject<LayerWatcherChange>;
|
|
1762
|
+
private loaded;
|
|
1763
|
+
private loading;
|
|
1764
|
+
private layers;
|
|
1765
|
+
private subscriptionsByLayerId;
|
|
1766
|
+
private subscriptions;
|
|
1767
|
+
constructor();
|
|
1768
|
+
watch(): void;
|
|
1769
|
+
unwatch(): void;
|
|
1770
|
+
setPropertyChange(change: LayerWatcherChange): void;
|
|
1771
|
+
watchLayer(layer: AnyLayer): void;
|
|
1772
|
+
private _watchLayer;
|
|
1773
|
+
private createOlEventObservable;
|
|
1774
|
+
unwatchLayer(layer: AnyLayer): void;
|
|
1775
|
+
private _unwatchLayer;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
declare abstract class MapBase {
|
|
1779
|
+
ol: Map$1;
|
|
1780
|
+
forcedOffline$: BehaviorSubject<boolean>;
|
|
1781
|
+
layersAddedByClick$: BehaviorSubject<AnyLayer[]>;
|
|
1782
|
+
status$: Subject<SubjectStatus>;
|
|
1783
|
+
propertyChange$: Subject<LayerWatcherChange>;
|
|
1784
|
+
overlay: Overlay;
|
|
1785
|
+
queryResultsOverlay: Overlay;
|
|
1786
|
+
searchResultsOverlay: Overlay;
|
|
1787
|
+
viewController: MapViewController;
|
|
1788
|
+
geolocationController: MapGeolocationController;
|
|
1789
|
+
swipeEnabled$: BehaviorSubject<boolean>;
|
|
1790
|
+
mapCenter$: BehaviorSubject<boolean>;
|
|
1791
|
+
selectedFeatures$: BehaviorSubject<Layer[]>;
|
|
1792
|
+
bufferDataSource: FeatureDataSource;
|
|
1793
|
+
layerWatcher: LayerWatcher;
|
|
1794
|
+
readonly options: MapOptions;
|
|
1795
|
+
layerController: LayerController;
|
|
1796
|
+
projection: string;
|
|
1797
|
+
viewProjection: Projection$1;
|
|
1798
|
+
projectionCode: string;
|
|
1799
|
+
abstract setTarget(id: string): void;
|
|
1800
|
+
abstract updateView(options: MapViewOptions): void;
|
|
1801
|
+
abstract setView(options: MapViewOptions): void;
|
|
1802
|
+
abstract updateControls(value: MapControlsOptions): void;
|
|
1803
|
+
abstract getCenter(projection?: string | Projection$1): [number, number];
|
|
1804
|
+
abstract getExtent(projection?: string | Projection$1): MapExtent;
|
|
1805
|
+
abstract getZoom(): number;
|
|
1806
|
+
/** @deprecated find a way to remove this method. For now we discourage to use it until we find the way to remove it */
|
|
1807
|
+
abstract getLayerByOlUId(olUId: string): AnyLayer;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
declare class LayerSelectionModel {
|
|
1811
|
+
private selection;
|
|
1812
|
+
private descendantSelection;
|
|
1813
|
+
get selected(): AnyLayer[];
|
|
1814
|
+
get hasSelection(): boolean;
|
|
1815
|
+
get isSelectionEmpty(): boolean;
|
|
1816
|
+
clearSelection(): void;
|
|
1817
|
+
select(...layers: AnyLayer[]): void;
|
|
1818
|
+
deselect(...layers: AnyLayer[]): void;
|
|
1819
|
+
isSelected: (layer: AnyLayer) => boolean;
|
|
1820
|
+
isDescendantSelection: (layer: AnyLayer) => boolean;
|
|
1821
|
+
private getDescendants;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1791
1824
|
/**
|
|
1792
1825
|
* We got four kind of layers
|
|
1793
1826
|
* TreeLayer: all layers to show in the layer manager
|
|
@@ -1833,8 +1866,9 @@ declare class LayerController extends LayerSelectionModel {
|
|
|
1833
1866
|
lower(...layers: AnyLayer[]): void;
|
|
1834
1867
|
/** Reset all except SystemLayer */
|
|
1835
1868
|
reset(): void;
|
|
1836
|
-
getById(id:
|
|
1837
|
-
|
|
1869
|
+
getById(id: LayerId): AnyLayer;
|
|
1870
|
+
getByTitle(title: string): AnyLayer;
|
|
1871
|
+
getBySourceId(id: LayerId): AnyLayer;
|
|
1838
1872
|
getPosition(layer: AnyLayer, type?: 'below' | 'above'): number[];
|
|
1839
1873
|
getLayerRecipient(layer: AnyLayer): AnyLayer[];
|
|
1840
1874
|
/**
|
|
@@ -2492,7 +2526,7 @@ declare function getAllChildLayersByProperty(layers: AnyLayer[], layer: Layer, k
|
|
|
2492
2526
|
declare function getRootParentByDeletion(layer: Layer, layers: AnyLayer[]): Layer;
|
|
2493
2527
|
declare function getAllChildLayersByDeletion(layers: Layer[], layer: Layer, knownChildLayers: Layer[]): Layer[];
|
|
2494
2528
|
declare function getLinkedLayersOptions(layer: Layer): _igo2_geo.LayersLink;
|
|
2495
|
-
declare function findLayerByLinkId(layers: Layer[], id:
|
|
2529
|
+
declare function findLayerByLinkId(layers: Layer[], id: LayerId): Layer;
|
|
2496
2530
|
declare function getLayersByDeletion(layers: Layer[], links: LayersLinkProperties[]): Layer[];
|
|
2497
2531
|
declare function handleLayerPropertyChange(layers: AnyLayer[], change: LayerWatcherChange, viewController: MapViewController): void;
|
|
2498
2532
|
|
|
@@ -2834,37 +2868,6 @@ declare class WakeLockButtonComponent {
|
|
|
2834
2868
|
static ɵcmp: i0.ɵɵComponentDeclaration<WakeLockButtonComponent, "igo-wake-lock-button", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "enabled": { "alias": "enabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
2835
2869
|
}
|
|
2836
2870
|
|
|
2837
|
-
declare class LayerService {
|
|
2838
|
-
private http;
|
|
2839
|
-
private styleService;
|
|
2840
|
-
private dataSourceService;
|
|
2841
|
-
private messageService;
|
|
2842
|
-
private geoNetworkService;
|
|
2843
|
-
private authInterceptor;
|
|
2844
|
-
unavailableLayers: AnyLayerItemOptions[];
|
|
2845
|
-
createLayers(layersOption: AnyLayerOptions[], contextUri?: string): Observable<(AnyLayer | undefined)[]>;
|
|
2846
|
-
createLayer(layerOptions: AnyLayerItemOptions): Layer;
|
|
2847
|
-
createAsyncLayer(options: AnyLayerItemOptions, detailedContextUri?: string): Observable<Layer | undefined>;
|
|
2848
|
-
createAsyncGroup(options: LayerGroupOptions, detailedContextUri?: string): Observable<LayerGroup>;
|
|
2849
|
-
private createGroup;
|
|
2850
|
-
private createImageLayer;
|
|
2851
|
-
private createTileLayer;
|
|
2852
|
-
private createVectorLayer;
|
|
2853
|
-
private handleLegacyStyles;
|
|
2854
|
-
private createVectorTileLayer;
|
|
2855
|
-
private applyMapboxStyle;
|
|
2856
|
-
private getStuff;
|
|
2857
|
-
private getAbsoluteUrl;
|
|
2858
|
-
createAsyncIdbLayers(contextUri?: string): Observable<Layer[]>;
|
|
2859
|
-
deleteUnavailableLayers(anyLayerOptions: AnyLayerItemOptions): void;
|
|
2860
|
-
sourceOptionsWithParams(sourceOptions: AnyDataSourceOptions): sourceOptions is AnyDataSourceOptionsWithParams;
|
|
2861
|
-
sourceOptionsWithLayer(sourceOptions: AnyDataSourceOptions): sourceOptions is ArcGISRestDataSourceOptions | WMTSDataSourceOptions;
|
|
2862
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LayerService, never>;
|
|
2863
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LayerService>;
|
|
2864
|
-
}
|
|
2865
|
-
|
|
2866
|
-
declare const LAYER = "Layer";
|
|
2867
|
-
|
|
2868
2871
|
declare class BaseLayersSwitcherComponent implements AfterViewInit, OnDestroy {
|
|
2869
2872
|
private mediaService;
|
|
2870
2873
|
readonly map: i0.InputSignal<IgoMap>;
|
|
@@ -4640,11 +4643,11 @@ declare class DrawComponent implements OnInit, OnDestroy {
|
|
|
4640
4643
|
geometryType: typeof GeometryType;
|
|
4641
4644
|
readonly map: i0.InputSignal<IgoMap>;
|
|
4642
4645
|
readonly stores: i0.ModelSignal<FeatureStore<FeatureWithDraw>[]>;
|
|
4643
|
-
readonly drawControls: i0.ModelSignal<[
|
|
4646
|
+
readonly drawControls: i0.ModelSignal<[LayerId, DrawControl][]>;
|
|
4644
4647
|
readonly activeDrawingLayer: i0.ModelSignal<VectorLayer>;
|
|
4645
4648
|
readonly activeLayerChange: i0.OutputEmitterRef<VectorLayer>;
|
|
4646
|
-
readonly drawControlsEvent: i0.OutputEmitterRef<[
|
|
4647
|
-
readonly layersIDEvent: i0.OutputEmitterRef<
|
|
4649
|
+
readonly drawControlsEvent: i0.OutputEmitterRef<[LayerId, DrawControl][]>;
|
|
4650
|
+
readonly layersIDEvent: i0.OutputEmitterRef<LayerId>;
|
|
4648
4651
|
fillColor: string;
|
|
4649
4652
|
strokeColor: string;
|
|
4650
4653
|
strokeWidth: number;
|
|
@@ -6010,7 +6013,6 @@ declare abstract class Layer extends LayerBase {
|
|
|
6010
6013
|
link?: Linked;
|
|
6011
6014
|
linkMaster?: Linked;
|
|
6012
6015
|
private resolution$$;
|
|
6013
|
-
get id(): string;
|
|
6014
6016
|
get visible(): boolean;
|
|
6015
6017
|
set visible(value: boolean);
|
|
6016
6018
|
get maxResolution(): number;
|
|
@@ -6517,8 +6519,8 @@ declare class ExportButtonComponent {
|
|
|
6517
6519
|
declare const RADIUS_NAME = "rad";
|
|
6518
6520
|
interface ExportOptions {
|
|
6519
6521
|
format?: AnyExportFormat;
|
|
6520
|
-
layers:
|
|
6521
|
-
layersWithSelection?:
|
|
6522
|
+
layers: LayerId[];
|
|
6523
|
+
layersWithSelection?: LayerId[];
|
|
6522
6524
|
name?: string;
|
|
6523
6525
|
combineLayers?: boolean;
|
|
6524
6526
|
separator?: boolean;
|
|
@@ -6611,8 +6613,8 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
|
|
|
6611
6613
|
private computeProjections;
|
|
6612
6614
|
getLayerTitleById(id: any): string;
|
|
6613
6615
|
layerHasSelectedFeatures(layer: Layer): boolean;
|
|
6614
|
-
onlySelected(event: MatSlideToggleChange, id:
|
|
6615
|
-
onlySelectedClick(event: any, id:
|
|
6616
|
+
onlySelected(event: MatSlideToggleChange, id: LayerId): void;
|
|
6617
|
+
onlySelectedClick(event: any, id: LayerId): void;
|
|
6616
6618
|
inLayersIdToExportSelectionOnly(layer: Layer): boolean;
|
|
6617
6619
|
ngOnDestroy(): void;
|
|
6618
6620
|
private handlePreviousLayerSpecs;
|
|
@@ -11080,7 +11082,7 @@ declare class ExportService {
|
|
|
11080
11082
|
private getFeaturesFromMap;
|
|
11081
11083
|
private getFeaturesFromWorkspace;
|
|
11082
11084
|
getFeatures(map: IgoMap, layer: Layer, data: ExportOptions, store: WorkspaceStore): Observable<OlFeature[]>;
|
|
11083
|
-
getWorkspaceByLayerId(id:
|
|
11085
|
+
getWorkspaceByLayerId(id: LayerId, store: WorkspaceStore): Workspace;
|
|
11084
11086
|
getGeomTypes(features: OlFeature[], format?: AnyExportFormat): GeometryCollection[];
|
|
11085
11087
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExportService, never>;
|
|
11086
11088
|
static ɵprov: i0.ɵɵInjectableDeclaration<ExportService>;
|
|
@@ -11880,4 +11882,4 @@ declare function provideInteractiveSelectionFormWidget(): {
|
|
|
11880
11882
|
};
|
|
11881
11883
|
|
|
11882
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 };
|
|
11883
|
-
export type { AddedChangeEmitter, AddedChangeGroupEmitter, AnyBaseOgcFilterOptions, AnyDataSource, AnyDataSourceOptions, AnyDataSourceOptionsWithParams, AnyEventName, AnyExportFormat, AnyLayer, AnyLayerBase, AnyLayerItemOptions, AnyLayerOptions, AnyPropertyOptions, AnyWorkspace, ArcGISRestCapabilitiesLayer, ArcGISRestDataSourceOptions, ArcGISRestDataSourceOptionsParams, ArcGISRestImageDataSourceOptions, BaseDirectionsSourceOptionsProfile, BaseDirectionsSourceOptionsProfileAuthorization, Buffer, CartoDataSourceOptions, CatalogItem, CatalogItemGroup, CatalogItemLayer, CatalogItemState, CatalogQueryFormatTypes, CatalogServiceOptions, ClusterDataSourceOptions, ClusterParam, ClusterRange, CollectCatalogItemsFn, CommonVectorStyleOptions, CoordinatesData, CoordinatesResponse, CoordinatesReverseData, CoordinatesReverseResponse, CreateStyle, DataSourceOptions, DatasToIDB, DatasourceEvent, DialogData, DirectionOptions, DirectionSourceFeature, Directions, DirectionsGeometry, DirectionsSourceOptions, DownloadDataSourceOptions, DownloadOptions, Draw, DrawControlOptions, DrawOptions, DrawingMatDialogData, DrawingStyle, EditionOptions, EditionWorkspaceOptions, EnvironmentOptions, ExportOgreFormat, ExportOptions, Feature, FeatureCommonVectorStyleOptions, FeatureDataSourceOptions, FeatureFormSubmitEvent, FeatureGeometry, FeatureMeta, FeatureStoreDrawStrategyOptions, FeatureStoreInMapExtentStrategyOptions, FeatureStoreInMapResolutionStrategyOptions, FeatureStoreLoadingLayerStrategyOptions, FeatureStoreLoadingStrategyOptions, FeatureStoreMeasureStrategyOptions, FeatureStoreOptions, FeatureStorePropertyTypeStrategyOptions, FeatureStoreSearchIndexStrategyOptions, FeatureStoreSelectionStrategyOptions, FeatureStoreStrategyOptions, FeatureWithDirections, FeatureWithDirectionsProperties, FeatureWithDraw, FeatureWithDrawProperties, FeatureWithMeasure, FeatureWithMeasureProperties, FeatureWithStep, FeatureWithStepProperties, FeatureWithStop, FeatureWithStopProperties, FeatureWorkspaceOptions, ForcedProperty, FormattedStep, GeoDBData, GeoDataToIDB, GeoJSONGeometry, GeoServiceDefinition, GeoWorkspaceOptions, GeoWorkspaceQueryOptions, GeolocationBuffer, GeolocationOptions, GeometryCollection, GeometryFormFieldInputs, HomeExtentButtonOptions, ICatalog, IChercheData, IChercheResponse, IChercheReverseData, IChercheReverseResponse, ICompositeCatalog, ILayerData, ILayerDataHighlight, ILayerDataSource, ILayerItemResponse, ILayerSearchSourceOptions, ILayerServiceResponse, IOfflineOptions, IOgcFiltersOptionSaveable, IOgcInterfaceFilterOptions, ISearchSourceParams, IdbInfo, IgoDomSelector, IgoLabel, IgoLogicalArrayOptions, IgoOgcFilterObject, IgoOgcSelector, IgoStep, IgoStyle, IgoStyleBase, ImageLayerOptions, ImportExportServiceOptions, InputProjections, ItemStyleOptions, LayerConfig, LayerDBData, LayerGroupOptions, LayerListControlsOptions, LayerMatDialogData, LayerOptions, LayerOptionsBase, LayerSecurityOptions, LayerToolMode, LayerType, LayerViewerOptions, LayersLink, LayersLinkProperties, Legend, LegendMapViewOptions, LegendOptions, MVTDataSourceOptions, MapAttributionOptions, MapControlsOptions, MapExtent, MapGeolocationControllerOptions, MapGeolocationState, MapOptions, MapScaleLineOptions, MapViewControllerOptions, MapViewOptions, MapViewState, MapboxStyle, Measure, MeasurerDialogData, MetadataLayerOptions, MetadataOptions, ModifyControlOptions, NominatimData, OSMDataSourceOptions, OgcAutocomplete, OgcCheckbox, OgcFilter, OgcFilterAttributeOptions, OgcFilterConditionsArrayOptions, OgcFilterDuringOptions, OgcFilterEqualToOptions, OgcFilterGreaterLessOptions, OgcFilterIsBetweenOptions, OgcFilterIsLikeOptions, OgcFilterIsNullOptions, OgcFilterSpatialOptions, OgcFilterableDataSource, OgcFilterableDataSourceOptions, OgcFiltersOptions, OgcInterfaceFilterOptions, OgcPushButton, OgcRadioButton, OgcSelect, OgcSelectorBundle, OptionsApiOptions, OsrmDirectionsSourceOptions, OsrmIntersection, OsrmLane, OsrmRouteLeg, OsrmRouteStep, OsrmStepManeuver, OsrmWaypoint, OutputLayerLegend, OverlayStyleOptions, PreloadOptions, PrintOptions, Projection, ProjectionsLimitationsOptions, QueryOptions, QueryUrlData, QueryableDataSource, QueryableDataSourceOptions, RelationOptions, Research, ReverseSearch, ReverseSearchOptions, SearchMeta, SearchResult, SearchSourceFeature, SearchSourceOptions, SearchSourceSettings, SelectorGroup, SettingOptions, SimpleGetOptions, SliceControlOptions, SliderOptionsInterface, SourceFieldsOptionsParams, SourceFieldsValidationParams, SourceProposal, SpatialFilterOptions, SpatialFilterThematic, Stop, StoreAndDrawControl, StoredQueriesData, StoredQueriesFields, StoredQueriesResponse, StoredQueriesReverseData, StoredQueriesReverseResponse, StoredQueriesReverseSearchSourceOptions, StoredQueriesSearchSourceOptions, StyleByAttribute, StyleListOptions, StyleModalData, TextPdfSizeAndMargin, TextSearch, TextSearchOptions, TileArcGISRestDataSourceOptions, TileDebugDataSourceOptions, TileGridOptions, TileLayerOptions, TimeFilterOptions, TimeFilterableDataSource, TimeFilterableDataSourceOptions, TooltipContent, TypeCapabilitiesStrings, TypeCatalogStrings, VectorAnimation, VectorLayerOptions, VectorTileLayerOptions, WFSDataSourceOptions, WFSDataSourceOptionsParams, WFSWriteGetFeatureOptions, WMSDataSourceOptions, WMSDataSourceOptionsParams, WMTSDataSourceOptions, WebSocketDataSourceOptions, WfsWorkspaceOptions, WorkspaceData, XYZDataSourceOptions, ZindexPropertyOptions, searchIndexOptions };
|
|
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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/geo",
|
|
3
|
-
"version": "20.1.0-next.
|
|
3
|
+
"version": "20.1.0-next.2",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"@angular/material-moment-adapter": "^20.0.0",
|
|
40
40
|
"@angular/material": "^20.0.0",
|
|
41
41
|
"@angular/platform-browser": "^20.0.0",
|
|
42
|
-
"@igo2/auth": "^20.1.0-next.
|
|
43
|
-
"@igo2/common": "^20.1.0-next.
|
|
44
|
-
"@igo2/core": "^20.1.0-next.
|
|
45
|
-
"@igo2/utils": "^20.1.0-next.
|
|
42
|
+
"@igo2/auth": "^20.1.0-next.2",
|
|
43
|
+
"@igo2/common": "^20.1.0-next.2",
|
|
44
|
+
"@igo2/core": "^20.1.0-next.2",
|
|
45
|
+
"@igo2/utils": "^20.1.0-next.2",
|
|
46
46
|
"@mat-datetimepicker/core": "^16.0.0",
|
|
47
47
|
"@turf/boolean-intersects": "^7.2.0",
|
|
48
48
|
"@turf/buffer": "^7.2.0",
|