@igo2/integration 18.0.0-next.9 → 18.0.0
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/esm2022/lib/analytics/analytics-listener.service.mjs +6 -2
- package/esm2022/lib/catalog/catalog-browser-tool/catalog-browser-tool.component.mjs +5 -1
- package/esm2022/lib/directions/directions-tool/directions-tool.component.mjs +4 -4
- package/esm2022/lib/directions/directions.state.mjs +6 -18
- package/esm2022/lib/draw/draw.state.mjs +3 -3
- package/esm2022/lib/filter/active-ogc-filter-tool/active-ogc-filter-tool.component.mjs +4 -4
- package/esm2022/lib/filter/active-time-filter-tool/active-time-filter-tool.component.mjs +4 -4
- package/esm2022/lib/filter/spatial-filter-tool/spatial-filter-tool.component.mjs +104 -104
- package/esm2022/lib/geometry-form/data-issue-reporter-tool/data-issue-reporter-tool.component.mjs +7 -3
- package/esm2022/lib/map/advanced-map-tool/advanced-map-tool.component.mjs +9 -3
- package/esm2022/lib/map/advanced-map-tool/advanced-swipe/advanced-swipe.component.mjs +22 -22
- package/esm2022/lib/map/map-details-tool/map-details-tool.component.mjs +49 -20
- package/esm2022/lib/map/map-legend/map-legend-tool.component.mjs +6 -6
- package/esm2022/lib/map/map-proximity.state.mjs +7 -8
- package/esm2022/lib/map/map-tool/map-tool.component.mjs +49 -13
- package/esm2022/lib/map/map-tools/map-tools.component.mjs +57 -24
- package/esm2022/lib/map/map.state.mjs +1 -3
- package/esm2022/lib/measure/measure.state.mjs +4 -3
- package/esm2022/lib/search/search-results-tool/search-results-tool.component.mjs +1 -1
- package/esm2022/lib/search/search.state.mjs +2 -2
- package/esm2022/lib/workspace/workspace-button/workspace-button.component.mjs +4 -3
- package/fesm2022/igo2-integration.mjs +334 -243
- package/fesm2022/igo2-integration.mjs.map +1 -1
- package/lib/directions/directions-tool/directions-tool.component.d.ts +3 -3
- package/lib/directions/directions.state.d.ts +2 -2
- package/lib/filter/spatial-filter-tool/spatial-filter-tool.component.d.ts +4 -6
- package/lib/map/advanced-map-tool/advanced-swipe/advanced-swipe.component.d.ts +5 -6
- package/lib/map/map-details-tool/map-details-tool.component.d.ts +12 -4
- package/lib/map/map-legend/map-legend-tool.component.d.ts +4 -4
- package/lib/map/map-proximity.state.d.ts +4 -3
- package/lib/map/map-tool/map-tool.component.d.ts +14 -3
- package/lib/map/map-tools/map-tools.component.d.ts +15 -6
- package/lib/workspace/workspace-button/workspace-button.component.d.ts +4 -4
- package/package.json +4 -4
|
@@ -3,7 +3,7 @@ import { AuthService } from '@igo2/auth';
|
|
|
3
3
|
import { LanguageService } from '@igo2/core/language';
|
|
4
4
|
import { MessageService } from '@igo2/core/message';
|
|
5
5
|
import { StorageService } from '@igo2/core/storage';
|
|
6
|
-
import { IgoMap, RoutesFeatureStore,
|
|
6
|
+
import { IgoMap, RoutesFeatureStore, StepsFeatureStore, StopsFeatureStore, StopsStore } from '@igo2/geo';
|
|
7
7
|
import { BehaviorSubject, Subject } from 'rxjs';
|
|
8
8
|
import { ContextState } from '../../context/context.state';
|
|
9
9
|
import { MapState } from '../../map/map.state';
|
|
@@ -38,12 +38,12 @@ export declare class DirectionsToolComponent implements OnInit {
|
|
|
38
38
|
* step store
|
|
39
39
|
* @internal
|
|
40
40
|
*/
|
|
41
|
-
get stepFeatureStore():
|
|
41
|
+
get stepFeatureStore(): StepsFeatureStore;
|
|
42
42
|
/**
|
|
43
43
|
* step store
|
|
44
44
|
* @internal
|
|
45
45
|
*/
|
|
46
|
-
get
|
|
46
|
+
get zoomOnActiveRoute$(): Subject<void>;
|
|
47
47
|
get authenticated$(): BehaviorSubject<boolean>;
|
|
48
48
|
/**
|
|
49
49
|
* Map to measure on
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RoutesFeatureStore,
|
|
1
|
+
import { RoutesFeatureStore, StepsFeatureStore, StopsFeatureStore, StopsStore } from '@igo2/geo';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import { MapState } from '../map/map.state';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -20,7 +20,7 @@ export declare class DirectionState {
|
|
|
20
20
|
* Store that holds the driving route as feature
|
|
21
21
|
*/
|
|
22
22
|
routesFeatureStore: RoutesFeatureStore;
|
|
23
|
-
stepFeatureStore:
|
|
23
|
+
stepFeatureStore: StepsFeatureStore;
|
|
24
24
|
debounceTime: number;
|
|
25
25
|
constructor(mapState: MapState);
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<DirectionState, never>;
|
|
@@ -3,7 +3,7 @@ import { MatIconRegistry } from '@angular/material/icon';
|
|
|
3
3
|
import { EntityStore } from '@igo2/common/entity';
|
|
4
4
|
import { LanguageService } from '@igo2/core/language';
|
|
5
5
|
import { MessageService } from '@igo2/core/message';
|
|
6
|
-
import {
|
|
6
|
+
import { AnyLayer, Feature, IgoMap, LayerService, MeasureLengthUnit, SpatialFilterItemType, SpatialFilterQueryType, SpatialFilterService, SpatialFilterThematic, SpatialFilterType } from '@igo2/geo';
|
|
7
7
|
import * as olstyle from 'ol/style';
|
|
8
8
|
import { BehaviorSubject } from 'rxjs';
|
|
9
9
|
import { MapState } from '../../map/map.state';
|
|
@@ -17,7 +17,6 @@ import * as i0 from "@angular/core";
|
|
|
17
17
|
export declare class SpatialFilterToolComponent implements OnInit, OnDestroy {
|
|
18
18
|
private matIconRegistry;
|
|
19
19
|
private spatialFilterService;
|
|
20
|
-
private dataSourceService;
|
|
21
20
|
private layerService;
|
|
22
21
|
private mapState;
|
|
23
22
|
private messageService;
|
|
@@ -30,8 +29,8 @@ export declare class SpatialFilterToolComponent implements OnInit, OnDestroy {
|
|
|
30
29
|
type: SpatialFilterType;
|
|
31
30
|
itemType: SpatialFilterItemType;
|
|
32
31
|
freehandDrawIsActive: boolean;
|
|
33
|
-
layers:
|
|
34
|
-
activeLayers:
|
|
32
|
+
layers: AnyLayer[];
|
|
33
|
+
activeLayers: AnyLayer[];
|
|
35
34
|
queryType: SpatialFilterQueryType;
|
|
36
35
|
thematics: SpatialFilterThematic[];
|
|
37
36
|
zone: Feature;
|
|
@@ -46,9 +45,8 @@ export declare class SpatialFilterToolComponent implements OnInit, OnDestroy {
|
|
|
46
45
|
thematicLength: number;
|
|
47
46
|
measureUnit: MeasureLengthUnit;
|
|
48
47
|
private unsubscribe$;
|
|
49
|
-
private moveendKey;
|
|
50
48
|
defaultStyle: olstyle.Style | ((feature: any, resolution: any) => olstyle.Style);
|
|
51
|
-
constructor(matIconRegistry: MatIconRegistry, spatialFilterService: SpatialFilterService,
|
|
49
|
+
constructor(matIconRegistry: MatIconRegistry, spatialFilterService: SpatialFilterService, layerService: LayerService, mapState: MapState, messageService: MessageService, languageService: LanguageService, importExportState: ImportExportState, toolState: ToolState, workspaceState: WorkspaceState, cdRef: ChangeDetectorRef);
|
|
52
50
|
ngOnInit(): void;
|
|
53
51
|
ngOnDestroy(): void;
|
|
54
52
|
getOutputType(event: SpatialFilterType): void;
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import {
|
|
4
|
-
import { IgoMap, Layer, VectorLayer } from '@igo2/geo';
|
|
3
|
+
import { DetailedContext } from '@igo2/context';
|
|
4
|
+
import { AnyLayer, IgoMap, Layer, VectorLayer } from '@igo2/geo';
|
|
5
5
|
import { ToolState } from '../../../tool/tool.state';
|
|
6
6
|
import { MapState } from '../../map.state';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class AdvancedSwipeComponent implements OnInit, OnDestroy {
|
|
9
9
|
mapState: MapState;
|
|
10
|
-
private contextService;
|
|
11
10
|
private formBuilder;
|
|
12
11
|
private toolState;
|
|
13
12
|
swipe: boolean;
|
|
14
|
-
layerList:
|
|
15
|
-
userControlledLayerList:
|
|
13
|
+
layerList: AnyLayer[];
|
|
14
|
+
userControlledLayerList: AnyLayer[];
|
|
16
15
|
form: UntypedFormGroup;
|
|
17
16
|
layers: VectorLayer[];
|
|
18
17
|
res: DetailedContext;
|
|
@@ -21,7 +20,7 @@ export declare class AdvancedSwipeComponent implements OnInit, OnDestroy {
|
|
|
21
20
|
* Get an active map state
|
|
22
21
|
*/
|
|
23
22
|
get map(): IgoMap;
|
|
24
|
-
constructor(mapState: MapState,
|
|
23
|
+
constructor(mapState: MapState, formBuilder: UntypedFormBuilder, toolState: ToolState);
|
|
25
24
|
/**
|
|
26
25
|
* Get the list of layers for swipe
|
|
27
26
|
* @internal
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { ConfigService } from '@igo2/core/config';
|
|
3
|
+
import { MediaService } from '@igo2/core/media';
|
|
4
|
+
import { AnyLayer, IgoMap, Layer, LayerListControlsOptions, LayerViewerOptions, SearchSourceService } from '@igo2/geo';
|
|
3
5
|
import { Observable } from 'rxjs';
|
|
4
6
|
import { ImportExportState } from '../../import-export/import-export.state';
|
|
5
7
|
import { ToolState } from './../../tool/tool.state';
|
|
@@ -9,8 +11,11 @@ export declare class MapDetailsToolComponent implements OnInit {
|
|
|
9
11
|
private mapState;
|
|
10
12
|
private toolState;
|
|
11
13
|
private searchSourceService;
|
|
12
|
-
private cdRef;
|
|
13
14
|
private importExportState;
|
|
15
|
+
private configService;
|
|
16
|
+
mediaService: MediaService;
|
|
17
|
+
private cdr;
|
|
18
|
+
isDesktop: boolean;
|
|
14
19
|
delayedShowEmptyMapContent: boolean;
|
|
15
20
|
toggleLegendOnVisibilityChange: boolean;
|
|
16
21
|
expandLegendOfVisibleLayers: boolean;
|
|
@@ -20,19 +25,22 @@ export declare class MapDetailsToolComponent implements OnInit {
|
|
|
20
25
|
layerListControls: LayerListControlsOptions;
|
|
21
26
|
queryBadge: boolean;
|
|
22
27
|
layerAdditionAllowed: boolean;
|
|
28
|
+
private _layerViewerOptions;
|
|
29
|
+
get layerViewerOptions(): LayerViewerOptions;
|
|
23
30
|
get map(): IgoMap;
|
|
24
|
-
get layers$(): Observable<
|
|
31
|
+
get layers$(): Observable<AnyLayer[]>;
|
|
25
32
|
get excludeBaseLayers(): boolean;
|
|
26
33
|
get layerFilterAndSortOptions(): any;
|
|
27
34
|
get searchToolInToolbar(): boolean;
|
|
28
35
|
get catalogToolInToolbar(): boolean;
|
|
29
36
|
get contextToolInToolbar(): boolean;
|
|
30
|
-
constructor(mapState: MapState, toolState: ToolState, searchSourceService: SearchSourceService,
|
|
37
|
+
constructor(mapState: MapState, toolState: ToolState, searchSourceService: SearchSourceService, importExportState: ImportExportState, configService: ConfigService, mediaService: MediaService, cdr: ChangeDetectorRef);
|
|
31
38
|
ngOnInit(): void;
|
|
32
39
|
searchEmit(): void;
|
|
33
40
|
catalogEmit(): void;
|
|
34
41
|
contextEmit(): void;
|
|
35
42
|
activateExport(layer: Layer): void;
|
|
43
|
+
private handleMedia;
|
|
36
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapDetailsToolComponent, never>;
|
|
37
45
|
static ɵcmp: i0.ɵɵComponentDeclaration<MapDetailsToolComponent, "igo-map-details-tool", never, { "toggleLegendOnVisibilityChange": { "alias": "toggleLegendOnVisibilityChange"; "required": false; }; "expandLegendOfVisibleLayers": { "alias": "expandLegendOfVisibleLayers"; "required": false; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; }; "ogcButton": { "alias": "ogcButton"; "required": false; }; "timeButton": { "alias": "timeButton"; "required": false; }; "layerListControls": { "alias": "layerListControls"; "required": false; }; "queryBadge": { "alias": "queryBadge"; "required": false; }; "layerAdditionAllowed": { "alias": "layerAdditionAllowed"; "required": false; }; }, {}, never, never, true, never>;
|
|
38
46
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { AnyLayer, IgoMap, LayerListControlsOptions, SearchSourceService } from '@igo2/geo';
|
|
3
3
|
import { BehaviorSubject, Observable, ReplaySubject } from 'rxjs';
|
|
4
4
|
import { ToolState } from './../../tool/tool.state';
|
|
5
5
|
import { MapState } from './../map.state';
|
|
@@ -10,7 +10,7 @@ export declare class MapLegendToolComponent implements OnInit, OnDestroy {
|
|
|
10
10
|
private searchSourceService;
|
|
11
11
|
private cdRef;
|
|
12
12
|
delayedShowEmptyMapContent: boolean;
|
|
13
|
-
layers$: BehaviorSubject<
|
|
13
|
+
layers$: BehaviorSubject<AnyLayer[]>;
|
|
14
14
|
showAllLegendsValue$: BehaviorSubject<boolean>;
|
|
15
15
|
change$: ReplaySubject<void>;
|
|
16
16
|
private resolution$$;
|
|
@@ -21,8 +21,8 @@ export declare class MapLegendToolComponent implements OnInit, OnDestroy {
|
|
|
21
21
|
showAllLegendsValue: boolean;
|
|
22
22
|
layerListControls: LayerListControlsOptions;
|
|
23
23
|
get map(): IgoMap;
|
|
24
|
-
get visibleOrInRangeLayers$(): Observable<
|
|
25
|
-
get visibleLayers$(): Observable<
|
|
24
|
+
get visibleOrInRangeLayers$(): Observable<AnyLayer[]>;
|
|
25
|
+
get visibleLayers$(): Observable<AnyLayer[]>;
|
|
26
26
|
get excludeBaseLayers(): boolean;
|
|
27
27
|
get searchToolInToolbar(): boolean;
|
|
28
28
|
get catalogToolInToolbar(): boolean;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { StorageService } from '@igo2/core/storage';
|
|
2
|
-
import { Feature, FeatureStore, IgoMap
|
|
2
|
+
import { AnyLayer, Feature, FeatureStore, IgoMap } from '@igo2/geo';
|
|
3
|
+
import { Coordinate } from 'ol/coordinate';
|
|
3
4
|
import { BehaviorSubject } from 'rxjs';
|
|
4
5
|
import { MapState } from '../map/map.state';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
@@ -15,7 +16,7 @@ export declare class MapProximityState {
|
|
|
15
16
|
proximitylocationType$: BehaviorSubject<string>;
|
|
16
17
|
proximityFeatureStore: FeatureStore<Feature>;
|
|
17
18
|
private subs$$;
|
|
18
|
-
currentPositionCoordinate$: BehaviorSubject<
|
|
19
|
+
currentPositionCoordinate$: BehaviorSubject<Coordinate>;
|
|
19
20
|
get map(): IgoMap;
|
|
20
21
|
constructor(mapState: MapState, storageService: StorageService);
|
|
21
22
|
subscribeProximityMonitor(): void;
|
|
@@ -24,7 +25,7 @@ export declare class MapProximityState {
|
|
|
24
25
|
* @internal
|
|
25
26
|
*/
|
|
26
27
|
private addFeatureToStore;
|
|
27
|
-
getQueryTitle(feature: Feature, layer:
|
|
28
|
+
getQueryTitle(feature: Feature, layer: AnyLayer): string | undefined;
|
|
28
29
|
getLabelMatch(feature: Feature, labelMatch: any): string;
|
|
29
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapProximityState, never>;
|
|
30
31
|
static ɵprov: i0.ɵɵInjectableDeclaration<MapProximityState>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { ConfigService } from '@igo2/core/config';
|
|
3
|
+
import { MediaService } from '@igo2/core/media';
|
|
4
|
+
import { IgoMap, Layer, LayerListControlsOptions, LayerViewerOptions } from '@igo2/geo';
|
|
2
5
|
import { ImportExportState } from '../../import-export/import-export.state';
|
|
3
6
|
import { ToolState } from '../../tool/tool.state';
|
|
4
7
|
import { MapState } from './../map.state';
|
|
@@ -6,10 +9,14 @@ import * as i0 from "@angular/core";
|
|
|
6
9
|
/**
|
|
7
10
|
* Tool to browse a map's layers or to choose a different map
|
|
8
11
|
*/
|
|
9
|
-
export declare class MapToolComponent {
|
|
12
|
+
export declare class MapToolComponent implements OnInit {
|
|
10
13
|
private mapState;
|
|
11
14
|
private toolState;
|
|
12
15
|
private importExportState;
|
|
16
|
+
private configService;
|
|
17
|
+
mediaService: MediaService;
|
|
18
|
+
private cdr;
|
|
19
|
+
isDesktop: boolean;
|
|
13
20
|
toggleLegendOnVisibilityChange: boolean;
|
|
14
21
|
expandLegendOfVisibleLayers: boolean;
|
|
15
22
|
updateLegendOnResolutionChange: boolean;
|
|
@@ -20,8 +27,12 @@ export declare class MapToolComponent {
|
|
|
20
27
|
get map(): IgoMap;
|
|
21
28
|
get excludeBaseLayers(): boolean;
|
|
22
29
|
get layerFilterAndSortOptions(): any;
|
|
23
|
-
|
|
30
|
+
private _layerViewerOptions;
|
|
31
|
+
get layerViewerOptions(): LayerViewerOptions;
|
|
32
|
+
constructor(mapState: MapState, toolState: ToolState, importExportState: ImportExportState, configService: ConfigService, mediaService: MediaService, cdr: ChangeDetectorRef);
|
|
33
|
+
ngOnInit(): void;
|
|
24
34
|
activateExport(layer: Layer): void;
|
|
35
|
+
private handleMedia;
|
|
25
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapToolComponent, never>;
|
|
26
37
|
static ɵcmp: i0.ɵɵComponentDeclaration<MapToolComponent, "igo-map-tool", never, { "toggleLegendOnVisibilityChange": { "alias": "toggleLegendOnVisibilityChange"; "required": false; }; "expandLegendOfVisibleLayers": { "alias": "expandLegendOfVisibleLayers"; "required": false; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; }; "ogcButton": { "alias": "ogcButton"; "required": false; }; "timeButton": { "alias": "timeButton"; "required": false; }; "layerListControls": { "alias": "layerListControls"; "required": false; }; "queryBadge": { "alias": "queryBadge"; "required": false; }; }, {}, never, never, true, never>;
|
|
27
38
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import { OnDestroy, OnInit } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { MatTabChangeEvent } from '@angular/material/tabs';
|
|
3
|
-
import {
|
|
3
|
+
import { ConfigService } from '@igo2/core/config';
|
|
4
|
+
import { MediaService } from '@igo2/core/media';
|
|
5
|
+
import { AnyLayer, IgoMap, Layer, LayerListControlsOptions, LayerViewerOptions, SearchSourceService } from '@igo2/geo';
|
|
4
6
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
5
7
|
import { ImportExportState } from '../../import-export/import-export.state';
|
|
6
8
|
import { ToolState } from '../../tool/tool.state';
|
|
@@ -16,7 +18,11 @@ export declare class MapToolsComponent implements OnInit, OnDestroy {
|
|
|
16
18
|
mapState: MapState;
|
|
17
19
|
private searchSourceService;
|
|
18
20
|
private importExportState;
|
|
19
|
-
|
|
21
|
+
private configService;
|
|
22
|
+
mediaService: MediaService;
|
|
23
|
+
private cdr;
|
|
24
|
+
isDesktop: boolean;
|
|
25
|
+
layers$: BehaviorSubject<AnyLayer[]>;
|
|
20
26
|
showAllLegendsValue$: BehaviorSubject<boolean>;
|
|
21
27
|
private resolution$$;
|
|
22
28
|
private visibleOrInRangeLayers$$;
|
|
@@ -35,15 +41,17 @@ export declare class MapToolsComponent implements OnInit, OnDestroy {
|
|
|
35
41
|
private _layerListControls;
|
|
36
42
|
get map(): IgoMap;
|
|
37
43
|
queryBadge: boolean;
|
|
38
|
-
get visibleOrInRangeLayers$(): Observable<
|
|
39
|
-
get visibleLayers$(): Observable<
|
|
44
|
+
get visibleOrInRangeLayers$(): Observable<AnyLayer[]>;
|
|
45
|
+
get visibleLayers$(): Observable<AnyLayer[]>;
|
|
40
46
|
get excludeBaseLayers(): boolean;
|
|
41
47
|
get layerFilterAndSortOptions(): LayerListControlsOptions;
|
|
48
|
+
private _layerViewerOptions;
|
|
49
|
+
get layerViewerOptions(): LayerViewerOptions;
|
|
42
50
|
tabGroup: any;
|
|
43
51
|
get searchToolInToolbar(): boolean;
|
|
44
52
|
get catalogToolInToolbar(): boolean;
|
|
45
53
|
get contextToolInToolbar(): boolean;
|
|
46
|
-
constructor(layerListToolState: LayerListToolState, toolState: ToolState, mapState: MapState, searchSourceService: SearchSourceService, importExportState: ImportExportState);
|
|
54
|
+
constructor(layerListToolState: LayerListToolState, toolState: ToolState, mapState: MapState, searchSourceService: SearchSourceService, importExportState: ImportExportState, configService: ConfigService, mediaService: MediaService, cdr: ChangeDetectorRef);
|
|
47
55
|
ngOnInit(): void;
|
|
48
56
|
ngOnDestroy(): void;
|
|
49
57
|
onShowAllLegends(event: any): void;
|
|
@@ -61,6 +69,7 @@ export declare class MapToolsComponent implements OnInit, OnDestroy {
|
|
|
61
69
|
isOGCFilterButton(layer: any): boolean;
|
|
62
70
|
isExportButton(layer: Layer): boolean;
|
|
63
71
|
isStyleEditButton(layer: Layer): boolean;
|
|
72
|
+
private handleMedia;
|
|
64
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapToolsComponent, never>;
|
|
65
74
|
static ɵcmp: i0.ɵɵComponentDeclaration<MapToolsComponent, "igo-map-tools", never, { "allowShowAllLegends": { "alias": "allowShowAllLegends"; "required": false; }; "showAllLegendsValue": { "alias": "showAllLegendsValue"; "required": false; }; "toggleLegendOnVisibilityChange": { "alias": "toggleLegendOnVisibilityChange"; "required": false; }; "expandLegendOfVisibleLayers": { "alias": "expandLegendOfVisibleLayers"; "required": false; }; "updateLegendOnResolutionChange": { "alias": "updateLegendOnResolutionChange"; "required": false; }; "selectedTabAtOpening": { "alias": "selectedTabAtOpening"; "required": false; }; "ogcButton": { "alias": "ogcButton"; "required": false; }; "timeButton": { "alias": "timeButton"; "required": false; }; "layerAdditionAllowed": { "alias": "layerAdditionAllowed"; "required": false; }; "layerListControls": { "alias": "layerListControls"; "required": false; }; "queryBadge": { "alias": "queryBadge"; "required": false; }; }, {}, never, never, true, never>;
|
|
66
75
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import type
|
|
2
|
+
import { type AnyLayer } from '@igo2/geo';
|
|
3
3
|
import { BehaviorSubject } from 'rxjs';
|
|
4
4
|
import { WorkspaceState } from '../workspace.state';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -7,10 +7,10 @@ export declare class WorkspaceButtonComponent implements OnInit, OnDestroy {
|
|
|
7
7
|
private workspaceState;
|
|
8
8
|
hasWorkspace$: BehaviorSubject<boolean>;
|
|
9
9
|
private hasWorkspace$$;
|
|
10
|
-
private _layer;
|
|
11
10
|
private layer$;
|
|
12
|
-
set layer(value:
|
|
13
|
-
get layer():
|
|
11
|
+
set layer(value: AnyLayer);
|
|
12
|
+
get layer(): AnyLayer;
|
|
13
|
+
private _layer;
|
|
14
14
|
color: string;
|
|
15
15
|
constructor(workspaceState: WorkspaceState);
|
|
16
16
|
ngOnInit(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igo2/integration",
|
|
3
|
-
"version": "18.0.0
|
|
3
|
+
"version": "18.0.0",
|
|
4
4
|
"description": "IGO Library",
|
|
5
5
|
"author": "IGO Community",
|
|
6
6
|
"keywords": [
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"@angular/common": "^18.0.0",
|
|
34
34
|
"@angular/core": "^18.0.0",
|
|
35
|
-
"@igo2/auth": "^18.0.0
|
|
36
|
-
"@igo2/context": "^18.0.0
|
|
37
|
-
"@igo2/geo": "^18.0.0
|
|
35
|
+
"@igo2/auth": "^18.0.0",
|
|
36
|
+
"@igo2/context": "^18.0.0",
|
|
37
|
+
"@igo2/geo": "^18.0.0",
|
|
38
38
|
"@turf/point-on-feature": "^6.5.0",
|
|
39
39
|
"jspdf": "^2.5.1",
|
|
40
40
|
"jspdf-autotable": "^3.8.0",
|