@regionerne/gis-komponent 0.0.21 → 0.0.28
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/regionerne-gis-komponent.mjs +2267 -472
- package/fesm2022/regionerne-gis-komponent.mjs.map +1 -1
- package/lib/components/active-objects/activeObjects.component.d.ts +25 -3
- package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +18 -0
- package/lib/components/gis-komponent/gis-komponent.component.d.ts +17 -3
- package/lib/components/layer-selector/layer-selector.component.d.ts +25 -13
- package/lib/components/legends-list/legends-list.component.d.ts +22 -20
- package/lib/components/map-search/map-search.component.d.ts +20 -5
- package/lib/components/selected-feature-info/selected-feature-info.component.d.ts +15 -0
- package/lib/components/toolbox/toolbox.component.d.ts +50 -39
- package/lib/models/GisKomponentSettings.d.ts +20 -0
- package/lib/models/ILayer.d.ts +9 -0
- package/lib/models/ILayerGroup.d.ts +2 -8
- package/lib/models/IProfile.d.ts +9 -0
- package/lib/models/icons.constants.d.ts +5 -0
- package/lib/models/profile.d.ts +2 -0
- package/lib/services/centerPoint.service.d.ts +17 -0
- package/lib/services/confirm-dialog.service.d.ts +11 -0
- package/lib/services/conflictAnalysisSearch.service.d.ts +19 -0
- package/lib/services/currentItems.service.d.ts +3 -0
- package/lib/services/drawLayerSource.service.d.ts +4 -0
- package/lib/services/featureHelper.service.d.ts +0 -1
- package/lib/services/geometry.service.d.ts +27 -0
- package/lib/services/highlight.service.d.ts +12 -9
- package/lib/services/hoverInfoSearch.service.d.ts +24 -0
- package/lib/services/infoSearch.service.d.ts +36 -0
- package/lib/services/layerError.service.d.ts +1 -0
- package/lib/services/layerHelper.service.d.ts +6 -3
- package/lib/services/layoutService.d.ts +12 -0
- package/lib/services/overlap.service.d.ts +21 -0
- package/lib/services/printDrawLayerSource.service.d.ts +1 -2
- package/lib/services/printHelper.service.d.ts +9 -0
- package/lib/services/searchProvider.service.d.ts +29 -0
- package/lib/services/showInfo.service.d.ts +15 -0
- package/lib/services/showInfoHover.service.d.ts +11 -0
- package/lib/services/wfsSearch.service.d.ts +39 -0
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Geometry } from 'ol/geom';
|
|
2
|
+
import { SearchProviderBase } from './infoSearch.service';
|
|
3
|
+
import { FeatureCollection } from 'geojson';
|
|
4
|
+
import Filter from 'ol/format/filter/Filter';
|
|
5
|
+
import { ILayer } from '../models/ILayer';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
interface IConflictAnalysisResult {
|
|
8
|
+
layerName: string;
|
|
9
|
+
conflict: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare class ConflictAnalysisSearchProvider extends SearchProviderBase<IConflictAnalysisResult, Geometry> {
|
|
12
|
+
private _current;
|
|
13
|
+
getSearchableLayers(): ILayer[];
|
|
14
|
+
getFilter(searchValue: Geometry, layer: ILayer): Filter;
|
|
15
|
+
map(l: ILayer, f: FeatureCollection): IConflictAnalysisResult;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConflictAnalysisSearchProvider, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConflictAnalysisSearchProvider>;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import { Map } from 'ol';
|
|
2
2
|
import { IProfileDetailed } from '../models/IProfile';
|
|
3
|
+
import { GisKomponentSettings } from '../models/GisKomponentSettings';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class CurrentItemsService {
|
|
6
|
+
constructor();
|
|
5
7
|
private _map;
|
|
6
8
|
get map(): Map | undefined;
|
|
7
9
|
set map(value: Map);
|
|
8
10
|
profile: IProfileDetailed | undefined;
|
|
9
11
|
private _mapSubject;
|
|
10
12
|
map$: import("rxjs").Observable<Map>;
|
|
13
|
+
gisKomponentSettings: GisKomponentSettings;
|
|
11
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<CurrentItemsService, never>;
|
|
12
15
|
static ɵprov: i0.ɵɵInjectableDeclaration<CurrentItemsService>;
|
|
13
16
|
}
|
|
@@ -6,14 +6,18 @@ export declare class DrawLayerSourceService {
|
|
|
6
6
|
private _current;
|
|
7
7
|
private _features;
|
|
8
8
|
features$: import("rxjs").Observable<Feature<import("ol/geom").Geometry>[]>;
|
|
9
|
+
private _selectedForHighlight;
|
|
10
|
+
selectedForHighlight$: import("rxjs").Observable<Feature<import("ol/geom").Geometry>[]>;
|
|
9
11
|
source: VectorSource;
|
|
10
12
|
layer: VectorLayer<VectorSource<Feature<import("ol/geom").Geometry>>, Feature<import("ol/geom").Geometry>>;
|
|
11
13
|
private _disabled;
|
|
12
14
|
constructor();
|
|
13
15
|
private _initListener;
|
|
14
16
|
get allFeatures(): Feature[];
|
|
17
|
+
get allCleanedFeatures(): Feature[];
|
|
15
18
|
remove(id: string | number): void;
|
|
16
19
|
setFeatures(features: Feature[]): void;
|
|
20
|
+
setFeaturesSelectedForHighlight(features: Feature | Feature[]): void;
|
|
17
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrawLayerSourceService, never>;
|
|
18
22
|
static ɵprov: i0.ɵɵInjectableDeclaration<DrawLayerSourceService>;
|
|
19
23
|
}
|
|
@@ -6,7 +6,6 @@ export declare class FeatureHelperService {
|
|
|
6
6
|
private _idCounter;
|
|
7
7
|
isLocked: (feature: Feature) => boolean;
|
|
8
8
|
lock(feature: Feature): void;
|
|
9
|
-
constructor();
|
|
10
9
|
setTypeId(feature: Feature, typeId: string): void;
|
|
11
10
|
typeId: (feature: Feature) => string;
|
|
12
11
|
setId(feature: Feature): void;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GeometryService {
|
|
4
|
+
private config;
|
|
5
|
+
private _baseUrl;
|
|
6
|
+
private _http;
|
|
7
|
+
validate(wkt: string): Observable<ValidationResult>;
|
|
8
|
+
dmpValidate(wkt: string): Observable<DMPValidationResult>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GeometryService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GeometryService>;
|
|
11
|
+
}
|
|
12
|
+
export interface ValidationResult {
|
|
13
|
+
wasCorrected: boolean;
|
|
14
|
+
correctedGeometries?: string[];
|
|
15
|
+
}
|
|
16
|
+
export interface DMPValidationResult {
|
|
17
|
+
isValid: boolean;
|
|
18
|
+
wasCorrected: boolean;
|
|
19
|
+
correctionAttempts: number;
|
|
20
|
+
error: DMPValidationErrorDto;
|
|
21
|
+
correctedGeometry?: string;
|
|
22
|
+
}
|
|
23
|
+
export interface DMPValidationErrorDto {
|
|
24
|
+
code: number;
|
|
25
|
+
message: string;
|
|
26
|
+
ruleName: string;
|
|
27
|
+
}
|
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
import { Feature } from 'ol';
|
|
2
|
-
import VectorLayer from 'ol/layer/Vector';
|
|
3
|
-
import { Vector } from 'ol/source';
|
|
4
2
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class
|
|
6
|
-
|
|
3
|
+
export declare class HighlightService {
|
|
4
|
+
private _wktFormat;
|
|
7
5
|
private _zoomService;
|
|
8
|
-
private
|
|
6
|
+
private _current;
|
|
7
|
+
private readonly fadeStart;
|
|
8
|
+
private readonly fadeEnd;
|
|
9
9
|
private _highlightSource;
|
|
10
|
-
|
|
10
|
+
private _highlightLayer;
|
|
11
|
+
constructor();
|
|
11
12
|
clear(): void;
|
|
12
|
-
highlight(feature: Feature | Feature[], zoomToFeatures?: boolean): void;
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
highlight(feature: Feature | Feature[] | string, zoomToFeatures?: boolean): void;
|
|
14
|
+
private _ensureFeature;
|
|
15
|
+
private _getFadedStyle;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HighlightService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HighlightService>;
|
|
15
18
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Coordinate } from 'ol/coordinate';
|
|
2
|
+
import { SearchProviderBase } from './infoSearch.service';
|
|
3
|
+
import { FeatureCollection } from 'geojson';
|
|
4
|
+
import Filter from 'ol/format/filter/Filter';
|
|
5
|
+
import { ILayer } from '../models/ILayer';
|
|
6
|
+
import Point from 'ol/geom/Point';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
interface IHoverResult {
|
|
9
|
+
values: {
|
|
10
|
+
center: Point;
|
|
11
|
+
showValue: string;
|
|
12
|
+
}[];
|
|
13
|
+
}
|
|
14
|
+
export declare class HoverInfoSearchService extends SearchProviderBase<IHoverResult, Coordinate> {
|
|
15
|
+
private _current;
|
|
16
|
+
private geojsonFormat;
|
|
17
|
+
getSearchableLayers(): ILayer[];
|
|
18
|
+
getFilter(searchValue: Coordinate, layer: ILayer): Filter;
|
|
19
|
+
map(l: ILayer, f: FeatureCollection): IHoverResult;
|
|
20
|
+
private _getCenterPoint;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HoverInfoSearchService, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HoverInfoSearchService>;
|
|
23
|
+
}
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ILayer } from '../models/ILayer';
|
|
4
|
+
import Filter from 'ol/format/filter/Filter';
|
|
5
|
+
import { FeatureCollection } from 'geojson';
|
|
6
|
+
import { Coordinate } from 'ol/coordinate';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare abstract class SearchProviderBase<TResponse, TFilter> {
|
|
9
|
+
protected _http: HttpClient;
|
|
10
|
+
private wfsFormat;
|
|
11
|
+
private _serializer;
|
|
12
|
+
search(searchValue: TFilter, maxCount: number): Observable<TResponse[]>;
|
|
13
|
+
abstract getSearchableLayers(): ILayer[];
|
|
14
|
+
abstract getFilter(searchValue: TFilter, layer: ILayer): Filter;
|
|
15
|
+
abstract map(l: ILayer, f: FeatureCollection): TResponse;
|
|
16
|
+
}
|
|
17
|
+
export type ValueKind = 'data' | 'url' | 'img';
|
|
18
|
+
export interface IValue {
|
|
19
|
+
kind: ValueKind;
|
|
20
|
+
name: string;
|
|
21
|
+
data: string;
|
|
22
|
+
}
|
|
23
|
+
export interface IInfoSearchResult {
|
|
24
|
+
layerName: string;
|
|
25
|
+
values: Record<string, IValue>[];
|
|
26
|
+
}
|
|
27
|
+
export declare class InfoSearchProvider extends SearchProviderBase<IInfoSearchResult, Coordinate> {
|
|
28
|
+
private _current;
|
|
29
|
+
getSearchableLayers(): ILayer[];
|
|
30
|
+
getFilter(searchValue: Coordinate, layer: ILayer): Filter;
|
|
31
|
+
map(layer: ILayer, f: FeatureCollection): IInfoSearchResult;
|
|
32
|
+
private _mapFeature;
|
|
33
|
+
private _getValueKind;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoSearchProvider, never>;
|
|
35
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<InfoSearchProvider>;
|
|
36
|
+
}
|
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
import BaseLayer from 'ol/layer/Base';
|
|
2
2
|
import Map from 'ol/Map';
|
|
3
3
|
import { ILayer } from '../models/ILayer';
|
|
4
|
-
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import { BehaviorSubject, Subject } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class LayerHelperService {
|
|
7
7
|
activeLayersChanged: BehaviorSubject<boolean>;
|
|
8
8
|
private readonly _layerDbIdKey;
|
|
9
9
|
private readonly _layerGroupDbIdKey;
|
|
10
|
-
private readonly
|
|
10
|
+
private readonly _mapFilteredLayerGroupsKeyName;
|
|
11
|
+
private _layerErrorService;
|
|
12
|
+
layerActivatedByBackgroundGroup: Subject<number>;
|
|
11
13
|
setDbId(layer: BaseLayer, id: number): void;
|
|
12
14
|
getDbId(layer: BaseLayer): number;
|
|
13
15
|
setLayerGroupDbId(layer: BaseLayer, id: number): void;
|
|
14
16
|
getLayerGroupDbId(layer: BaseLayer): number;
|
|
15
17
|
applyCachedLayersToDisplayInMap(map: Map, profileId: number): void;
|
|
18
|
+
startFailoverForBackgroundGroup(aMap: Map, groupId: number): void;
|
|
16
19
|
updateLayerOpacityInMap(map: Map, layer: ILayer): void;
|
|
17
|
-
toggleLayerInMap(map: Map,
|
|
20
|
+
toggleLayerInMap(map: Map, layerId: number): void;
|
|
18
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayerHelperService, never>;
|
|
19
22
|
static ɵprov: i0.ɵɵInjectableDeclaration<LayerHelperService>;
|
|
20
23
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import Map from 'ol/Map';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LayoutService {
|
|
4
|
+
loadInitialPositionFromProfile(widgetName: string, initialPosition: string): {
|
|
5
|
+
x: number;
|
|
6
|
+
y: number;
|
|
7
|
+
};
|
|
8
|
+
bringElementIntoViewIfNeeded(elementClass: string, offsetValue: number, collapsed: boolean, map: Map): void;
|
|
9
|
+
private _savePosition;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LayoutService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Feature as olFeature } from 'ol';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class OverlapService {
|
|
5
|
+
private _drawLayerService;
|
|
6
|
+
private _featureHelper;
|
|
7
|
+
private _snackbar;
|
|
8
|
+
private _confirmService;
|
|
9
|
+
private _geoJsonFormat;
|
|
10
|
+
private readonly EPSILON;
|
|
11
|
+
handleOverlaps(features: olFeature[]): Observable<olFeature[]>;
|
|
12
|
+
private _handleUnlockedFeaturesOverlapping;
|
|
13
|
+
handleOverlap(feature: olFeature): Observable<olFeature>;
|
|
14
|
+
private _handleLockedFeaturesOverlapping;
|
|
15
|
+
splitByFeature(cutterFeature: olFeature, remove?: boolean): Observable<olFeature[]>;
|
|
16
|
+
private _addTurfToResult;
|
|
17
|
+
private _olToGeoJSON;
|
|
18
|
+
private _geoJSONToOl;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlapService, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OverlapService>;
|
|
21
|
+
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import Feature from 'ol/Feature';
|
|
2
1
|
import VectorSource from 'ol/source/Vector';
|
|
3
2
|
import VectorLayer from 'ol/layer/Vector';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class PrintDrawLayerSourceService {
|
|
6
5
|
private _current;
|
|
7
6
|
source: VectorSource;
|
|
8
|
-
layer: VectorLayer<VectorSource<Feature<import("ol/geom").Geometry>>, Feature<import("ol/geom").Geometry>>;
|
|
7
|
+
layer: VectorLayer<VectorSource<import("ol").Feature<import("ol/geom").Geometry>>, import("ol").Feature<import("ol/geom").Geometry>>;
|
|
9
8
|
constructor();
|
|
10
9
|
private _initListener;
|
|
11
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrintDrawLayerSourceService, never>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Map } from 'ol';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PrintHelperService {
|
|
4
|
+
setVisibiltyOnDOMElements(baseElement: HTMLElement, visible: boolean): void;
|
|
5
|
+
getImgData(map: Map, printFormat: 'image/png' | 'image/jpg', printDimensions?: [number, number]): Promise<string>;
|
|
6
|
+
private _setVisibiltyOnDOMElements;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrintHelperService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PrintHelperService>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Geometry } from 'ol/geom';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { IValue } from './infoSearch.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SearchProviderService {
|
|
6
|
+
private _cancelSearch;
|
|
7
|
+
maxSearchResults: number;
|
|
8
|
+
searchProviders: SearchProvider[];
|
|
9
|
+
search(searchString?: string, geometry?: Geometry): Observable<SearchResponse[]>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchProviderService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SearchProviderService>;
|
|
12
|
+
}
|
|
13
|
+
export interface SearchProvider {
|
|
14
|
+
name: string;
|
|
15
|
+
search(searchValue?: string, geometry?: Geometry, maxCount?: number): Observable<SearchResponse[]>;
|
|
16
|
+
onSelect(searchResult: SearchResponse, targetSrs?: string): void;
|
|
17
|
+
onClear(): void;
|
|
18
|
+
}
|
|
19
|
+
export interface SearchResponseItem {
|
|
20
|
+
wkt: string;
|
|
21
|
+
header: string;
|
|
22
|
+
showMetadata: boolean;
|
|
23
|
+
metadata?: Record<string, IValue>[];
|
|
24
|
+
}
|
|
25
|
+
export interface SearchResponse {
|
|
26
|
+
total: number;
|
|
27
|
+
title: string;
|
|
28
|
+
items: SearchResponseItem[];
|
|
29
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IInfoSearchResult } from './infoSearch.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ShowInfoService {
|
|
4
|
+
private _current;
|
|
5
|
+
private _listenKey;
|
|
6
|
+
private _active;
|
|
7
|
+
private _infoSearchProvider;
|
|
8
|
+
private _features;
|
|
9
|
+
features$: import("rxjs").Observable<IInfoSearchResult[] | null>;
|
|
10
|
+
stopShowInfo(): void;
|
|
11
|
+
startShowInfo(): void;
|
|
12
|
+
disable(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShowInfoService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ShowInfoService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ShowInfoHoverService {
|
|
3
|
+
private _current;
|
|
4
|
+
private _search;
|
|
5
|
+
private source;
|
|
6
|
+
private _layer;
|
|
7
|
+
init(): void;
|
|
8
|
+
private _getStyle;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShowInfoHoverService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ShowInfoHoverService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { FeatureCollection } from 'geojson';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { SearchProvider, SearchResponse } from './searchProvider.service';
|
|
4
|
+
import { Geometry } from 'ol/geom';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export interface WfsFeatureCollection extends FeatureCollection {
|
|
7
|
+
numberMatched?: number;
|
|
8
|
+
numberReturned?: number;
|
|
9
|
+
timeStamp?: string;
|
|
10
|
+
next?: string;
|
|
11
|
+
previous?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface SearchableLayer {
|
|
14
|
+
featureType: string;
|
|
15
|
+
baseUrl: string;
|
|
16
|
+
searchField: string;
|
|
17
|
+
headerField: string;
|
|
18
|
+
geometryField: string;
|
|
19
|
+
name: string;
|
|
20
|
+
fieldsToExcludeFromInfoFromInfo: string;
|
|
21
|
+
}
|
|
22
|
+
export declare class WFSSearchService implements SearchProvider {
|
|
23
|
+
name: string;
|
|
24
|
+
private _http;
|
|
25
|
+
private wfsFormat;
|
|
26
|
+
private wktFormat;
|
|
27
|
+
private _searcheableLayers;
|
|
28
|
+
private geoJsonFormat;
|
|
29
|
+
private _serializer;
|
|
30
|
+
search(searchValue?: string, geometry?: Geometry, maxCount?: number): Observable<SearchResponse[]>;
|
|
31
|
+
onSelect(searchResult: SearchResponse, targetSrs?: string): void;
|
|
32
|
+
onClear(): void;
|
|
33
|
+
setSearcheableLayers(layers: SearchableLayer[]): void;
|
|
34
|
+
private _formatWKT;
|
|
35
|
+
private _mapFeatureMetadata;
|
|
36
|
+
private _getValueKind;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WFSSearchService, never>;
|
|
38
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WFSSearchService>;
|
|
39
|
+
}
|