@opengeoweb/store 9.28.0 → 9.29.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 +1377 -1377
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/store/coreModuleConfig.d.ts +1 -1
- package/src/store/drawingtool/config.d.ts +4 -4
- package/src/store/drawingtool/index.d.ts +6 -6
- package/src/store/drawingtool/listener.d.ts +3 -3
- package/src/store/drawingtool/listener.spec.d.ts +1 -1
- package/src/store/drawingtool/reducer.d.ts +46 -46
- package/src/store/drawingtool/reducer.spec.d.ts +4 -4
- package/src/store/drawingtool/selectors.d.ts +43 -43
- package/src/store/drawingtool/selectors.spec.d.ts +1 -1
- package/src/store/drawingtool/testUtils.d.ts +1 -1
- package/src/store/drawingtool/utils.d.ts +1 -1
- package/src/store/drawingtool/utils.spec.d.ts +1 -1
- package/src/store/generic/actions.d.ts +28 -28
- package/src/store/generic/config.d.ts +5 -5
- package/src/store/generic/index.d.ts +17 -17
- package/src/store/generic/listener.d.ts +2 -2
- package/src/store/generic/listener.spec.d.ts +1 -1
- package/src/store/generic/loadingIndicator/constants.d.ts +1 -1
- package/src/store/generic/loadingIndicator/index.d.ts +3 -3
- package/src/store/generic/loadingIndicator/reducer.d.ts +13 -13
- package/src/store/generic/loadingIndicator/reducer.spec.d.ts +1 -1
- package/src/store/generic/loadingIndicator/selectors.d.ts +22 -22
- package/src/store/generic/loadingIndicator/selectors.spec.d.ts +1 -1
- package/src/store/generic/loadingIndicator/types.d.ts +22 -22
- package/src/store/generic/selectors.d.ts +12 -12
- package/src/store/generic/selectors.spec.d.ts +1 -1
- package/src/store/generic/synchronizationActions/actions.d.ts +11 -11
- package/src/store/generic/synchronizationActions/types.d.ts +34 -34
- package/src/store/generic/synchronizationGroups/__mocks__/mockState.d.ts +2 -2
- package/src/store/generic/synchronizationGroups/constants.d.ts +4 -4
- package/src/store/generic/synchronizationGroups/index.d.ts +6 -6
- package/src/store/generic/synchronizationGroups/listener.d.ts +2 -2
- package/src/store/generic/synchronizationGroups/listener.spec.d.ts +1 -1
- package/src/store/generic/synchronizationGroups/reducer.d.ts +26 -26
- package/src/store/generic/synchronizationGroups/reducer.spec.d.ts +1 -1
- package/src/store/generic/synchronizationGroups/selector.d.ts +13 -13
- package/src/store/generic/synchronizationGroups/selectors.d.ts +64 -64
- package/src/store/generic/synchronizationGroups/selectors.spec.d.ts +1 -1
- package/src/store/generic/synchronizationGroups/types.d.ts +100 -100
- package/src/store/generic/synchronizationGroups/utils.d.ts +76 -76
- package/src/store/generic/synchronizationGroups/utils.spec.d.ts +1 -1
- package/src/store/generic/types.d.ts +23 -23
- package/src/store/generic/utils.d.ts +9 -9
- package/src/store/generic/utils.spec.d.ts +1 -1
- package/src/store/index.d.ts +14 -14
- package/src/store/mapStore/config.d.ts +9 -9
- package/src/store/mapStore/index.d.ts +96 -96
- package/src/store/mapStore/layers/index.d.ts +5 -5
- package/src/store/mapStore/layers/listeners.d.ts +2 -2
- package/src/store/mapStore/layers/listeners.spec.d.ts +1 -1
- package/src/store/mapStore/layers/reducer.d.ts +87 -87
- package/src/store/mapStore/layers/reducer.spec.d.ts +1 -1
- package/src/store/mapStore/layers/selectors.d.ts +380 -380
- package/src/store/mapStore/layers/selectors.spec.d.ts +1 -1
- package/src/store/mapStore/layers/types.d.ts +166 -166
- package/src/store/mapStore/layers/utils.d.ts +23 -23
- package/src/store/mapStore/layers/utils.spec.d.ts +1 -1
- package/src/store/mapStore/map/actions.d.ts +9 -9
- package/src/store/mapStore/map/constants.d.ts +1 -1
- package/src/store/mapStore/map/enums.d.ts +3 -3
- package/src/store/mapStore/map/filterLayers.d.ts +10 -10
- package/src/store/mapStore/map/filterLayers.spec.d.ts +1 -1
- package/src/store/mapStore/map/index.d.ts +25 -25
- package/src/store/mapStore/map/listener.d.ts +4 -4
- package/src/store/mapStore/map/listener.spec.d.ts +1 -1
- package/src/store/mapStore/map/mapListenerAnimationUtils.d.ts +38 -38
- package/src/store/mapStore/map/mapListenerAnimationUtils.spec.d.ts +1 -1
- package/src/store/mapStore/map/mapUiListener.d.ts +2 -2
- package/src/store/mapStore/map/mapUiListener.spec.d.ts +1 -1
- package/src/store/mapStore/map/metronomeListener.d.ts +2 -2
- package/src/store/mapStore/map/reducer.d.ts +109 -109
- package/src/store/mapStore/map/reducer.spec.d.ts +1 -1
- package/src/store/mapStore/map/replaceLayerIdsToEnsureUniqueLayerIdsInStore.d.ts +7 -7
- package/src/store/mapStore/map/replaceLayerIdsToEnsureUniqueLayerIdsInStore.spec.d.ts +1 -1
- package/src/store/mapStore/map/selectors.d.ts +733 -733
- package/src/store/mapStore/map/selectors.spec.d.ts +1 -1
- package/src/store/mapStore/map/types.d.ts +233 -233
- package/src/store/mapStore/map/utils.d.ts +85 -85
- package/src/store/mapStore/map/utils.spec.d.ts +1 -1
- package/src/store/mapStore/service/WMS111GetCapabilitiesGeoServicesRADAR.d.ts +2 -2
- package/src/store/mapStore/service/index.d.ts +4 -4
- package/src/store/mapStore/service/listener.d.ts +5 -5
- package/src/store/mapStore/service/listener.spec.d.ts +1 -1
- package/src/store/mapStore/service/localStorage.d.ts +3 -3
- package/src/store/mapStore/service/localStorage.spec.d.ts +1 -1
- package/src/store/mapStore/service/reducer.d.ts +11 -11
- package/src/store/mapStore/service/reducer.spec.d.ts +1 -1
- package/src/store/mapStore/service/selectors.d.ts +80 -80
- package/src/store/mapStore/service/selectors.spec.d.ts +1 -1
- package/src/store/mapStore/service/types.d.ts +50 -50
- package/src/store/mapStore/storeTestSettings.d.ts +7 -7
- package/src/store/mapStore/storeTestUtils.d.ts +17 -17
- package/src/store/mapStore/types.d.ts +11 -11
- package/src/store/router/config.d.ts +4 -4
- package/src/store/router/index.d.ts +3 -3
- package/src/store/router/listener.d.ts +2 -2
- package/src/store/router/listener.spec.d.ts +1 -1
- package/src/store/router/reducer.d.ts +9 -9
- package/src/store/router/reducer.spec.d.ts +1 -1
- package/src/store/router/types.d.ts +6 -6
- package/src/store/router/utils.d.ts +3 -3
- package/src/store/testUtils/Providers.d.ts +13 -13
- package/src/store/types.d.ts +7 -7
- package/src/store/ui/config.d.ts +4 -4
- package/src/store/ui/index.d.ts +4 -4
- package/src/store/ui/reducer.d.ts +33 -33
- package/src/store/ui/reducer.spec.d.ts +1 -1
- package/src/store/ui/selectors.d.ts +102 -102
- package/src/store/ui/selectors.spec.d.ts +1 -1
- package/src/store/ui/types.d.ts +78 -78
- package/src/store/ui/useSetupDialog.d.ts +11 -11
- package/src/store/ui/useSetupDialog.spec.d.ts +1 -1
- package/src/store/utils.d.ts +6 -6
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
import { CoreAppStore } from '../../types';
|
|
2
|
-
import { AddLayerPayload, DeleteLayerPayload, MoveLayerPayload, SetAutoLayerIdPayload, SetBaseLayersPayload } from '../../mapStore/types';
|
|
3
|
-
import { SyncLayerPayloads, LayerActionPayloadsWithLayerIds } from '../types';
|
|
4
|
-
import { SyncType } from './types';
|
|
5
|
-
interface FoundTargets {
|
|
6
|
-
payload: SyncLayerPayloads;
|
|
7
|
-
targetId: string;
|
|
8
|
-
layerId: string;
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* Tries to find the layerId's in the other map based on the payload of the action. It works for all layer actions.
|
|
12
|
-
* @param state
|
|
13
|
-
* @param mapId
|
|
14
|
-
* @param targetMapId
|
|
15
|
-
* @param payload
|
|
16
|
-
* @returns
|
|
17
|
-
*/
|
|
18
|
-
export declare const getTargetLayerIdFromPayload: (state: CoreAppStore, mapId: string, targetMapId: string, payload: SyncLayerPayloads) => string;
|
|
19
|
-
/**
|
|
20
|
-
* Local helper function used by getLayerDeleteActionsTargets, getLayerActionsTargets, getAddLayerActionsTargets, getTargetLayerIdFromPayload to find the targets
|
|
21
|
-
* @param state
|
|
22
|
-
* @param payload
|
|
23
|
-
* @param actionType
|
|
24
|
-
* @param sourceMapId
|
|
25
|
-
* @returns The found targets
|
|
26
|
-
*/
|
|
27
|
-
export declare const findTargets: (state: CoreAppStore, payload: SyncLayerPayloads, actionType: SyncType, sourceMapId: string) => FoundTargets[];
|
|
28
|
-
/**
|
|
29
|
-
* These targets are found for layer actions that work with a layerId like: SetLayerName, SetLayerEnabled, SetLayerOpacity, SetLayerDimension and SetLayerStyle
|
|
30
|
-
* @param state
|
|
31
|
-
* @param payload
|
|
32
|
-
* @param actionType
|
|
33
|
-
* @returns
|
|
34
|
-
*/
|
|
35
|
-
export declare const getLayerActionsTargets: (state: CoreAppStore, payload: LayerActionPayloadsWithLayerIds, actionType: SyncType) => LayerActionPayloadsWithLayerIds[];
|
|
36
|
-
/**
|
|
37
|
-
* These targets are found for the layer/map action AddLayer. AddLayer does not have a layerId (because it's new)
|
|
38
|
-
* @param state
|
|
39
|
-
* @param payload
|
|
40
|
-
* @param actionType
|
|
41
|
-
* @returns
|
|
42
|
-
*/
|
|
43
|
-
export declare const getAddLayerActionsTargets: (state: CoreAppStore, payload: AddLayerPayload, actionType: SyncType) => AddLayerPayload[];
|
|
44
|
-
/**
|
|
45
|
-
* These targets are found for the layer/map action DeleteLayer. The layer is already gone, so there is no layerId anymore. Using layerIndex instead.
|
|
46
|
-
* @param state
|
|
47
|
-
* @param payload
|
|
48
|
-
* @param actionType
|
|
49
|
-
* @returns
|
|
50
|
-
*/
|
|
51
|
-
export declare const getLayerDeleteActionsTargets: (state: CoreAppStore, payload: DeleteLayerPayload, actionType: SyncType) => DeleteLayerPayload[];
|
|
52
|
-
/**
|
|
53
|
-
* These targets are found for the layer/map action MoveLayer. Here layers are referenced by newIndex and oldIndex.
|
|
54
|
-
* @param state
|
|
55
|
-
* @param payload
|
|
56
|
-
* @param actionType
|
|
57
|
-
* @returns
|
|
58
|
-
*/
|
|
59
|
-
export declare const getLayerMoveActionsTargets: (state: CoreAppStore, payload: MoveLayerPayload, actionType: SyncType) => MoveLayerPayload[];
|
|
60
|
-
/**
|
|
61
|
-
* These targets are found for the map action SetAutoLayerId. It needs both a target mapId and layerId
|
|
62
|
-
* @param state
|
|
63
|
-
* @param payload
|
|
64
|
-
* @param actionType
|
|
65
|
-
* @returns
|
|
66
|
-
*/
|
|
67
|
-
export declare const getSetAutoLayerIdActionsTargets: (state: CoreAppStore, payload: SetAutoLayerIdPayload, actionType: SyncType) => LayerActionPayloadsWithLayerIds[];
|
|
68
|
-
/**
|
|
69
|
-
* These targets are found for baselayer actions that work with a mapId like: setBaseLayers
|
|
70
|
-
* @param state
|
|
71
|
-
* @param payload
|
|
72
|
-
* @param actionType
|
|
73
|
-
* @returns
|
|
74
|
-
*/
|
|
75
|
-
export declare const getMapBaseLayerActionsTargets: (state: CoreAppStore, payload: SetBaseLayersPayload, actionType: SyncType) => SetBaseLayersPayload[];
|
|
76
|
-
export {};
|
|
1
|
+
import { CoreAppStore } from '../../types';
|
|
2
|
+
import { AddLayerPayload, DeleteLayerPayload, MoveLayerPayload, SetAutoLayerIdPayload, SetBaseLayersPayload } from '../../mapStore/types';
|
|
3
|
+
import { SyncLayerPayloads, LayerActionPayloadsWithLayerIds } from '../types';
|
|
4
|
+
import { SyncType } from './types';
|
|
5
|
+
interface FoundTargets {
|
|
6
|
+
payload: SyncLayerPayloads;
|
|
7
|
+
targetId: string;
|
|
8
|
+
layerId: string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Tries to find the layerId's in the other map based on the payload of the action. It works for all layer actions.
|
|
12
|
+
* @param state
|
|
13
|
+
* @param mapId
|
|
14
|
+
* @param targetMapId
|
|
15
|
+
* @param payload
|
|
16
|
+
* @returns
|
|
17
|
+
*/
|
|
18
|
+
export declare const getTargetLayerIdFromPayload: (state: CoreAppStore, mapId: string, targetMapId: string, payload: SyncLayerPayloads) => string;
|
|
19
|
+
/**
|
|
20
|
+
* Local helper function used by getLayerDeleteActionsTargets, getLayerActionsTargets, getAddLayerActionsTargets, getTargetLayerIdFromPayload to find the targets
|
|
21
|
+
* @param state
|
|
22
|
+
* @param payload
|
|
23
|
+
* @param actionType
|
|
24
|
+
* @param sourceMapId
|
|
25
|
+
* @returns The found targets
|
|
26
|
+
*/
|
|
27
|
+
export declare const findTargets: (state: CoreAppStore, payload: SyncLayerPayloads, actionType: SyncType, sourceMapId: string) => FoundTargets[];
|
|
28
|
+
/**
|
|
29
|
+
* These targets are found for layer actions that work with a layerId like: SetLayerName, SetLayerEnabled, SetLayerOpacity, SetLayerDimension and SetLayerStyle
|
|
30
|
+
* @param state
|
|
31
|
+
* @param payload
|
|
32
|
+
* @param actionType
|
|
33
|
+
* @returns
|
|
34
|
+
*/
|
|
35
|
+
export declare const getLayerActionsTargets: (state: CoreAppStore, payload: LayerActionPayloadsWithLayerIds, actionType: SyncType) => LayerActionPayloadsWithLayerIds[];
|
|
36
|
+
/**
|
|
37
|
+
* These targets are found for the layer/map action AddLayer. AddLayer does not have a layerId (because it's new)
|
|
38
|
+
* @param state
|
|
39
|
+
* @param payload
|
|
40
|
+
* @param actionType
|
|
41
|
+
* @returns
|
|
42
|
+
*/
|
|
43
|
+
export declare const getAddLayerActionsTargets: (state: CoreAppStore, payload: AddLayerPayload, actionType: SyncType) => AddLayerPayload[];
|
|
44
|
+
/**
|
|
45
|
+
* These targets are found for the layer/map action DeleteLayer. The layer is already gone, so there is no layerId anymore. Using layerIndex instead.
|
|
46
|
+
* @param state
|
|
47
|
+
* @param payload
|
|
48
|
+
* @param actionType
|
|
49
|
+
* @returns
|
|
50
|
+
*/
|
|
51
|
+
export declare const getLayerDeleteActionsTargets: (state: CoreAppStore, payload: DeleteLayerPayload, actionType: SyncType) => DeleteLayerPayload[];
|
|
52
|
+
/**
|
|
53
|
+
* These targets are found for the layer/map action MoveLayer. Here layers are referenced by newIndex and oldIndex.
|
|
54
|
+
* @param state
|
|
55
|
+
* @param payload
|
|
56
|
+
* @param actionType
|
|
57
|
+
* @returns
|
|
58
|
+
*/
|
|
59
|
+
export declare const getLayerMoveActionsTargets: (state: CoreAppStore, payload: MoveLayerPayload, actionType: SyncType) => MoveLayerPayload[];
|
|
60
|
+
/**
|
|
61
|
+
* These targets are found for the map action SetAutoLayerId. It needs both a target mapId and layerId
|
|
62
|
+
* @param state
|
|
63
|
+
* @param payload
|
|
64
|
+
* @param actionType
|
|
65
|
+
* @returns
|
|
66
|
+
*/
|
|
67
|
+
export declare const getSetAutoLayerIdActionsTargets: (state: CoreAppStore, payload: SetAutoLayerIdPayload, actionType: SyncType) => LayerActionPayloadsWithLayerIds[];
|
|
68
|
+
/**
|
|
69
|
+
* These targets are found for baselayer actions that work with a mapId like: setBaseLayers
|
|
70
|
+
* @param state
|
|
71
|
+
* @param payload
|
|
72
|
+
* @param actionType
|
|
73
|
+
* @returns
|
|
74
|
+
*/
|
|
75
|
+
export declare const getMapBaseLayerActionsTargets: (state: CoreAppStore, payload: SetBaseLayersPayload, actionType: SyncType) => SetBaseLayersPayload[];
|
|
76
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { SetLayerStylePayload } from '@opengeoweb/webmap-react';
|
|
2
|
-
import { MapActionOrigin } from '../mapStore/map/enums';
|
|
3
|
-
import type { AddLayerPayload, DeleteLayerPayload, MoveLayerPayload, SetAutoLayerIdPayload, SetBaseLayersPayload, SetLayerDimensionPayload, SetLayerEnabledPayload, SetLayerNamePayload, SetLayerOpacityPayload } from '../mapStore/types';
|
|
4
|
-
export interface SetTimePayload {
|
|
5
|
-
sourceId: string;
|
|
6
|
-
origin: string;
|
|
7
|
-
value: string;
|
|
8
|
-
}
|
|
9
|
-
export interface SetBboxPayload {
|
|
10
|
-
sourceId: string;
|
|
11
|
-
bbox: {
|
|
12
|
-
left: number;
|
|
13
|
-
bottom: number;
|
|
14
|
-
right: number;
|
|
15
|
-
top: number;
|
|
16
|
-
};
|
|
17
|
-
srs: string;
|
|
18
|
-
origin?: MapActionOrigin | string;
|
|
19
|
-
mapId?: string;
|
|
20
|
-
}
|
|
21
|
-
export type GenericActionPayload = SetBboxPayload | SetTimePayload;
|
|
22
|
-
export type LayerActionPayloadsWithLayerIds = SetLayerOpacityPayload | SetLayerNamePayload | SetLayerEnabledPayload | SetLayerDimensionPayload | SetLayerStylePayload | SetAutoLayerIdPayload;
|
|
23
|
-
export type SyncLayerPayloads = LayerActionPayloadsWithLayerIds | AddLayerPayload | MoveLayerPayload | DeleteLayerPayload | SetBaseLayersPayload;
|
|
1
|
+
import { SetLayerStylePayload } from '@opengeoweb/webmap-react';
|
|
2
|
+
import { MapActionOrigin } from '../mapStore/map/enums';
|
|
3
|
+
import type { AddLayerPayload, DeleteLayerPayload, MoveLayerPayload, SetAutoLayerIdPayload, SetBaseLayersPayload, SetLayerDimensionPayload, SetLayerEnabledPayload, SetLayerNamePayload, SetLayerOpacityPayload } from '../mapStore/types';
|
|
4
|
+
export interface SetTimePayload {
|
|
5
|
+
sourceId: string;
|
|
6
|
+
origin: string;
|
|
7
|
+
value: string;
|
|
8
|
+
}
|
|
9
|
+
export interface SetBboxPayload {
|
|
10
|
+
sourceId: string;
|
|
11
|
+
bbox: {
|
|
12
|
+
left: number;
|
|
13
|
+
bottom: number;
|
|
14
|
+
right: number;
|
|
15
|
+
top: number;
|
|
16
|
+
};
|
|
17
|
+
srs: string;
|
|
18
|
+
origin?: MapActionOrigin | string;
|
|
19
|
+
mapId?: string;
|
|
20
|
+
}
|
|
21
|
+
export type GenericActionPayload = SetBboxPayload | SetTimePayload;
|
|
22
|
+
export type LayerActionPayloadsWithLayerIds = SetLayerOpacityPayload | SetLayerNamePayload | SetLayerEnabledPayload | SetLayerDimensionPayload | SetLayerStylePayload | SetAutoLayerIdPayload;
|
|
23
|
+
export type SyncLayerPayloads = LayerActionPayloadsWithLayerIds | AddLayerPayload | MoveLayerPayload | DeleteLayerPayload | SetBaseLayersPayload;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The removeInPlace() method modifies an array in place, by removing elements that pass the test implemented by the provided function.
|
|
3
|
-
*
|
|
4
|
-
* NOTE: This should only be used on draft properties as provided by the immer produce library, as modifying elements in place is bad practice on non draft variables.
|
|
5
|
-
*
|
|
6
|
-
* @param inDraftArray The draft array to filter, will be modified in place.
|
|
7
|
-
* @param condition Function to check each element in the array
|
|
8
|
-
*/
|
|
9
|
-
export declare const removeInPlace: <T>(inDraftArray: T[], condition: (c: T) => boolean) => void;
|
|
1
|
+
/**
|
|
2
|
+
* The removeInPlace() method modifies an array in place, by removing elements that pass the test implemented by the provided function.
|
|
3
|
+
*
|
|
4
|
+
* NOTE: This should only be used on draft properties as provided by the immer produce library, as modifying elements in place is bad practice on non draft variables.
|
|
5
|
+
*
|
|
6
|
+
* @param inDraftArray The draft array to filter, will be modified in place.
|
|
7
|
+
* @param condition Function to check each element in the array
|
|
8
|
+
*/
|
|
9
|
+
export declare const removeInPlace: <T>(inDraftArray: T[], condition: (c: T) => boolean) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
package/src/store/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export * from './mapStore';
|
|
2
|
-
export * from './ui';
|
|
3
|
-
export * from './generic';
|
|
4
|
-
export { genericListener } from './generic/listener';
|
|
5
|
-
export { mapListener } from './mapStore/map/listener';
|
|
6
|
-
export * from './router';
|
|
7
|
-
export * from './drawingtool';
|
|
8
|
-
export * from './types';
|
|
9
|
-
export * as storeTestUtils from './mapStore/storeTestUtils';
|
|
10
|
-
export * from './coreModuleConfig';
|
|
11
|
-
export * as storeUtils from './utils';
|
|
12
|
-
export * from './utils';
|
|
13
|
-
export { uiModuleConfig } from './ui/config';
|
|
14
|
-
export * from './testUtils/Providers';
|
|
1
|
+
export * from './mapStore';
|
|
2
|
+
export * from './ui';
|
|
3
|
+
export * from './generic';
|
|
4
|
+
export { genericListener } from './generic/listener';
|
|
5
|
+
export { mapListener } from './mapStore/map/listener';
|
|
6
|
+
export * from './router';
|
|
7
|
+
export * from './drawingtool';
|
|
8
|
+
export * from './types';
|
|
9
|
+
export * as storeTestUtils from './mapStore/storeTestUtils';
|
|
10
|
+
export * from './coreModuleConfig';
|
|
11
|
+
export * as storeUtils from './utils';
|
|
12
|
+
export * from './utils';
|
|
13
|
+
export { uiModuleConfig } from './ui/config';
|
|
14
|
+
export * from './testUtils/Providers';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Egg } from '@redux-eggs/core';
|
|
2
|
-
import { Store } from '@reduxjs/toolkit';
|
|
3
|
-
import { WebMapStateModuleState } from './types';
|
|
4
|
-
export declare const mapStoreReducers: {
|
|
5
|
-
webmap: import("redux").Reducer<import("./types").WebMapState
|
|
6
|
-
services: import("redux").Reducer<import("./types").ServiceState
|
|
7
|
-
layers: import("redux").Reducer<import("./types").LayerState
|
|
8
|
-
};
|
|
9
|
-
export declare const mapStoreModuleConfig: Egg<Store<WebMapStateModuleState>>;
|
|
1
|
+
import { Egg } from '@redux-eggs/core';
|
|
2
|
+
import { Store } from '@reduxjs/toolkit';
|
|
3
|
+
import { WebMapStateModuleState } from './types';
|
|
4
|
+
export declare const mapStoreReducers: {
|
|
5
|
+
webmap: import("redux").Reducer<import("./types").WebMapState>;
|
|
6
|
+
services: import("redux").Reducer<import("./types").ServiceState>;
|
|
7
|
+
layers: import("redux").Reducer<import("./types").LayerState>;
|
|
8
|
+
};
|
|
9
|
+
export declare const mapStoreModuleConfig: Egg<Store<WebMapStateModuleState>>;
|
|
@@ -1,96 +1,96 @@
|
|
|
1
|
-
export declare const mapStoreActions: {
|
|
2
|
-
serviceSetLayers: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayersForServicePayload, "serviceReducer/serviceSetLayers">;
|
|
3
|
-
mapStoreRemoveService: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").MapStoreRemoveServicePayload, "serviceReducer/mapStoreRemoveService">;
|
|
4
|
-
fetchInitialServices: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").FetchInitialServicesPayload, "serviceReducer/fetchInitialServices">;
|
|
5
|
-
setMapPreset: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetMapPresetPayload, string>;
|
|
6
|
-
mapChangeDimension: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetMapDimensionPayload, string>;
|
|
7
|
-
registerMap: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
8
|
-
mapId: string;
|
|
9
|
-
}, "mapReducer/registerMap">;
|
|
10
|
-
unregisterMap: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
11
|
-
mapId: string;
|
|
12
|
-
}, "mapReducer/unregisterMap">;
|
|
13
|
-
setStepBackwardOrForward: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetStepBackWardOrForward, "mapReducer/setStepBackwardOrForward">;
|
|
14
|
-
setBbox: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetBboxPayload, "mapReducer/setBbox">;
|
|
15
|
-
mapUpdateAllMapDimensions: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").UpdateAllMapDimensionsPayload, "mapReducer/mapUpdateAllMapDimensions">;
|
|
16
|
-
mapStartAnimation: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetMapAnimationStartPayload, "mapReducer/mapStartAnimation">;
|
|
17
|
-
mapStopAnimation: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetMapAnimationStopPayload, "mapReducer/mapStopAnimation">;
|
|
18
|
-
setTimeSliderSpan: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimeSliderSpanPayload, "mapReducer/setTimeSliderSpan">;
|
|
19
|
-
setTimeStep: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimeStepPayload, "mapReducer/setTimeStep">;
|
|
20
|
-
setAnimationStartTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetAnimationStartTimePayload, "mapReducer/setAnimationStartTime">;
|
|
21
|
-
setAnimationEndTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetAnimationEndTimePayload, "mapReducer/setAnimationEndTime">;
|
|
22
|
-
setAnimationDelay: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetAnimationDelayPayload, "mapReducer/setAnimationDelay">;
|
|
23
|
-
layerMoveLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").MoveLayerPayload, "mapReducer/layerMoveLayer">;
|
|
24
|
-
setAutoLayerId: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetAutoLayerIdPayload, "mapReducer/setAutoLayerId">;
|
|
25
|
-
setAutoTimestepLayerId: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
26
|
-
mapId: string;
|
|
27
|
-
autoTimestepLayerId: string | undefined;
|
|
28
|
-
}, "mapReducer/setAutoTimestepLayerId">;
|
|
29
|
-
setAutoUpdateLayerId: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
30
|
-
mapId: string;
|
|
31
|
-
autoUpdateLayerId: string | undefined;
|
|
32
|
-
}, "mapReducer/setAutoUpdateLayerId">;
|
|
33
|
-
setTimeSliderWidth: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimeSliderWidthPayload, "mapReducer/setTimeSliderWidth">;
|
|
34
|
-
setTimeSliderCenterTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimeSliderCenterTimePayload, "mapReducer/setTimeSliderCenterTime">;
|
|
35
|
-
setTimeSliderSecondsPerPx: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimeSliderSecondsPerPxPayload, "mapReducer/setTimeSliderSecondsPerPx">;
|
|
36
|
-
toggleAutoUpdate: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleAutoUpdatePayload, "mapReducer/toggleAutoUpdate">;
|
|
37
|
-
setEndTimeOverriding: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetEndTimeOverriding, "mapReducer/setEndTimeOverriding">;
|
|
38
|
-
toggleTimestepAuto: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleTimestepAutoPayload, "mapReducer/toggleTimestepAuto">;
|
|
39
|
-
toggleTimeSpanAuto: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleTimeSpanAutoPayload, "mapReducer/toggleTimeSpanAuto">;
|
|
40
|
-
toggleAnimationLengthAuto: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleAnimationLengthAutoPayload, "mapReducer/toggleAnimationLengthAuto">;
|
|
41
|
-
toggleTimeSliderHover: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleTimeSliderHoverPayload, "mapReducer/toggleTimeSliderHover">;
|
|
42
|
-
toggleTimeSliderIsVisible: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleTimeSliderIsVisiblePayload, "mapReducer/toggleTimeSliderIsVisible">;
|
|
43
|
-
toggleZoomControls: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleZoomControlsPayload, "mapReducer/toggleZoomControls">;
|
|
44
|
-
setMapPinLocation: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").MapPinLocationPayload, "mapReducer/setMapPinLocation">;
|
|
45
|
-
setDisableMapPin: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").DisableMapPinPayload, "mapReducer/setDisableMapPin">;
|
|
46
|
-
toggleMapPinIsVisible: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleMapPinIsVisiblePayload, "mapReducer/toggleMapPinIsVisible">;
|
|
47
|
-
setDockedLayerManagerSize: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetDockedLayerManagerSize, "mapReducer/setDockedLayerManagerSize">;
|
|
48
|
-
setMapPresetError: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
49
|
-
mapId: string;
|
|
50
|
-
error: string;
|
|
51
|
-
}, "mapReducer/setMapPresetError">;
|
|
52
|
-
addLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").AddLayerPayload, "layerReducer/addLayer">;
|
|
53
|
-
duplicateMapLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").DuplicateMapLayerPayload, "layerReducer/duplicateMapLayer">;
|
|
54
|
-
layerChangeDimension: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerDimensionPayload, "layerReducer/layerChangeDimension">;
|
|
55
|
-
layerChangeEnabled: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerEnabledPayload, "layerReducer/layerChangeEnabled">;
|
|
56
|
-
layerChangeOpacity: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerOpacityPayload, "layerReducer/layerChangeOpacity">;
|
|
57
|
-
layerChangeStyle: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetLayerStylePayload, "layerReducer/layerChangeStyle">;
|
|
58
|
-
layerChangeAcceptanceTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
59
|
-
layerId: string;
|
|
60
|
-
acceptanceTime: number | undefined;
|
|
61
|
-
}, "layerReducer/layerChangeAcceptanceTime">;
|
|
62
|
-
layerChangeName: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerNamePayload, "layerReducer/layerChangeName">;
|
|
63
|
-
layerChangeGeojson: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerGeojsonPayload, "layerReducer/layerChangeGeojson">;
|
|
64
|
-
layerSetGeojsonFromLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerGeojsonFromLayerPayload, "layerReducer/layerSetGeojsonFromLayer">;
|
|
65
|
-
layerDelete: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").DeleteLayerPayload, "layerReducer/layerDelete">;
|
|
66
|
-
layerError: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ErrorLayerPayload, "layerReducer/layerError">;
|
|
67
|
-
baseLayerDelete: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").DeleteLayerPayload, "layerReducer/baseLayerDelete">;
|
|
68
|
-
setLayers: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayersPayload, "layerReducer/setLayers">;
|
|
69
|
-
setBaseLayers: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetBaseLayersPayload, "layerReducer/setBaseLayers">;
|
|
70
|
-
addBaseLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").AddBaseLayerPayload, "layerReducer/addBaseLayer">;
|
|
71
|
-
layerSetDimensions: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetLayerDimensionsPayload, "layerReducer/layerSetDimensions">;
|
|
72
|
-
addAvailableBaseLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").AddAvailableBaseLayerPayload, "layerReducer/addAvailableBaseLayer">;
|
|
73
|
-
addAvailableBaseLayers: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").AddAvailableBaseLayersPayload, "layerReducer/addAvailableBaseLayers">;
|
|
74
|
-
setAvailableBaseLayers: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetAvailableBaseLayersPayload, "layerReducer/setAvailableBaseLayers">;
|
|
75
|
-
setUseLatestReferenceTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
76
|
-
id: string;
|
|
77
|
-
useLatestReferenceTime: boolean;
|
|
78
|
-
}, "layerReducer/setUseLatestReferenceTime">;
|
|
79
|
-
onUpdateLayerInformation: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").UpdateLayerInfoPayload, "layerReducer/onUpdateLayerInformation">;
|
|
80
|
-
orderLayerToFront: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
81
|
-
layerId: string;
|
|
82
|
-
}, "layerReducer/orderLayerToFront">;
|
|
83
|
-
setSelectedFeature: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetSelectedFeaturePayload, "layerReducer/setSelectedFeature">;
|
|
84
|
-
updateFeature: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").UpdateFeaturePayload, "layerReducer/updateFeature">;
|
|
85
|
-
updateFeatureProperties: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").UpdateFeaturePropertiesPayload, "layerReducer/updateFeatureProperties">;
|
|
86
|
-
toggleFeatureMode: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleFeatureModePayload, "layerReducer/toggleFeatureMode">;
|
|
87
|
-
exitFeatureDrawMode: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ExitFeatureDrawModePayload, "layerReducer/exitFeatureDrawMode">;
|
|
88
|
-
showLayerInfo: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ShowLayerInfoPayload, "layerReducer/showLayerInfo">;
|
|
89
|
-
hideLayerInfo: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"layerReducer/hideLayerInfo">;
|
|
90
|
-
};
|
|
91
|
-
export * from './service';
|
|
92
|
-
export * from './map';
|
|
93
|
-
export * from './layers';
|
|
94
|
-
export type { WebMapStateModuleState, MapPreset, MapPresetInitialProps, } from './types';
|
|
95
|
-
export * as storeTestSettings from './storeTestSettings';
|
|
96
|
-
export * from './config';
|
|
1
|
+
export declare const mapStoreActions: {
|
|
2
|
+
serviceSetLayers: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayersForServicePayload, "serviceReducer/serviceSetLayers">;
|
|
3
|
+
mapStoreRemoveService: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").MapStoreRemoveServicePayload, "serviceReducer/mapStoreRemoveService">;
|
|
4
|
+
fetchInitialServices: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").FetchInitialServicesPayload, "serviceReducer/fetchInitialServices">;
|
|
5
|
+
setMapPreset: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetMapPresetPayload, string>;
|
|
6
|
+
mapChangeDimension: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetMapDimensionPayload, string>;
|
|
7
|
+
registerMap: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
8
|
+
mapId: string;
|
|
9
|
+
}, "mapReducer/registerMap">;
|
|
10
|
+
unregisterMap: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
11
|
+
mapId: string;
|
|
12
|
+
}, "mapReducer/unregisterMap">;
|
|
13
|
+
setStepBackwardOrForward: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetStepBackWardOrForward, "mapReducer/setStepBackwardOrForward">;
|
|
14
|
+
setBbox: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetBboxPayload, "mapReducer/setBbox">;
|
|
15
|
+
mapUpdateAllMapDimensions: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").UpdateAllMapDimensionsPayload, "mapReducer/mapUpdateAllMapDimensions">;
|
|
16
|
+
mapStartAnimation: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetMapAnimationStartPayload, "mapReducer/mapStartAnimation">;
|
|
17
|
+
mapStopAnimation: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetMapAnimationStopPayload, "mapReducer/mapStopAnimation">;
|
|
18
|
+
setTimeSliderSpan: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimeSliderSpanPayload, "mapReducer/setTimeSliderSpan">;
|
|
19
|
+
setTimeStep: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimeStepPayload, "mapReducer/setTimeStep">;
|
|
20
|
+
setAnimationStartTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetAnimationStartTimePayload, "mapReducer/setAnimationStartTime">;
|
|
21
|
+
setAnimationEndTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetAnimationEndTimePayload, "mapReducer/setAnimationEndTime">;
|
|
22
|
+
setAnimationDelay: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetAnimationDelayPayload, "mapReducer/setAnimationDelay">;
|
|
23
|
+
layerMoveLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").MoveLayerPayload, "mapReducer/layerMoveLayer">;
|
|
24
|
+
setAutoLayerId: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetAutoLayerIdPayload, "mapReducer/setAutoLayerId">;
|
|
25
|
+
setAutoTimestepLayerId: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
26
|
+
mapId: string;
|
|
27
|
+
autoTimestepLayerId: string | undefined;
|
|
28
|
+
}, "mapReducer/setAutoTimestepLayerId">;
|
|
29
|
+
setAutoUpdateLayerId: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
30
|
+
mapId: string;
|
|
31
|
+
autoUpdateLayerId: string | undefined;
|
|
32
|
+
}, "mapReducer/setAutoUpdateLayerId">;
|
|
33
|
+
setTimeSliderWidth: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimeSliderWidthPayload, "mapReducer/setTimeSliderWidth">;
|
|
34
|
+
setTimeSliderCenterTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimeSliderCenterTimePayload, "mapReducer/setTimeSliderCenterTime">;
|
|
35
|
+
setTimeSliderSecondsPerPx: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetTimeSliderSecondsPerPxPayload, "mapReducer/setTimeSliderSecondsPerPx">;
|
|
36
|
+
toggleAutoUpdate: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleAutoUpdatePayload, "mapReducer/toggleAutoUpdate">;
|
|
37
|
+
setEndTimeOverriding: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetEndTimeOverriding, "mapReducer/setEndTimeOverriding">;
|
|
38
|
+
toggleTimestepAuto: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleTimestepAutoPayload, "mapReducer/toggleTimestepAuto">;
|
|
39
|
+
toggleTimeSpanAuto: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleTimeSpanAutoPayload, "mapReducer/toggleTimeSpanAuto">;
|
|
40
|
+
toggleAnimationLengthAuto: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleAnimationLengthAutoPayload, "mapReducer/toggleAnimationLengthAuto">;
|
|
41
|
+
toggleTimeSliderHover: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleTimeSliderHoverPayload, "mapReducer/toggleTimeSliderHover">;
|
|
42
|
+
toggleTimeSliderIsVisible: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleTimeSliderIsVisiblePayload, "mapReducer/toggleTimeSliderIsVisible">;
|
|
43
|
+
toggleZoomControls: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleZoomControlsPayload, "mapReducer/toggleZoomControls">;
|
|
44
|
+
setMapPinLocation: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").MapPinLocationPayload, "mapReducer/setMapPinLocation">;
|
|
45
|
+
setDisableMapPin: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").DisableMapPinPayload, "mapReducer/setDisableMapPin">;
|
|
46
|
+
toggleMapPinIsVisible: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleMapPinIsVisiblePayload, "mapReducer/toggleMapPinIsVisible">;
|
|
47
|
+
setDockedLayerManagerSize: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetDockedLayerManagerSize, "mapReducer/setDockedLayerManagerSize">;
|
|
48
|
+
setMapPresetError: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
49
|
+
mapId: string;
|
|
50
|
+
error: string;
|
|
51
|
+
}, "mapReducer/setMapPresetError">;
|
|
52
|
+
addLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").AddLayerPayload, "layerReducer/addLayer">;
|
|
53
|
+
duplicateMapLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").DuplicateMapLayerPayload, "layerReducer/duplicateMapLayer">;
|
|
54
|
+
layerChangeDimension: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerDimensionPayload, "layerReducer/layerChangeDimension">;
|
|
55
|
+
layerChangeEnabled: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerEnabledPayload, "layerReducer/layerChangeEnabled">;
|
|
56
|
+
layerChangeOpacity: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerOpacityPayload, "layerReducer/layerChangeOpacity">;
|
|
57
|
+
layerChangeStyle: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetLayerStylePayload, "layerReducer/layerChangeStyle">;
|
|
58
|
+
layerChangeAcceptanceTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
59
|
+
layerId: string;
|
|
60
|
+
acceptanceTime: number | undefined;
|
|
61
|
+
}, "layerReducer/layerChangeAcceptanceTime">;
|
|
62
|
+
layerChangeName: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerNamePayload, "layerReducer/layerChangeName">;
|
|
63
|
+
layerChangeGeojson: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerGeojsonPayload, "layerReducer/layerChangeGeojson">;
|
|
64
|
+
layerSetGeojsonFromLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayerGeojsonFromLayerPayload, "layerReducer/layerSetGeojsonFromLayer">;
|
|
65
|
+
layerDelete: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").DeleteLayerPayload, "layerReducer/layerDelete">;
|
|
66
|
+
layerError: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ErrorLayerPayload, "layerReducer/layerError">;
|
|
67
|
+
baseLayerDelete: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").DeleteLayerPayload, "layerReducer/baseLayerDelete">;
|
|
68
|
+
setLayers: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetLayersPayload, "layerReducer/setLayers">;
|
|
69
|
+
setBaseLayers: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetBaseLayersPayload, "layerReducer/setBaseLayers">;
|
|
70
|
+
addBaseLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").AddBaseLayerPayload, "layerReducer/addBaseLayer">;
|
|
71
|
+
layerSetDimensions: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetLayerDimensionsPayload, "layerReducer/layerSetDimensions">;
|
|
72
|
+
addAvailableBaseLayer: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").AddAvailableBaseLayerPayload, "layerReducer/addAvailableBaseLayer">;
|
|
73
|
+
addAvailableBaseLayers: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").AddAvailableBaseLayersPayload, "layerReducer/addAvailableBaseLayers">;
|
|
74
|
+
setAvailableBaseLayers: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetAvailableBaseLayersPayload, "layerReducer/setAvailableBaseLayers">;
|
|
75
|
+
setUseLatestReferenceTime: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
76
|
+
id: string;
|
|
77
|
+
useLatestReferenceTime: boolean;
|
|
78
|
+
}, "layerReducer/setUseLatestReferenceTime">;
|
|
79
|
+
onUpdateLayerInformation: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").UpdateLayerInfoPayload, "layerReducer/onUpdateLayerInformation">;
|
|
80
|
+
orderLayerToFront: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
81
|
+
layerId: string;
|
|
82
|
+
}, "layerReducer/orderLayerToFront">;
|
|
83
|
+
setSelectedFeature: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetSelectedFeaturePayload, "layerReducer/setSelectedFeature">;
|
|
84
|
+
updateFeature: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").UpdateFeaturePayload, "layerReducer/updateFeature">;
|
|
85
|
+
updateFeatureProperties: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").UpdateFeaturePropertiesPayload, "layerReducer/updateFeatureProperties">;
|
|
86
|
+
toggleFeatureMode: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ToggleFeatureModePayload, "layerReducer/toggleFeatureMode">;
|
|
87
|
+
exitFeatureDrawMode: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ExitFeatureDrawModePayload, "layerReducer/exitFeatureDrawMode">;
|
|
88
|
+
showLayerInfo: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").ShowLayerInfoPayload, "layerReducer/showLayerInfo">;
|
|
89
|
+
hideLayerInfo: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"layerReducer/hideLayerInfo">;
|
|
90
|
+
};
|
|
91
|
+
export * from './service';
|
|
92
|
+
export * from './map';
|
|
93
|
+
export * from './layers';
|
|
94
|
+
export type { WebMapStateModuleState, MapPreset, MapPresetInitialProps, } from './types';
|
|
95
|
+
export * as storeTestSettings from './storeTestSettings';
|
|
96
|
+
export * from './config';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { layerActions, reducer as layerReducer } from './reducer';
|
|
2
|
-
export type { LayerActions } from './reducer';
|
|
3
|
-
export * as layerSelectors from './selectors';
|
|
4
|
-
export * as layerTypes from './types';
|
|
5
|
-
export * as layerUtils from './utils';
|
|
1
|
+
export { layerActions, reducer as layerReducer } from './reducer';
|
|
2
|
+
export type { LayerActions } from './reducer';
|
|
3
|
+
export * as layerSelectors from './selectors';
|
|
4
|
+
export * as layerTypes from './types';
|
|
5
|
+
export * as layerUtils from './utils';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { CoreAppStore } from '../../types';
|
|
2
|
-
export declare const layersListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<CoreAppStore, import("@reduxjs/toolkit").ThunkDispatch<CoreAppStore, unknown, import("redux").AnyAction>, unknown>;
|
|
1
|
+
import { CoreAppStore } from '../../types';
|
|
2
|
+
export declare const layersListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<CoreAppStore, import("@reduxjs/toolkit").ThunkDispatch<CoreAppStore, unknown, import("redux").AnyAction>, unknown>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|