@regionerne/gis-komponent 0.0.86 → 0.0.88
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 +140 -79
- package/fesm2022/regionerne-gis-komponent.mjs.map +1 -1
- package/lib/components/active-objects/activeObjects.component.d.ts +1 -0
- package/lib/components/document-search-info/document-search-info.component.d.ts +4 -1
- package/lib/components/toolbox/toolbox.component.d.ts +3 -2
- package/lib/services/UndoRedo.service.d.ts +1 -4
- package/lib/services/centerPoint.service.d.ts +1 -0
- package/lib/services/geometri-split.service.d.ts +1 -0
- package/lib/services/mergeFeatures.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -58,6 +58,7 @@ export declare class ActiveObjectsComponent implements OnInit, OnChanges {
|
|
|
58
58
|
endSession(): void;
|
|
59
59
|
runConflictAnalysis(): void;
|
|
60
60
|
ngOnChanges(changes: SimpleChanges): void;
|
|
61
|
+
private _formatNumber;
|
|
61
62
|
private _getAreaString;
|
|
62
63
|
reset(): void;
|
|
63
64
|
zoomToAll(): void;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class DocumentSearchInfoComponent {
|
|
3
|
+
export declare class DocumentSearchInfoComponent implements OnInit {
|
|
3
4
|
private _showDocumentInfoService;
|
|
5
|
+
showPanel: boolean;
|
|
4
6
|
features$: import("rxjs").Observable<import("../../services/documentSearch.service").IDocumentResponse[] | null>;
|
|
7
|
+
ngOnInit(): void;
|
|
5
8
|
getIcon(url: string): string;
|
|
6
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentSearchInfoComponent, never>;
|
|
7
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentSearchInfoComponent, "document-search-info", never, {}, {}, never, never, true, never>;
|
|
@@ -127,14 +127,15 @@ export declare class ToolboxComponent implements OnInit, OnChanges {
|
|
|
127
127
|
onSearchModeChanged(event: MatSelectChange): void;
|
|
128
128
|
private _enablePolygonSearch;
|
|
129
129
|
toggleMeasure(): void;
|
|
130
|
+
private _formatNumber;
|
|
130
131
|
onMeasureModeChanged(event: MatSelectChange): void;
|
|
131
132
|
toggleFeatureSearch(): void;
|
|
132
133
|
togglePointSearch(): void;
|
|
133
134
|
toggleCowiPage(): void;
|
|
134
135
|
toggleSkraafotoPage(): void;
|
|
135
136
|
toggleGoogleStreetviewPage(): void;
|
|
136
|
-
|
|
137
|
-
|
|
137
|
+
toggleDocumentPointSearch(): void;
|
|
138
|
+
toggleDocumentPolygonSearch(): void;
|
|
138
139
|
togglePolygonSearch(): void;
|
|
139
140
|
private _disablePolygonSearch;
|
|
140
141
|
private _enablePointSearch;
|
|
@@ -3,15 +3,12 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class UndoRedoService {
|
|
4
4
|
private _drawlayerSourceService;
|
|
5
5
|
constructor(_drawlayerSourceService: DrawLayerSourceService);
|
|
6
|
-
disable(): void;
|
|
7
|
-
enable(): void;
|
|
8
6
|
private _steps;
|
|
9
7
|
private _currentStep;
|
|
10
|
-
private _changing;
|
|
11
|
-
private _enabled;
|
|
12
8
|
init(): void;
|
|
13
9
|
get canUndo(): boolean;
|
|
14
10
|
get canRedo(): boolean;
|
|
11
|
+
addStep(): void;
|
|
15
12
|
undo(): void;
|
|
16
13
|
redo(): void;
|
|
17
14
|
reset(): void;
|
|
@@ -10,6 +10,7 @@ export declare class CenterPointService {
|
|
|
10
10
|
private _featureHelper;
|
|
11
11
|
private _confirmDialog;
|
|
12
12
|
handleFeatureDeleted(featureId: string | number): void;
|
|
13
|
+
checkAfterUpdate(): void;
|
|
13
14
|
isCenterpoint(feature: Feature): boolean;
|
|
14
15
|
setCenterPoint(style: string, withinPolygon: boolean, callBack: () => void): void;
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CenterPointService, never>;
|
|
@@ -6,6 +6,7 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
export declare class GeometrySplitService {
|
|
7
7
|
private geoJsonFormat;
|
|
8
8
|
private _featureHelper;
|
|
9
|
+
private _undoRedo;
|
|
9
10
|
/**
|
|
10
11
|
* Split polygons in a vector source using a buffered LineString.
|
|
11
12
|
* @param lineFeature The drawn LineString feature.
|