@igo2/geo 20.1.0-next.2 → 20.1.0-next.7
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 +896 -681
- package/fesm2022/igo2-geo.mjs.map +1 -1
- package/index.d.ts +39 -14
- package/locale/en.geo.json +5 -0
- package/locale/fr.geo.json +5 -0
- package/package.json +10 -9
package/index.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ import olSourceCluster from 'ol/source/Cluster';
|
|
|
11
11
|
import olSource from 'ol/source/Source';
|
|
12
12
|
import olSourceVector from 'ol/source/Vector';
|
|
13
13
|
import { Units } from 'ol/control/ScaleLine';
|
|
14
|
+
import * as _igo2_common_entity from '@igo2/common/entity';
|
|
15
|
+
import { BaseEntityTableColumn, EntityStore, EntityKey, EntityStoreOptions, EntityStoreStrategyOptions, EntityStoreStrategy, EntityTableTemplate, EntityTableComponent, EntityTableColumn, EntityState, EntityTableColumnRenderer, EntityRecord, EntityTableButton, EntityStoreFilterCustomFuncStrategy } from '@igo2/common/entity';
|
|
14
16
|
import OlGeometry, { Type } from 'ol/geom/Geometry';
|
|
15
17
|
import { Preset, Tokenizer, Encoders, Document } from 'flexsearch';
|
|
16
18
|
import { SubjectStatus, Watcher, TimeFrame, resolveDate } from '@igo2/utils';
|
|
@@ -46,8 +48,6 @@ import { HttpClient, HttpParameterCodec } from '@angular/common/http';
|
|
|
46
48
|
import { Extent } from 'ol/extent';
|
|
47
49
|
import olProjection from 'ol/proj/Projection';
|
|
48
50
|
import { UntypedFormGroup, UntypedFormControl, FormControl, ControlValueAccessor, NgControl } from '@angular/forms';
|
|
49
|
-
import * as _igo2_common_entity from '@igo2/common/entity';
|
|
50
|
-
import { EntityStore, EntityKey, EntityStoreOptions, EntityStoreStrategyOptions, EntityStoreStrategy, EntityTableTemplate, EntityTableComponent, EntityTableColumn, EntityState, EntityTableColumnRenderer, EntityRecord, EntityTableButton, EntityStoreFilterCustomFuncStrategy } from '@igo2/common/entity';
|
|
51
51
|
import { Position, Geometry, GeoJsonGeometryTypes } from 'geojson';
|
|
52
52
|
import { ConfigService } from '@igo2/core/config';
|
|
53
53
|
import { StorageService } from '@igo2/core/storage';
|
|
@@ -72,6 +72,8 @@ import { MatTreeNestedDataSource, MatTreeFlattener, MatTreeFlatDataSource } from
|
|
|
72
72
|
import * as olStyle from 'ol/style';
|
|
73
73
|
import { Form, FormComponent, FormFieldInputs } from '@igo2/common/form';
|
|
74
74
|
import { ThemePalette, MatOption } from '@angular/material/core';
|
|
75
|
+
import * as i4 from '@angular/material/dialog';
|
|
76
|
+
import { MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
75
77
|
import { MatSlideToggleChange } from '@angular/material/slide-toggle';
|
|
76
78
|
import { Workspace, WorkspaceStore, WorkspaceOptions } from '@igo2/common/workspace';
|
|
77
79
|
import { TreeFlatNode, TreeDropEvent, DropPermission, DragAndDropDirective } from '@igo2/common/drag-drop';
|
|
@@ -87,8 +89,6 @@ import { FlexibleState } from '@igo2/common/flexible';
|
|
|
87
89
|
import * as i1$1 from '@igo2/common/widget';
|
|
88
90
|
import { WidgetComponent, Widget, WidgetService } from '@igo2/common/widget';
|
|
89
91
|
import { OnUpdateInputs } from '@igo2/common/dynamic-component';
|
|
90
|
-
import * as i4 from '@angular/material/dialog';
|
|
91
|
-
import { MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
92
92
|
import { LanguageService } from '@igo2/core/language';
|
|
93
93
|
import { SafeResourceUrl } from '@angular/platform-browser';
|
|
94
94
|
import { Toolbox } from '@igo2/common/tool';
|
|
@@ -296,7 +296,7 @@ interface DataSourceOptions {
|
|
|
296
296
|
relations?: RelationOptions[];
|
|
297
297
|
fieldNameGeometry?: string;
|
|
298
298
|
}
|
|
299
|
-
interface SourceFieldsOptionsParams {
|
|
299
|
+
interface SourceFieldsOptionsParams extends Omit<BaseEntityTableColumn, 'title'> {
|
|
300
300
|
name: any;
|
|
301
301
|
alias?: any;
|
|
302
302
|
values?: any;
|
|
@@ -304,11 +304,10 @@ interface SourceFieldsOptionsParams {
|
|
|
304
304
|
allowedOperatorsType?: OgcFilterOperatorType;
|
|
305
305
|
step?: number;
|
|
306
306
|
relation?: RelationOptions;
|
|
307
|
-
type?: number | number[] | string | string[] | boolean | Date;
|
|
307
|
+
type?: 'number' | 'number[]' | 'string' | 'string[]' | 'boolean' | 'Date' | 'list' | 'autocomplete';
|
|
308
308
|
primary?: boolean;
|
|
309
309
|
visible?: boolean;
|
|
310
310
|
validation?: SourceFieldsValidationParams;
|
|
311
|
-
linkColumnForce?: string;
|
|
312
311
|
multiple?: boolean;
|
|
313
312
|
tooltip?: string;
|
|
314
313
|
searchIndex?: searchIndexOptions;
|
|
@@ -6409,7 +6408,7 @@ declare class LayerViewerBottomActionsComponent {
|
|
|
6409
6408
|
raiseSelection(): void;
|
|
6410
6409
|
lowerSelection(): void;
|
|
6411
6410
|
changeOpacity(event: MatSliderChange): void;
|
|
6412
|
-
toggleSelectionVisibility(): void;
|
|
6411
|
+
toggleSelectionVisibility(layers?: AnyLayer[], visibility?: boolean): void;
|
|
6413
6412
|
private isLowerable;
|
|
6414
6413
|
private isRaisable;
|
|
6415
6414
|
private getRecipientOfVisibleLayer;
|
|
@@ -6508,6 +6507,19 @@ declare class IgoDownloadModule {
|
|
|
6508
6507
|
static ɵinj: i0.ɵɵInjectorDeclaration<IgoDownloadModule>;
|
|
6509
6508
|
}
|
|
6510
6509
|
|
|
6510
|
+
declare class EpsgSelectorModalComponent {
|
|
6511
|
+
dialogRef: MatDialogRef<EpsgSelectorModalComponent, any>;
|
|
6512
|
+
data: {
|
|
6513
|
+
fileName: string;
|
|
6514
|
+
projections: InputProjections[];
|
|
6515
|
+
};
|
|
6516
|
+
selectedEpsg?: string;
|
|
6517
|
+
cancel(): void;
|
|
6518
|
+
confirm(): void;
|
|
6519
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EpsgSelectorModalComponent, never>;
|
|
6520
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EpsgSelectorModalComponent, "igo-epsg-selector-modal", never, {}, {}, never, never, true, never>;
|
|
6521
|
+
}
|
|
6522
|
+
|
|
6511
6523
|
declare class ExportButtonComponent {
|
|
6512
6524
|
readonly layer: i0.InputSignal<Layer>;
|
|
6513
6525
|
readonly color: i0.InputSignal<string>;
|
|
@@ -6586,7 +6598,6 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
|
|
|
6586
6598
|
private clientSideFileSizeMax;
|
|
6587
6599
|
fileSizeMb: number;
|
|
6588
6600
|
projections$: BehaviorSubject<InputProjections[]>;
|
|
6589
|
-
private projectionsConstraints;
|
|
6590
6601
|
popupChecked: boolean;
|
|
6591
6602
|
private configFormats;
|
|
6592
6603
|
private previousLayerSpecs$;
|
|
@@ -6610,7 +6621,6 @@ declare class ImportExportComponent implements OnDestroy, OnInit {
|
|
|
6610
6621
|
set popupAllowed(value: boolean);
|
|
6611
6622
|
constructor();
|
|
6612
6623
|
ngOnInit(): void;
|
|
6613
|
-
private computeProjections;
|
|
6614
6624
|
getLayerTitleById(id: any): string;
|
|
6615
6625
|
layerHasSelectedFeatures(layer: Layer): boolean;
|
|
6616
6626
|
onlySelected(event: MatSlideToggleChange, id: LayerId): void;
|
|
@@ -6656,10 +6666,12 @@ declare class DropGeoFileDirective extends DragAndDropDirective implements OnIni
|
|
|
6656
6666
|
private messageService;
|
|
6657
6667
|
private layerService;
|
|
6658
6668
|
private confirmDialogService;
|
|
6669
|
+
private dialog;
|
|
6659
6670
|
private epsgCode$$;
|
|
6660
6671
|
private filesDropped$$;
|
|
6661
6672
|
get map(): IgoMap;
|
|
6662
6673
|
readonly contextUri: i0.InputSignal<string>;
|
|
6674
|
+
readonly projectionsLimitations: i0.InputSignal<ProjectionsLimitationsOptions>;
|
|
6663
6675
|
ngOnInit(): void;
|
|
6664
6676
|
ngOnDestroy(): void;
|
|
6665
6677
|
onDragOver(evt: any): void;
|
|
@@ -6668,18 +6680,19 @@ declare class DropGeoFileDirective extends DragAndDropDirective implements OnIni
|
|
|
6668
6680
|
private onFilesDropped;
|
|
6669
6681
|
private onFileImportSuccess;
|
|
6670
6682
|
private onFileImportError;
|
|
6683
|
+
private openEPSGModal;
|
|
6671
6684
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropGeoFileDirective, never>;
|
|
6672
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropGeoFileDirective, "[igoDropGeoFile]", never, { "contextUri": { "alias": "contextUri"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6685
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropGeoFileDirective, "[igoDropGeoFile]", never, { "contextUri": { "alias": "contextUri"; "required": false; "isSignal": true; }; "projectionsLimitations": { "alias": "projectionsLimitations"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6673
6686
|
}
|
|
6674
6687
|
|
|
6675
|
-
declare const IMPORT_EXPORT_DIRECTIVES: readonly [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent];
|
|
6688
|
+
declare const IMPORT_EXPORT_DIRECTIVES: readonly [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent, typeof EpsgSelectorModalComponent];
|
|
6676
6689
|
/**
|
|
6677
6690
|
* @deprecated import the components directly or IMPORT_EXPORT_DIRECTIVES for the set
|
|
6678
6691
|
*/
|
|
6679
6692
|
declare class IgoImportExportModule {
|
|
6680
6693
|
static forRoot(): ModuleWithProviders<IgoImportExportModule>;
|
|
6681
6694
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgoImportExportModule, never>;
|
|
6682
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoImportExportModule, never, [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent], [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent]>;
|
|
6695
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IgoImportExportModule, never, [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent, typeof EpsgSelectorModalComponent], [typeof ImportExportComponent, typeof DropGeoFileDirective, typeof ExportButtonComponent, typeof EpsgSelectorModalComponent]>;
|
|
6683
6696
|
static ɵinj: i0.ɵɵInjectorDeclaration<IgoImportExportModule>;
|
|
6684
6697
|
}
|
|
6685
6698
|
|
|
@@ -11059,6 +11072,7 @@ declare class ExportNothingToExportError extends ExportError {
|
|
|
11059
11072
|
declare class ExportService {
|
|
11060
11073
|
private config;
|
|
11061
11074
|
private httpClient;
|
|
11075
|
+
private tableDataService;
|
|
11062
11076
|
static ogreFormats: Record<ExportOgreFormat, string>;
|
|
11063
11077
|
static noOgreFallbacks: Partial<AnyExportFormat[]>;
|
|
11064
11078
|
private ogreUrl;
|
|
@@ -11084,6 +11098,16 @@ declare class ExportService {
|
|
|
11084
11098
|
getFeatures(map: IgoMap, layer: Layer, data: ExportOptions, store: WorkspaceStore): Observable<OlFeature[]>;
|
|
11085
11099
|
getWorkspaceByLayerId(id: LayerId, store: WorkspaceStore): Workspace;
|
|
11086
11100
|
getGeomTypes(features: OlFeature[], format?: AnyExportFormat): GeometryCollection[];
|
|
11101
|
+
/**
|
|
11102
|
+
* Checks if the given payload exceeds the OGRE maximum allowed size (2MB).
|
|
11103
|
+
* @param payload The GeoJSON payload as a string.
|
|
11104
|
+
* @returns An Observable that throws an error if the payload is too large, or undefined if the size is acceptable.
|
|
11105
|
+
*/
|
|
11106
|
+
private checkOgrePayloadSize;
|
|
11107
|
+
/**
|
|
11108
|
+
* Transform features to an export-friendly format (titles and domain values).
|
|
11109
|
+
*/
|
|
11110
|
+
transformFeaturesToExportFormat(features: OlFeature<OlGeometry>[], layer: Layer): Promise<OlFeature<OlGeometry>[]>;
|
|
11087
11111
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExportService, never>;
|
|
11088
11112
|
static ɵprov: i0.ɵɵInjectableDeclaration<ExportService>;
|
|
11089
11113
|
}
|
|
@@ -11132,6 +11156,7 @@ declare class ImportService {
|
|
|
11132
11156
|
private importFileWithOgre;
|
|
11133
11157
|
private parseFeaturesFromFile;
|
|
11134
11158
|
private parseFeaturesFromGeoJSON;
|
|
11159
|
+
computeProjections(limitations: ProjectionsLimitationsOptions): InputProjections[];
|
|
11135
11160
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImportService, never>;
|
|
11136
11161
|
static ɵprov: i0.ɵɵInjectableDeclaration<ImportService>;
|
|
11137
11162
|
}
|
|
@@ -11881,5 +11906,5 @@ declare function provideInteractiveSelectionFormWidget(): {
|
|
|
11881
11906
|
deps: (typeof WidgetService)[];
|
|
11882
11907
|
};
|
|
11883
11908
|
|
|
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 };
|
|
11909
|
+
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, ResponseType, RotationButtonComponent, RoutesFeatureStore, SEARCH_DIRECTIVES, SEARCH_RESULTS_DIRECTIVES, SEARCH_TYPES, STYLELIST_OPTIONS, SearchBarComponent, SearchPointerSummaryDirective, SearchResultAddButtonComponent, SearchResultMode, SearchResultsComponent, SearchSelectorComponent, SearchService, SearchSettingsComponent, SearchSource, SearchSourceKind, SearchSourceService, SliceControl, SourceDirectionsType, SpatialFilterItemComponent, SpatialFilterItemType, SpatialFilterListComponent, SpatialFilterQueryType, SpatialFilterService, SpatialFilterType, SpatialFilterTypeComponent, StepsFeatureStore, StopsFeatureStore, StopsStore, StoredQueriesReverseSearchSource, StoredQueriesSearchSource, StyleListService, StyleModalDrawingComponent, StyleModalLayerButtonComponent, StyleModalLayerComponent, StyleService, SwipeControlComponent, TileArcGISRestDataSource, TileDebugDataSource, TileLayer, TileWatcher, TimeFilterButtonComponent, TimeFilterFormComponent, TimeFilterItemComponent, TimeFilterListBindingDirective, TimeFilterListComponent, TimeFilterService, TimeFilterStyle, TimeFilterType, ToastComponent, TooltipType, TrackFeatureButtonComponent, TypeCapabilities, TypeCatalog, VectorLayer, VectorTileLayer, VectorWatcher, WFSDataSource, WFSService, WMSDataSource, WMTSDataSource, WakeLockButtonComponent, WebSocketDataSource, WfsWorkspace, WfsWorkspaceService, WktService, WorkspaceSearchSource, WorkspaceSelectorDirective, WorkspaceUpdatorDirective, XYZDataSource, ZoomButtonComponent, addLayerAndFeaturesStyledToMap, addLayerAndFeaturesToMap, addLinearRingToOlPolygon, addOrRemoveLayer, addRouteToRoutesFeatureStore, addStopToStopsFeatureStore, addStopToStore, bufferOlGeometry, buildUrl, cadastreSearchSourceFactory, checkWfsParams, clearOlGeometryMidpoints, computeBestAreaUnit, computeBestLengthUnit, computeLayerTitleFromFile, computeMVTOptionsOnHover, computeOlFeatureExtent, computeOlFeaturesDiff, computeOlFeaturesExtent, computeProjectionsConstraints, computeRelativePosition, computeStopsPosition, computeTermSimilarity, convertDDToDMS, createDefaultTileGrid, createDrawHoleInteractionStyle, createDrawInteractionStyle, createFilterInMapExtentOrResolutionStrategy, createInteractionStyle, createMeasureInteractionStyle, createMeasureLayerStyle, createOlTooltipAtPoint, createOlTooltipDrawAtPoint, createOverlayDefaultStyle, createOverlayLayer, createOverlayLayerStyle, createOverlayMarkerStyle, createTableTemplate, ctrlKeyDown, defaultCoordinatesSearchResultFormatterFactory, defaultEpsg, defaultFieldNameGeometry, defaultIChercheSearchResultFormatterFactory, defaultMaxFeatures, defaultWfsVersion, detectFileEPSG, directionsStyle, doesOlGeometryIntersects, entitiesToRowData, exportToCSV, featureFromOl, featureRandomStyle, featureRandomStyleFunction, featureToOl, featureToSearchResult, featuresAreOutOfView, featuresAreTooDeepInView, findDiff, findLayerByLinkId, findParentId, formatDistance, formatDuration, formatMeasure, formatScale, formatStep, formatWFSQueryString, generateArcgisRestIdFromSourceOptions, generateFeatureIdFromSourceOptions, generateId, generateIdFromSourceOptions, generateWMSIdFromSourceOptions, generateWMTSIdFromSourceOptions, generateWfsIdFromSourceOptions, generateXYZIdFromSourceOptions, getAllChildLayersByDeletion, getAllChildLayersByProperty, getCommonVectorSelectedStyle, getCommonVectorStyle, getFileExtension, getFormatFromOptions, getGeoServiceAction, getLayerOptionIdentifier, getLayersByDeletion, getLayersLegends, getLinkedLayersOptions, getMousePositionFromOlGeometryEvent, getOlTooltipAtCenter, getOlTooltipsAtMidpoints, getResolutionFromScale, getRootParentByDeletion, getRootParentByProperty, getRowsInMapExtent, getSaveableOgcParams, getScaleFromResolution, getSelectedOnly, getTooltipsOfOlGeometry, gmlRegex, handleFileExportError, handleFileExportSuccess, handleFileImportError, handleFileImportSuccess, handleInvalidFileImportError, handleLayerPropertyChange, handleNothingToExportError, handleNothingToImportError, handleOgreServerImportError, handleSRSImportError, handleSizeFileImportError, handleUnreadbleFileImportError, hideOlFeature, hoverFeatureMarkerStyle, ichercheReverseSearchSourceFactory, ichercheSearchSourceFactory, ilayerSearchResultFormatterFactory, ilayerSearchSourceFactory, initRoutesFeatureStore, initStepsFeatureStore, initStopsFeatureStore, interactiveSelectionFormWidgetFactory, isBaseLayer, isBaseLayerLinked, isCsvExport, isLayerGroup, isLayerGroupOptions, isLayerItem, isLayerItemOptions, isLayerLinked, isLayerLinkedOptions, isLayerLinkedTogether, isLinkMaster, isSaveableLayer, jsonRegex, layerFeatureIsQueryable, layerIsQueryable, lonLatConversion, mapExtentStrategyActiveToolTip, measureOlGeometry, measureOlGeometryArea, measureOlGeometryLength, mergeLayersOptions, metersToFeet, metersToKilometers, metersToMiles, metersToUnit, moveToOlFeatures, mtmZoneFromLonLat, noElementSelected, nominatimSearchSourceFactory, ogcFilterWidgetFactory, olLayerFeatureIsQueryable, olLayerIsQueryable, olStyleToBasicIgoStyle, optionsApiFactory, osrmDirectionsSourcesFactory, pointerPositionSummaryMarkerStyle, provideCadastreSearchSource, provideCoordinatesReverseSearchSource, provideDefaultCoordinatesSearchResultFormatter, provideDefaultIChercheSearchResultFormatter, provideDirection, provideIChercheReverseSearchSource, provideIChercheSearchSource, provideILayerSearchResultFormatter, provideILayerSearchSource, provideInteractiveSelectionFormWidget, provideNominatimSearchSource, provideOffline, provideOgcFilterWidget, provideOptionsApi, provideOsrmDirectionsSource, provideQuerySearchSource, provideSearch, provideSearchSourceService, provideStoredQueriesReverseSearchSource, provideStoredQueriesSearchSource, provideStyleListLoader, provideStyleListOptions, provideWorkspaceSearchSource, querySearchSourceFactory, removeStopFromStore, renderFeatureFromOl, roundCoordTo, roundCoordToString, scaleExtent, searchSourceServiceFactory, setRowsInMapExtent, setSelectedOnly, sliceOlGeometry, sliceOlPolygon, sortLayersByZindex, sourceCanReverseSearch, sourceCanReverseSearchAsSummary, sourceCanSearch, squareMetersToAcres, squareMetersToHectares, squareMetersToSquareFeet, squareMetersToSquareKilometers, squareMetersToSquareMiles, squareMetersToUnit, standardizeUrl, storedqueriesReverseSearchSourceFactory, storedqueriesSearchSourceFactory, stringToLonLat, translateManeuverBearing, translateManeuverModifier, tryAddLoadingStrategy, tryAddSelectionStrategy, tryBindStoreLayer, updateOlGeometryCenter, updateOlGeometryMidpoints, updateOlTooltipAtCenter, updateOlTooltipDrawAtCenter, updateOlTooltipsAtMidpoints, updateOlTooltipsDrawAtMidpoints, updateStoreSorting, utmZoneFromLonLat, viewStatesAreEqual, withCadastreSource, withCoordinatesReverseSource, withIChercheReverseSource, withIChercheSource, withILayerSource, withNominatimSource, withOsrmSource, withStoredQueriesReverseSource, withStoredQueriesSource, withWorkspaceSource, workspaceSearchSourceFactory, zoneMtm, zoneUtm };
|
|
11885
11910
|
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/locale/en.geo.json
CHANGED
|
@@ -70,6 +70,11 @@
|
|
|
70
70
|
"ogreServer": {
|
|
71
71
|
"title": "Ogre server error 500",
|
|
72
72
|
"text": "Error in convert to geojson. Maybe file is too big, try to import that file in geojson format"
|
|
73
|
+
},
|
|
74
|
+
"epsgUndefined": {
|
|
75
|
+
"text": "The projection for the file <strong> {{fileName}} </strong> could not be detected automatically. Please select a projection to continue the upload.",
|
|
76
|
+
"title": "Coordinate System (Projection)",
|
|
77
|
+
"note": "If your file's projection is not in the list, you must convert your file to a compatible coordinate system."
|
|
73
78
|
}
|
|
74
79
|
},
|
|
75
80
|
"export": {
|
package/locale/fr.geo.json
CHANGED
|
@@ -70,6 +70,11 @@
|
|
|
70
70
|
"ogreServer": {
|
|
71
71
|
"title": "Erreur 500 du service Ogre",
|
|
72
72
|
"text": "Erreur de la conversion du fichier en geojson. Il est possible que le fichier soit trop volumineux, essayer de l'importer en format geojson"
|
|
73
|
+
},
|
|
74
|
+
"epsgUndefined": {
|
|
75
|
+
"text": "Le projection pour le fichier <strong> {{fileName}} </strong> n'a pas pu être détecté automatiquement. Veuillez sélectionner une projection afin de poursuivre le téléversement.",
|
|
76
|
+
"title": "Système de coordonnées (projection)",
|
|
77
|
+
"note": "Si la projection de votre fichier n’est pas dans la liste, vous devez convertir votre fichier vers un système de coordonnées compatible."
|
|
73
78
|
}
|
|
74
79
|
},
|
|
75
80
|
"export": {
|
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.7",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"homepage": "https://github.com/infra-geo-ouverte/igo2-lib#readme",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/infra-geo-ouverte/igo2-lib.git"
|
|
13
|
+
"url": "git+https://github.com/infra-geo-ouverte/igo2-lib.git",
|
|
14
|
+
"directory": "packages/geo"
|
|
14
15
|
},
|
|
15
16
|
"bugs": {
|
|
16
17
|
"url": "https://github.com/infra-geo-ouverte/igo2-lib/issues"
|
|
@@ -36,13 +37,13 @@
|
|
|
36
37
|
"@angular/common": "^20.0.0",
|
|
37
38
|
"@angular/core": "^20.0.0",
|
|
38
39
|
"@angular/forms": "^20.0.0",
|
|
39
|
-
"@angular/material-moment-adapter": "^20.0.0",
|
|
40
40
|
"@angular/material": "^20.0.0",
|
|
41
|
+
"@angular/material-moment-adapter": "^20.0.0",
|
|
41
42
|
"@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.
|
|
43
|
+
"@igo2/auth": "^20.1.0-next.7",
|
|
44
|
+
"@igo2/common": "^20.1.0-next.7",
|
|
45
|
+
"@igo2/core": "^20.1.0-next.7",
|
|
46
|
+
"@igo2/utils": "^20.1.0-next.7",
|
|
46
47
|
"@mat-datetimepicker/core": "^16.0.0",
|
|
47
48
|
"@turf/boolean-intersects": "^7.2.0",
|
|
48
49
|
"@turf/buffer": "^7.2.0",
|
|
@@ -54,13 +55,13 @@
|
|
|
54
55
|
"flexsearch": "0.7.21",
|
|
55
56
|
"html2canvas": "^1.4.1",
|
|
56
57
|
"idb": "^8.0.3",
|
|
58
|
+
"jspdf": "^4.0.0",
|
|
57
59
|
"jspdf-autotable": "^5.0.0",
|
|
58
|
-
"jspdf": "^3.0.0",
|
|
59
60
|
"jszip": "^3.10.1",
|
|
60
61
|
"moment": "^2.30.0",
|
|
61
62
|
"nosleep.js": "^0.12.0",
|
|
62
|
-
"ol-mapbox-style": "^13.1.0",
|
|
63
63
|
"ol": "10.6.0",
|
|
64
|
+
"ol-mapbox-style": "^13.1.0",
|
|
64
65
|
"proj4": "^2.15.0",
|
|
65
66
|
"rxjs": "^7.8.0",
|
|
66
67
|
"striptags": "^3.2.0",
|