@opengeoweb/core 2.10.0 → 2.14.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/index.esm.js +9964 -9937
- package/index.umd.js +7644 -7614
- package/lib/components/ConfigurableMap/ConfigurableMapConnect.d.ts +1 -1
- package/lib/components/LayerManager/AddLayersButton/AddLayersButton.d.ts +0 -2
- package/lib/components/LayerManager/AddLayersPopup/AddLayersPopup.d.ts +0 -2
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/DragHandle/DragHandle.d.ts +1 -1
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/OpacitySelect/OpacitySelect.d.ts +0 -1
- package/lib/components/LayerManager/LayerContainerRow/LayerRow/RenderStyles/RenderStyles.d.ts +0 -1
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerListRow.d.ts +2 -1
- package/lib/components/Legend/LegendConnect.d.ts +1 -0
- package/lib/components/MapView/MapViewConnect.LayerChangeEnabledOpacity.stories.d.ts +3 -3
- package/lib/components/MapView/MapViewConnect.MapPin.stories.d.ts +1 -0
- package/lib/components/MapView/MapViewConnect.d.ts +0 -2
- package/lib/components/MultiMapDimensionSelect/DimensionSelectSlider.d.ts +1 -1
- package/lib/components/ReactMapView/ReactMapViewParseLayer.d.ts +1 -0
- package/lib/components/ReactMapView/ReactMapViewParseLayer.spec.d.ts +1 -0
- package/lib/components/SyncGroups/SimpleTimeSliderConnect.d.ts +11 -1
- package/lib/components/TimeSlider/TimeSlider.d.ts +2 -0
- package/lib/components/TimeSlider/TimeSliderButtons/AutoUpdateButton/AutoUpdateButtonConnect.d.ts +8 -1
- package/lib/components/TimeSlider/TimeSliderButtons/PlayButton/PlayButtonConnect.d.ts +28 -3
- package/lib/components/TimeSlider/TimeSliderButtons/SpeedButton/SpeedButtonConnect.d.ts +3 -3
- package/lib/components/TimeSlider/TimeSliderButtons/TimeStepButton/TimeStepButton.d.ts +2 -2
- package/lib/components/TimeSlider/TimeSliderConnect.d.ts +13 -1
- package/lib/components/TimeSlider/TimeSliderLegend/TimeSliderLegendConnect.d.ts +26 -1
- package/lib/components/TimeSlider/TimeSliderRail/TimeSliderRailConnect.d.ts +21 -2
- package/lib/components/TimeSlider/TimeSliderScaleSlider/TimeSliderScaleSliderConnect.d.ts +15 -1
- package/lib/components/TimeSlider/TimeSliderUtils.d.ts +2 -0
- package/lib/components/WMSLoader/WMSLayerTree/WMSLayerTreeConnect.d.ts +14 -1
- package/lib/index.d.ts +60 -7
- package/lib/store/generic/index.d.ts +14 -2
- package/lib/store/generic/sagas.d.ts +7 -7
- package/lib/store/index.d.ts +4 -3
- package/lib/store/layerSelect/index.d.ts +2 -0
- package/lib/store/mapStore/index.d.ts +3 -1
- package/lib/store/mapStore/layers/index.d.ts +2 -1
- package/lib/store/mapStore/layers/reducer.d.ts +4 -4
- package/lib/store/mapStore/layers/selectors.d.ts +5 -5
- package/lib/store/mapStore/map/index.d.ts +2 -0
- package/lib/store/mapStore/map/reducer.d.ts +11 -9
- package/lib/store/mapStore/map/sagas.d.ts +6 -5
- package/lib/store/mapStore/map/selectors.d.ts +125 -44
- package/lib/store/mapStore/map/types.d.ts +27 -4
- package/lib/store/mapStore/map/utils.d.ts +4 -1
- package/lib/store/mapStore/service/index.d.ts +2 -0
- package/lib/store/mapStore/service/reducer.d.ts +2 -2
- package/lib/store/mapStore/utils/helpers.d.ts +0 -1
- package/lib/store/ui/index.d.ts +2 -0
- package/lib/store/ui/selectors.d.ts +7 -6
- package/lib/store/ui/types.d.ts +6 -2
- package/package.json +6 -8
- package/lib/store/mapStore/actions.d.ts +0 -7
- package/lib/store/mapStore/selectors.d.ts +0 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Dimension } from '@opengeoweb/webmap';
|
|
2
1
|
import { AppStore } from '../../../types/types';
|
|
2
|
+
import { Dimension } from '../types';
|
|
3
3
|
import { LayerState, Layer, LayerStatus } from './types';
|
|
4
4
|
/**
|
|
5
5
|
* Gets a layer from the layers part of the store by its Id
|
|
@@ -139,7 +139,7 @@ export declare const getLayerDimensions: ((state: {
|
|
|
139
139
|
services?: import("../types").ServiceState;
|
|
140
140
|
layers?: LayerState;
|
|
141
141
|
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
142
|
-
}, params_0: string) =>
|
|
142
|
+
}, params_0: string) => Dimension[]) & import("reselect").OutputSelectorFields<((args_0: Layer) => Dimension[]) & {
|
|
143
143
|
clearCache: () => void;
|
|
144
144
|
}> & {
|
|
145
145
|
clearCache: () => void;
|
|
@@ -159,7 +159,7 @@ export declare const getLayerNonTimeDimensions: ((state: {
|
|
|
159
159
|
services?: import("../types").ServiceState;
|
|
160
160
|
layers?: LayerState;
|
|
161
161
|
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
162
|
-
}, params_0: string) =>
|
|
162
|
+
}, params_0: string) => Dimension[]) & import("reselect").OutputSelectorFields<((args_0: Dimension[]) => Dimension[]) & {
|
|
163
163
|
clearCache: () => void;
|
|
164
164
|
}> & {
|
|
165
165
|
clearCache: () => void;
|
|
@@ -179,7 +179,7 @@ export declare const getLayerTimeDimension: ((state: {
|
|
|
179
179
|
services?: import("../types").ServiceState;
|
|
180
180
|
layers?: LayerState;
|
|
181
181
|
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
182
|
-
}, params_0: string) =>
|
|
182
|
+
}, params_0: string) => Dimension) & import("reselect").OutputSelectorFields<((args_0: Dimension[]) => Dimension) & {
|
|
183
183
|
clearCache: () => void;
|
|
184
184
|
}> & {
|
|
185
185
|
clearCache: () => void;
|
|
@@ -200,7 +200,7 @@ export declare const getLayerDimension: ((state: {
|
|
|
200
200
|
services?: import("../types").ServiceState;
|
|
201
201
|
layers?: LayerState;
|
|
202
202
|
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
203
|
-
}, params_0: string, params_1: string) => Dimension) & import("reselect").OutputSelectorFields<((args_0:
|
|
203
|
+
}, params_0: string, params_1: string) => Dimension) & import("reselect").OutputSelectorFields<((args_0: Dimension[], args_1: string) => Dimension) & {
|
|
204
204
|
clearCache: () => void;
|
|
205
205
|
}> & {
|
|
206
206
|
clearCache: () => void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
-
import { WebMapState, SetActiveLayerIdPayload, SetBboxPayload, SetMapAnimationStartPayload, SetMapAnimationStopPayload, SetTimeSliderScalePayload, SetTimeStepPayload, SetAnimationStartTimePayload, SetAnimationEndTimePayload, SetSelectedFeaturePayload, SetAnimationDelayPayload, MoveLayerPayload, SetTimeSliderCenterTimePayload, SetTimeSliderDataScaleToSecondsPerPxPayload, ToggleAutoUpdatePayload, ToggleTimestepAutoPayload, ToggleTimeSliderHoverPayload, MapPinLocationPayload, DisableMapPinPayload, SetActiveMapPresetPayload, SetTimeSliderSecondsPerPxPayload, UpdateAllMapDimensionsPayload, SetIsMapPresetLoadingPayload, SetIsMapPresetHasChangesPayload, SetMapPresetErrorPayload } from './types';
|
|
3
|
-
import {
|
|
2
|
+
import { WebMapState, SetActiveLayerIdPayload, SetBboxPayload, SetMapAnimationStartPayload, SetMapAnimationStopPayload, SetTimeSliderScalePayload, SetTimeStepPayload, SetAnimationStartTimePayload, SetAnimationEndTimePayload, SetSelectedFeaturePayload, SetAnimationDelayPayload, MoveLayerPayload, SetTimeSliderCenterTimePayload, SetTimeSliderDataScaleToSecondsPerPxPayload, ToggleAutoUpdatePayload, ToggleTimestepAutoPayload, ToggleTimeSliderHoverPayload, MapPinLocationPayload, DisableMapPinPayload, SetActiveMapPresetPayload, SetTimeSliderSecondsPerPxPayload, UpdateAllMapDimensionsPayload, SetIsMapPresetLoadingPayload, SetIsMapPresetHasChangesPayload, SetMapPresetErrorPayload, ToggleTimeSliderIsVisiblePayload, SetAnimationIntervalPayload } from './types';
|
|
3
|
+
import { ToggleMapPinIsVisiblePayload, ToggleZoomControlsPayload } from '../types';
|
|
4
4
|
/**
|
|
5
5
|
* Checks if the layer id is already taken in one of the maps.
|
|
6
6
|
* @param state The WebMapState
|
|
@@ -32,6 +32,7 @@ export declare const slice: import("@reduxjs/toolkit").Slice<WebMapState, {
|
|
|
32
32
|
setAnimationEndTime: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<SetAnimationEndTimePayload>) => void;
|
|
33
33
|
setSelectedFeature: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<SetSelectedFeaturePayload>) => void;
|
|
34
34
|
setAnimationDelay: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<SetAnimationDelayPayload>) => void;
|
|
35
|
+
setAnimationInterval: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<SetAnimationIntervalPayload>) => void;
|
|
35
36
|
layerMoveLayer: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<MoveLayerPayload>) => void;
|
|
36
37
|
setActiveLayerId: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<SetActiveLayerIdPayload>) => void;
|
|
37
38
|
setTimeSliderCenterTime: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<SetTimeSliderCenterTimePayload>) => void;
|
|
@@ -40,20 +41,17 @@ export declare const slice: import("@reduxjs/toolkit").Slice<WebMapState, {
|
|
|
40
41
|
toggleAutoUpdate: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<ToggleAutoUpdatePayload>) => void;
|
|
41
42
|
toggleTimestepAuto: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<ToggleTimestepAutoPayload>) => void;
|
|
42
43
|
toggleTimeSliderHover: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<ToggleTimeSliderHoverPayload>) => void;
|
|
44
|
+
toggleTimeSliderIsVisible: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<ToggleTimeSliderIsVisiblePayload>) => void;
|
|
45
|
+
toggleZoomControls: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<ToggleZoomControlsPayload>) => void;
|
|
43
46
|
setMapPinLocation: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<MapPinLocationPayload>) => void;
|
|
44
47
|
setDisableMapPin: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<DisableMapPinPayload>) => void;
|
|
48
|
+
toggleMapPinIsVisible: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<ToggleMapPinIsVisiblePayload>) => void;
|
|
45
49
|
setActiveMapPresetId: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<SetActiveMapPresetPayload>) => void;
|
|
46
50
|
setIsMapPresetLoading: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<SetIsMapPresetLoadingPayload>) => void;
|
|
47
51
|
setHasMapPresetChanges: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<SetIsMapPresetHasChangesPayload>) => void;
|
|
48
52
|
setMapPresetError: (draft: import("immer/dist/internal").WritableDraft<WebMapState>, action: PayloadAction<SetMapPresetErrorPayload>) => void;
|
|
49
53
|
}, "mapReducer">;
|
|
50
|
-
export declare const
|
|
51
|
-
mapId: string;
|
|
52
|
-
}, string>, setActiveLayerId: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetActiveLayerIdPayload, string>, setAnimationDelay: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetAnimationDelayPayload, string>, setAnimationEndTime: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetAnimationEndTimePayload, string>, setAnimationStartTime: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetAnimationStartTimePayload, string>, setBbox: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetBboxPayload, string>, setDisableMapPin: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<DisableMapPinPayload, string>, setMapPinLocation: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<MapPinLocationPayload, string>, setSelectedFeature: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetSelectedFeaturePayload, string>, setTimeSliderCenterTime: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetTimeSliderCenterTimePayload, string>, setTimeSliderDataScaleToSecondsPerPx: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetTimeSliderDataScaleToSecondsPerPxPayload, string>, setTimeSliderScale: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetTimeSliderScalePayload, string>, setTimeSliderSecondsPerPx: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetTimeSliderSecondsPerPxPayload, string>, setTimeStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetTimeStepPayload, string>, toggleAutoUpdate: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<ToggleAutoUpdatePayload, string>, toggleTimeSliderHover: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<ToggleTimeSliderHoverPayload, string>, toggleTimestepAuto: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<ToggleTimestepAutoPayload, string>, unregisterMap: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{
|
|
53
|
-
mapId: string;
|
|
54
|
-
}, string>, setActiveMapPresetId: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetActiveMapPresetPayload, string>, setIsMapPresetLoading: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetIsMapPresetLoadingPayload, string>, setHasMapPresetChanges: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetIsMapPresetHasChangesPayload, string>, setMapPresetError: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetMapPresetErrorPayload, string>;
|
|
55
|
-
export { setMapPreset, mapChangeDimension };
|
|
56
|
-
export declare const actions: {
|
|
54
|
+
export declare const mapActions: {
|
|
57
55
|
setMapPreset: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<import("./types").SetMapPresetPayload, string>;
|
|
58
56
|
mapChangeDimension: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<import("./types").SetMapDimensionPayload, string>;
|
|
59
57
|
registerMap: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{
|
|
@@ -72,6 +70,7 @@ export declare const actions: {
|
|
|
72
70
|
setAnimationEndTime: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetAnimationEndTimePayload, string>;
|
|
73
71
|
setSelectedFeature: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetSelectedFeaturePayload, string>;
|
|
74
72
|
setAnimationDelay: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetAnimationDelayPayload, string>;
|
|
73
|
+
setAnimationInterval: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetAnimationIntervalPayload, string>;
|
|
75
74
|
layerMoveLayer: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<MoveLayerPayload, string>;
|
|
76
75
|
setActiveLayerId: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetActiveLayerIdPayload, string>;
|
|
77
76
|
setTimeSliderCenterTime: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetTimeSliderCenterTimePayload, string>;
|
|
@@ -80,8 +79,11 @@ export declare const actions: {
|
|
|
80
79
|
toggleAutoUpdate: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<ToggleAutoUpdatePayload, string>;
|
|
81
80
|
toggleTimestepAuto: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<ToggleTimestepAutoPayload, string>;
|
|
82
81
|
toggleTimeSliderHover: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<ToggleTimeSliderHoverPayload, string>;
|
|
82
|
+
toggleTimeSliderIsVisible: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<ToggleTimeSliderIsVisiblePayload, string>;
|
|
83
|
+
toggleZoomControls: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<ToggleZoomControlsPayload, string>;
|
|
83
84
|
setMapPinLocation: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<MapPinLocationPayload, string>;
|
|
84
85
|
setDisableMapPin: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<DisableMapPinPayload, string>;
|
|
86
|
+
toggleMapPinIsVisible: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<ToggleMapPinIsVisiblePayload, string>;
|
|
85
87
|
setActiveMapPresetId: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetActiveMapPresetPayload, string>;
|
|
86
88
|
setIsMapPresetLoading: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetIsMapPresetLoadingPayload, string>;
|
|
87
89
|
setHasMapPresetChanges: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<SetIsMapPresetHasChangesPayload, string>;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { SagaIterator } from 'redux-saga';
|
|
2
2
|
import { Moment } from 'moment';
|
|
3
|
-
import {
|
|
4
|
-
import
|
|
5
|
-
import * as genericActions from '../../generic/actions';
|
|
3
|
+
import { mapActions } from '.';
|
|
4
|
+
import { layerActions } from '../layers';
|
|
6
5
|
import { Layer } from '../layers/types';
|
|
6
|
+
import { genericActions } from '../../generic';
|
|
7
|
+
import { uiActions } from '../../ui';
|
|
7
8
|
export declare const generateTimeList: (start: Moment, end: Moment, interval: number) => {
|
|
8
9
|
name: string;
|
|
9
10
|
value: string;
|
|
@@ -17,8 +18,8 @@ export declare function setLayerDimensionsSaga({ payload, }: ReturnType<typeof l
|
|
|
17
18
|
export declare function toggleAutoUpdateSaga({ payload, }: ReturnType<typeof mapActions.toggleAutoUpdate>): SagaIterator;
|
|
18
19
|
export declare function handleBaseLayersSaga(mapId: string, baseLayers: Layer[]): SagaIterator;
|
|
19
20
|
export declare function setMapPresetSaga({ payload, }: ReturnType<typeof mapActions.setMapPreset>): SagaIterator;
|
|
20
|
-
export declare type SupportedMapPresetChangeActions = ReturnType<typeof layerActions.setBaseLayers> | ReturnType<typeof layerActions.layerDelete> | ReturnType<typeof layerActions.addLayer> | ReturnType<typeof layerActions.layerChangeEnabled> | ReturnType<typeof layerActions.layerChangeName> | ReturnType<typeof layerActions.layerChangeStyle> | ReturnType<typeof layerActions.layerChangeOpacity> | ReturnType<typeof layerActions.layerChangeDimension> | ReturnType<typeof mapActions.layerMoveLayer> | ReturnType<typeof mapActions.setActiveLayerId> | ReturnType<typeof mapActions.toggleAutoUpdate> | ReturnType<typeof mapActions.mapStartAnimation> | ReturnType<typeof mapActions.mapStopAnimation> | ReturnType<typeof genericActions.setBbox>;
|
|
21
|
-
export declare const mapPresetChangeActions: (string | import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<import("./types").SetMapAnimationStopPayload, string>)[];
|
|
21
|
+
export declare type SupportedMapPresetChangeActions = ReturnType<typeof layerActions.setBaseLayers> | ReturnType<typeof layerActions.layerDelete> | ReturnType<typeof layerActions.addLayer> | ReturnType<typeof layerActions.layerChangeEnabled> | ReturnType<typeof layerActions.layerChangeName> | ReturnType<typeof layerActions.layerChangeStyle> | ReturnType<typeof layerActions.layerChangeOpacity> | ReturnType<typeof layerActions.layerChangeDimension> | ReturnType<typeof mapActions.layerMoveLayer> | ReturnType<typeof mapActions.setActiveLayerId> | ReturnType<typeof mapActions.toggleAutoUpdate> | ReturnType<typeof mapActions.mapStartAnimation> | ReturnType<typeof mapActions.mapStopAnimation> | ReturnType<typeof mapActions.toggleTimeSliderIsVisible> | ReturnType<typeof mapActions.setTimeStep> | ReturnType<typeof mapActions.setAnimationDelay> | ReturnType<typeof mapActions.toggleTimestepAuto> | ReturnType<typeof uiActions.setActiveMapIdForDialog> | ReturnType<typeof uiActions.setToggleOpenDialog> | ReturnType<typeof genericActions.setBbox>;
|
|
22
|
+
export declare const mapPresetChangeActions: (string | import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<import("./types").SetMapAnimationStopPayload, string> | import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<import("../../ui/types").UIToggleDialogPayload, string>)[];
|
|
22
23
|
export declare function checkMapPresetForChangesSaga(action: SupportedMapPresetChangeActions): SagaIterator;
|
|
23
24
|
export declare function rootSaga(): SagaIterator;
|
|
24
25
|
export default rootSaga;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { MapPreset, Scale, WebMap, WebMapState } from './types';
|
|
1
|
+
import { Bbox, MapPreset, Scale, WebMap, WebMapState } from './types';
|
|
2
2
|
import { AppStore } from '../../../types/types';
|
|
3
3
|
import { Layer } from '../types';
|
|
4
|
+
import { UIStoreType } from '../../ui/types';
|
|
4
5
|
/**
|
|
5
6
|
* Gets the map state by mapId
|
|
6
7
|
*
|
|
@@ -27,7 +28,7 @@ export declare const getAllMapIds: (store: AppStore) => string[];
|
|
|
27
28
|
*/
|
|
28
29
|
export declare const getFirstMap: ((state: {
|
|
29
30
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
30
|
-
ui?:
|
|
31
|
+
ui?: UIStoreType;
|
|
31
32
|
webmap?: WebMapState;
|
|
32
33
|
services?: import("../types").ServiceState;
|
|
33
34
|
layers?: import("../types").LayerState;
|
|
@@ -46,7 +47,7 @@ export declare const getFirstMap: ((state: {
|
|
|
46
47
|
*/
|
|
47
48
|
export declare const getFirstMapId: ((state: {
|
|
48
49
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
49
|
-
ui?:
|
|
50
|
+
ui?: UIStoreType;
|
|
50
51
|
webmap?: WebMapState;
|
|
51
52
|
services?: import("../types").ServiceState;
|
|
52
53
|
layers?: import("../types").LayerState;
|
|
@@ -63,7 +64,7 @@ export declare const getFirstMapId: ((state: {
|
|
|
63
64
|
*/
|
|
64
65
|
export declare const getIsMapPresent: ((state: {
|
|
65
66
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
66
|
-
ui?:
|
|
67
|
+
ui?: UIStoreType;
|
|
67
68
|
webmap?: WebMapState;
|
|
68
69
|
services?: import("../types").ServiceState;
|
|
69
70
|
layers?: import("../types").LayerState;
|
|
@@ -83,7 +84,7 @@ export declare const getIsMapPresent: ((state: {
|
|
|
83
84
|
*/
|
|
84
85
|
export declare const getLayerIds: ((state: {
|
|
85
86
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
86
|
-
ui?:
|
|
87
|
+
ui?: UIStoreType;
|
|
87
88
|
webmap?: WebMapState;
|
|
88
89
|
services?: import("../types").ServiceState;
|
|
89
90
|
layers?: import("../types").LayerState;
|
|
@@ -103,7 +104,7 @@ export declare const getLayerIds: ((state: {
|
|
|
103
104
|
*/
|
|
104
105
|
export declare const getMapLayers: ((state: {
|
|
105
106
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
106
|
-
ui?:
|
|
107
|
+
ui?: UIStoreType;
|
|
107
108
|
webmap?: WebMapState;
|
|
108
109
|
services?: import("../types").ServiceState;
|
|
109
110
|
layers?: import("../types").LayerState;
|
|
@@ -123,7 +124,7 @@ export declare const getMapLayers: ((state: {
|
|
|
123
124
|
*/
|
|
124
125
|
export declare const getMapBaseLayersIds: ((state: {
|
|
125
126
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
126
|
-
ui?:
|
|
127
|
+
ui?: UIStoreType;
|
|
127
128
|
webmap?: WebMapState;
|
|
128
129
|
services?: import("../types").ServiceState;
|
|
129
130
|
layers?: import("../types").LayerState;
|
|
@@ -143,7 +144,7 @@ export declare const getMapBaseLayersIds: ((state: {
|
|
|
143
144
|
*/
|
|
144
145
|
export declare const getMapBaseLayers: ((state: {
|
|
145
146
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
146
|
-
ui?:
|
|
147
|
+
ui?: UIStoreType;
|
|
147
148
|
webmap?: WebMapState;
|
|
148
149
|
services?: import("../types").ServiceState;
|
|
149
150
|
layers?: import("../types").LayerState;
|
|
@@ -163,7 +164,7 @@ export declare const getMapBaseLayers: ((state: {
|
|
|
163
164
|
*/
|
|
164
165
|
export declare const getMapOverLayersIds: ((state: {
|
|
165
166
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
166
|
-
ui?:
|
|
167
|
+
ui?: UIStoreType;
|
|
167
168
|
webmap?: WebMapState;
|
|
168
169
|
services?: import("../types").ServiceState;
|
|
169
170
|
layers?: import("../types").LayerState;
|
|
@@ -183,7 +184,7 @@ export declare const getMapOverLayersIds: ((state: {
|
|
|
183
184
|
*/
|
|
184
185
|
export declare const getMapOverLayers: ((state: {
|
|
185
186
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
186
|
-
ui?:
|
|
187
|
+
ui?: UIStoreType;
|
|
187
188
|
webmap?: WebMapState;
|
|
188
189
|
services?: import("../types").ServiceState;
|
|
189
190
|
layers?: import("../types").LayerState;
|
|
@@ -203,7 +204,7 @@ export declare const getMapOverLayers: ((state: {
|
|
|
203
204
|
*/
|
|
204
205
|
export declare const getMapDimensions: ((state: {
|
|
205
206
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
206
|
-
ui?:
|
|
207
|
+
ui?: UIStoreType;
|
|
207
208
|
webmap?: WebMapState;
|
|
208
209
|
services?: import("../types").ServiceState;
|
|
209
210
|
layers?: import("../types").LayerState;
|
|
@@ -224,7 +225,7 @@ export declare const getMapDimensions: ((state: {
|
|
|
224
225
|
*/
|
|
225
226
|
export declare const getMapDimension: ((state: {
|
|
226
227
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
227
|
-
ui?:
|
|
228
|
+
ui?: UIStoreType;
|
|
228
229
|
webmap?: WebMapState;
|
|
229
230
|
services?: import("../types").ServiceState;
|
|
230
231
|
layers?: import("../types").LayerState;
|
|
@@ -244,7 +245,7 @@ export declare const getMapDimension: ((state: {
|
|
|
244
245
|
*/
|
|
245
246
|
export declare const getSrs: ((state: {
|
|
246
247
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
247
|
-
ui?:
|
|
248
|
+
ui?: UIStoreType;
|
|
248
249
|
webmap?: WebMapState;
|
|
249
250
|
services?: import("../types").ServiceState;
|
|
250
251
|
layers?: import("../types").LayerState;
|
|
@@ -264,12 +265,12 @@ export declare const getSrs: ((state: {
|
|
|
264
265
|
*/
|
|
265
266
|
export declare const getBbox: ((state: {
|
|
266
267
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
267
|
-
ui?:
|
|
268
|
+
ui?: UIStoreType;
|
|
268
269
|
webmap?: WebMapState;
|
|
269
270
|
services?: import("../types").ServiceState;
|
|
270
271
|
layers?: import("../types").LayerState;
|
|
271
272
|
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
272
|
-
}, params_0: string) =>
|
|
273
|
+
}, params_0: string) => Bbox) & import("reselect").OutputSelectorFields<((args_0: WebMap) => Bbox) & {
|
|
273
274
|
clearCache: () => void;
|
|
274
275
|
}> & {
|
|
275
276
|
clearCache: () => void;
|
|
@@ -284,7 +285,7 @@ export declare const getBbox: ((state: {
|
|
|
284
285
|
*/
|
|
285
286
|
export declare const isAnimating: ((state: {
|
|
286
287
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
287
|
-
ui?:
|
|
288
|
+
ui?: UIStoreType;
|
|
288
289
|
webmap?: WebMapState;
|
|
289
290
|
services?: import("../types").ServiceState;
|
|
290
291
|
layers?: import("../types").LayerState;
|
|
@@ -304,7 +305,7 @@ export declare const isAnimating: ((state: {
|
|
|
304
305
|
*/
|
|
305
306
|
export declare const linkedMapAnimationInfo: ((state: {
|
|
306
307
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
307
|
-
ui?:
|
|
308
|
+
ui?: UIStoreType;
|
|
308
309
|
webmap?: WebMapState;
|
|
309
310
|
services?: import("../types").ServiceState;
|
|
310
311
|
layers?: import("../types").LayerState;
|
|
@@ -333,7 +334,7 @@ export declare const linkedMapAnimationInfo: ((state: {
|
|
|
333
334
|
*/
|
|
334
335
|
export declare const getAnimationStartTime: ((state: {
|
|
335
336
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
336
|
-
ui?:
|
|
337
|
+
ui?: UIStoreType;
|
|
337
338
|
webmap?: WebMapState;
|
|
338
339
|
services?: import("../types").ServiceState;
|
|
339
340
|
layers?: import("../types").LayerState;
|
|
@@ -353,7 +354,7 @@ export declare const getAnimationStartTime: ((state: {
|
|
|
353
354
|
*/
|
|
354
355
|
export declare const getAnimationEndTime: ((state: {
|
|
355
356
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
356
|
-
ui?:
|
|
357
|
+
ui?: UIStoreType;
|
|
357
358
|
webmap?: WebMapState;
|
|
358
359
|
services?: import("../types").ServiceState;
|
|
359
360
|
layers?: import("../types").LayerState;
|
|
@@ -373,7 +374,7 @@ export declare const getAnimationEndTime: ((state: {
|
|
|
373
374
|
*/
|
|
374
375
|
export declare const isAutoUpdating: ((state: {
|
|
375
376
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
376
|
-
ui?:
|
|
377
|
+
ui?: UIStoreType;
|
|
377
378
|
webmap?: WebMapState;
|
|
378
379
|
services?: import("../types").ServiceState;
|
|
379
380
|
layers?: import("../types").LayerState;
|
|
@@ -392,7 +393,7 @@ export declare const isAutoUpdating: ((state: {
|
|
|
392
393
|
*/
|
|
393
394
|
export declare const getActiveLayerId: ((state: {
|
|
394
395
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
395
|
-
ui?:
|
|
396
|
+
ui?: UIStoreType;
|
|
396
397
|
webmap?: WebMapState;
|
|
397
398
|
services?: import("../types").ServiceState;
|
|
398
399
|
layers?: import("../types").LayerState;
|
|
@@ -412,7 +413,7 @@ export declare const getActiveLayerId: ((state: {
|
|
|
412
413
|
*/
|
|
413
414
|
export declare const getMapTimeSliderScale: ((state: {
|
|
414
415
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
415
|
-
ui?:
|
|
416
|
+
ui?: UIStoreType;
|
|
416
417
|
webmap?: WebMapState;
|
|
417
418
|
services?: import("../types").ServiceState;
|
|
418
419
|
layers?: import("../types").LayerState;
|
|
@@ -432,7 +433,7 @@ export declare const getMapTimeSliderScale: ((state: {
|
|
|
432
433
|
*/
|
|
433
434
|
export declare const getMapTimeStep: ((state: {
|
|
434
435
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
435
|
-
ui?:
|
|
436
|
+
ui?: UIStoreType;
|
|
436
437
|
webmap?: WebMapState;
|
|
437
438
|
services?: import("../types").ServiceState;
|
|
438
439
|
layers?: import("../types").LayerState;
|
|
@@ -452,7 +453,7 @@ export declare const getMapTimeStep: ((state: {
|
|
|
452
453
|
*/
|
|
453
454
|
export declare const getMapAnimationDelay: ((state: {
|
|
454
455
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
455
|
-
ui?:
|
|
456
|
+
ui?: UIStoreType;
|
|
456
457
|
webmap?: WebMapState;
|
|
457
458
|
services?: import("../types").ServiceState;
|
|
458
459
|
layers?: import("../types").LayerState;
|
|
@@ -472,7 +473,7 @@ export declare const getMapAnimationDelay: ((state: {
|
|
|
472
473
|
*/
|
|
473
474
|
export declare const getMapTimeSliderCenterTime: ((state: {
|
|
474
475
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
475
|
-
ui?:
|
|
476
|
+
ui?: UIStoreType;
|
|
476
477
|
webmap?: WebMapState;
|
|
477
478
|
services?: import("../types").ServiceState;
|
|
478
479
|
layers?: import("../types").LayerState;
|
|
@@ -492,7 +493,7 @@ export declare const getMapTimeSliderCenterTime: ((state: {
|
|
|
492
493
|
*/
|
|
493
494
|
export declare const getMapTimeSliderSecondsPerPx: ((state: {
|
|
494
495
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
495
|
-
ui?:
|
|
496
|
+
ui?: UIStoreType;
|
|
496
497
|
webmap?: WebMapState;
|
|
497
498
|
services?: import("../types").ServiceState;
|
|
498
499
|
layers?: import("../types").LayerState;
|
|
@@ -512,7 +513,7 @@ export declare const getMapTimeSliderSecondsPerPx: ((state: {
|
|
|
512
513
|
*/
|
|
513
514
|
export declare const getMapTimeSliderDataScaleToSecondsPerPx: ((state: {
|
|
514
515
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
515
|
-
ui?:
|
|
516
|
+
ui?: UIStoreType;
|
|
516
517
|
webmap?: WebMapState;
|
|
517
518
|
services?: import("../types").ServiceState;
|
|
518
519
|
layers?: import("../types").LayerState;
|
|
@@ -532,7 +533,7 @@ export declare const getMapTimeSliderDataScaleToSecondsPerPx: ((state: {
|
|
|
532
533
|
*/
|
|
533
534
|
export declare const isTimestepAuto: ((state: {
|
|
534
535
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
535
|
-
ui?:
|
|
536
|
+
ui?: UIStoreType;
|
|
536
537
|
webmap?: WebMapState;
|
|
537
538
|
services?: import("../types").ServiceState;
|
|
538
539
|
layers?: import("../types").LayerState;
|
|
@@ -552,7 +553,47 @@ export declare const isTimestepAuto: ((state: {
|
|
|
552
553
|
*/
|
|
553
554
|
export declare const isTimeSliderHoverOn: ((state: {
|
|
554
555
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
555
|
-
ui?:
|
|
556
|
+
ui?: UIStoreType;
|
|
557
|
+
webmap?: WebMapState;
|
|
558
|
+
services?: import("../types").ServiceState;
|
|
559
|
+
layers?: import("../types").LayerState;
|
|
560
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
561
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
|
|
562
|
+
clearCache: () => void;
|
|
563
|
+
}> & {
|
|
564
|
+
clearCache: () => void;
|
|
565
|
+
};
|
|
566
|
+
/**
|
|
567
|
+
* Returns map if zoomcontrols are visible
|
|
568
|
+
*
|
|
569
|
+
* Example: isZoomControlsVisible = isZoomControlsVisible(store, 'mapid_1')
|
|
570
|
+
* @param {object} store store: object - store object
|
|
571
|
+
* @param {string} mapId mapId: string - Id of the map
|
|
572
|
+
* @returns {boolean} returnType: boolean
|
|
573
|
+
*/
|
|
574
|
+
export declare const isZoomControlsVisible: ((state: {
|
|
575
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
576
|
+
ui?: UIStoreType;
|
|
577
|
+
webmap?: WebMapState;
|
|
578
|
+
services?: import("../types").ServiceState;
|
|
579
|
+
layers?: import("../types").LayerState;
|
|
580
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
581
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
|
|
582
|
+
clearCache: () => void;
|
|
583
|
+
}> & {
|
|
584
|
+
clearCache: () => void;
|
|
585
|
+
};
|
|
586
|
+
/**
|
|
587
|
+
* Returns map is time slider visible
|
|
588
|
+
*
|
|
589
|
+
* Example: isTimeSliderHoverOn = isTimeSliderVisible(store, 'mapid_1')
|
|
590
|
+
* @param {object} store store: object - store object
|
|
591
|
+
* @param {string} mapId mapId: string - Id of the map
|
|
592
|
+
* @returns {boolean} returnType: boolean
|
|
593
|
+
*/
|
|
594
|
+
export declare const isTimeSliderVisible: ((state: {
|
|
595
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
596
|
+
ui?: UIStoreType;
|
|
556
597
|
webmap?: WebMapState;
|
|
557
598
|
services?: import("../types").ServiceState;
|
|
558
599
|
layers?: import("../types").LayerState;
|
|
@@ -573,7 +614,7 @@ export declare const isTimeSliderHoverOn: ((state: {
|
|
|
573
614
|
*/
|
|
574
615
|
export declare const getIsLayerActiveLayer: ((state: {
|
|
575
616
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
576
|
-
ui?:
|
|
617
|
+
ui?: UIStoreType;
|
|
577
618
|
webmap?: WebMapState;
|
|
578
619
|
services?: import("../types").ServiceState;
|
|
579
620
|
layers?: import("../types").LayerState;
|
|
@@ -593,7 +634,7 @@ export declare const getIsLayerActiveLayer: ((state: {
|
|
|
593
634
|
*/
|
|
594
635
|
export declare const getMapIdFromLayerId: ((state: {
|
|
595
636
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
596
|
-
ui?:
|
|
637
|
+
ui?: UIStoreType;
|
|
597
638
|
webmap?: WebMapState;
|
|
598
639
|
services?: import("../types").ServiceState;
|
|
599
640
|
layers?: import("../types").LayerState;
|
|
@@ -614,7 +655,7 @@ export declare const getMapIdFromLayerId: ((state: {
|
|
|
614
655
|
*/
|
|
615
656
|
export declare const getLayerIdByLayerName: ((state: {
|
|
616
657
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
617
|
-
ui?:
|
|
658
|
+
ui?: UIStoreType;
|
|
618
659
|
webmap?: WebMapState;
|
|
619
660
|
services?: import("../types").ServiceState;
|
|
620
661
|
layers?: import("../types").LayerState;
|
|
@@ -635,7 +676,7 @@ export declare const getLayerIdByLayerName: ((state: {
|
|
|
635
676
|
*/
|
|
636
677
|
export declare const getLayerIndexByLayerId: ((state: {
|
|
637
678
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
638
|
-
ui?:
|
|
679
|
+
ui?: UIStoreType;
|
|
639
680
|
webmap?: WebMapState;
|
|
640
681
|
services?: import("../types").ServiceState;
|
|
641
682
|
layers?: import("../types").LayerState;
|
|
@@ -656,7 +697,7 @@ export declare const getLayerIndexByLayerId: ((state: {
|
|
|
656
697
|
*/
|
|
657
698
|
export declare const getLayerByLayerIndex: ((state: {
|
|
658
699
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
659
|
-
ui?:
|
|
700
|
+
ui?: UIStoreType;
|
|
660
701
|
webmap?: WebMapState;
|
|
661
702
|
services?: import("../types").ServiceState;
|
|
662
703
|
layers?: import("../types").LayerState;
|
|
@@ -675,7 +716,7 @@ export declare const getLayerByLayerIndex: ((state: {
|
|
|
675
716
|
*/
|
|
676
717
|
export declare const getAllUniqueDimensions: ((state: {
|
|
677
718
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
678
|
-
ui?:
|
|
719
|
+
ui?: UIStoreType;
|
|
679
720
|
webmap?: WebMapState;
|
|
680
721
|
services?: import("../types").ServiceState;
|
|
681
722
|
layers?: import("../types").LayerState;
|
|
@@ -695,7 +736,7 @@ export declare const getAllUniqueDimensions: ((state: {
|
|
|
695
736
|
*/
|
|
696
737
|
export declare const getPinLocation: ((state: {
|
|
697
738
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
698
|
-
ui?:
|
|
739
|
+
ui?: UIStoreType;
|
|
699
740
|
webmap?: WebMapState;
|
|
700
741
|
services?: import("../types").ServiceState;
|
|
701
742
|
layers?: import("../types").LayerState;
|
|
@@ -715,7 +756,27 @@ export declare const getPinLocation: ((state: {
|
|
|
715
756
|
*/
|
|
716
757
|
export declare const getDisableMapPin: ((state: {
|
|
717
758
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
718
|
-
ui?:
|
|
759
|
+
ui?: UIStoreType;
|
|
760
|
+
webmap?: WebMapState;
|
|
761
|
+
services?: import("../types").ServiceState;
|
|
762
|
+
layers?: import("../types").LayerState;
|
|
763
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
764
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
|
|
765
|
+
clearCache: () => void;
|
|
766
|
+
}> & {
|
|
767
|
+
clearCache: () => void;
|
|
768
|
+
};
|
|
769
|
+
/**
|
|
770
|
+
* Returns the diplay map pin boolean for the current map
|
|
771
|
+
*
|
|
772
|
+
* Example getDisplayMapPin(store);
|
|
773
|
+
* @param {object} store store: object - store object
|
|
774
|
+
* @param {string} mapId mapId: string - Id of the map
|
|
775
|
+
* @returns {boolean} returnType: boolean
|
|
776
|
+
*/
|
|
777
|
+
export declare const getDisplayMapPin: ((state: {
|
|
778
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
779
|
+
ui?: UIStoreType;
|
|
719
780
|
webmap?: WebMapState;
|
|
720
781
|
services?: import("../types").ServiceState;
|
|
721
782
|
layers?: import("../types").LayerState;
|
|
@@ -735,7 +796,7 @@ export declare const getDisableMapPin: ((state: {
|
|
|
735
796
|
*/
|
|
736
797
|
export declare const getSelectedFeatureIndex: ((state: {
|
|
737
798
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
738
|
-
ui?:
|
|
799
|
+
ui?: UIStoreType;
|
|
739
800
|
webmap?: WebMapState;
|
|
740
801
|
services?: import("../types").ServiceState;
|
|
741
802
|
layers?: import("../types").LayerState;
|
|
@@ -755,7 +816,27 @@ export declare const getSelectedFeatureIndex: ((state: {
|
|
|
755
816
|
*/
|
|
756
817
|
export declare const getActiveMapPresetId: ((state: {
|
|
757
818
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
758
|
-
ui?:
|
|
819
|
+
ui?: UIStoreType;
|
|
820
|
+
webmap?: WebMapState;
|
|
821
|
+
services?: import("../types").ServiceState;
|
|
822
|
+
layers?: import("../types").LayerState;
|
|
823
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
824
|
+
}, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
|
|
825
|
+
clearCache: () => void;
|
|
826
|
+
}> & {
|
|
827
|
+
clearCache: () => void;
|
|
828
|
+
};
|
|
829
|
+
/**
|
|
830
|
+
* Returns the legend id
|
|
831
|
+
*
|
|
832
|
+
* Example getLegendId(store, mapId);
|
|
833
|
+
* @param {object} store store: object - store object
|
|
834
|
+
* @param {string} mapId mapId: string - Id of the map
|
|
835
|
+
* @returns {boolean} returnType: id or undefined
|
|
836
|
+
*/
|
|
837
|
+
export declare const getLegendId: ((state: {
|
|
838
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
839
|
+
ui?: UIStoreType;
|
|
759
840
|
webmap?: WebMapState;
|
|
760
841
|
services?: import("../types").ServiceState;
|
|
761
842
|
layers?: import("../types").LayerState;
|
|
@@ -775,12 +856,12 @@ export declare const getActiveMapPresetId: ((state: {
|
|
|
775
856
|
*/
|
|
776
857
|
export declare const getMapPreset: ((state: {
|
|
777
858
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
778
|
-
ui?:
|
|
859
|
+
ui?: UIStoreType;
|
|
779
860
|
webmap?: WebMapState;
|
|
780
861
|
services?: import("../types").ServiceState;
|
|
781
862
|
layers?: import("../types").LayerState;
|
|
782
863
|
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
783
|
-
}, params_0: string) => MapPreset) & import("reselect").OutputSelectorFields<((args_0: import("../types").ReduxLayer[], args_1: import("../types").ReduxLayer[], args_2: import("../types").ReduxLayer[], args_3:
|
|
864
|
+
}, params_0: string) => MapPreset) & import("reselect").OutputSelectorFields<((args_0: import("../types").ReduxLayer[], args_1: import("../types").ReduxLayer[], args_2: import("../types").ReduxLayer[], args_3: Bbox, args_4: string, args_5: string, args_6: boolean, args_7: boolean, args_8: boolean, args_9: boolean, args_10: boolean, args_11: number, args_12: number, args_13: boolean, args_14: string, args_15: UIStoreType) => MapPreset) & {
|
|
784
865
|
clearCache: () => void;
|
|
785
866
|
}> & {
|
|
786
867
|
clearCache: () => void;
|
|
@@ -795,7 +876,7 @@ export declare const getMapPreset: ((state: {
|
|
|
795
876
|
*/
|
|
796
877
|
export declare const getIsMapPresetLoading: ((state: {
|
|
797
878
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
798
|
-
ui?:
|
|
879
|
+
ui?: UIStoreType;
|
|
799
880
|
webmap?: WebMapState;
|
|
800
881
|
services?: import("../types").ServiceState;
|
|
801
882
|
layers?: import("../types").LayerState;
|
|
@@ -815,7 +896,7 @@ export declare const getIsMapPresetLoading: ((state: {
|
|
|
815
896
|
*/
|
|
816
897
|
export declare const getHasMapPresetChanges: ((state: {
|
|
817
898
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
818
|
-
ui?:
|
|
899
|
+
ui?: UIStoreType;
|
|
819
900
|
webmap?: WebMapState;
|
|
820
901
|
services?: import("../types").ServiceState;
|
|
821
902
|
layers?: import("../types").LayerState;
|
|
@@ -835,7 +916,7 @@ export declare const getHasMapPresetChanges: ((state: {
|
|
|
835
916
|
*/
|
|
836
917
|
export declare const getMapPresetError: ((state: {
|
|
837
918
|
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
838
|
-
ui?:
|
|
919
|
+
ui?: UIStoreType;
|
|
839
920
|
webmap?: WebMapState;
|
|
840
921
|
services?: import("../types").ServiceState;
|
|
841
922
|
layers?: import("../types").LayerState;
|