@regionerne/gis-komponent 0.0.85 → 0.0.87
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 +101 -39
- 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/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;
|