@opengeoweb/store 6.0.1 → 6.0.3
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.d.ts +1 -0
- package/{index.js → index.esm.js} +219 -82
- package/package.json +4 -5
- package/src/store/app/reducer.d.ts +1 -1
- package/src/store/coreModuleConfig.d.ts +1 -1
- package/src/store/drawings/config.d.ts +4 -0
- package/src/store/drawings/index.d.ts +4 -0
- package/src/store/drawings/reducer.d.ts +9 -0
- package/src/store/drawings/reducer.spec.d.ts +1 -0
- package/src/store/drawings/selectors.d.ts +3 -0
- package/src/store/drawings/selectors.spec.d.ts +1 -0
- package/src/store/drawings/testUtils.d.ts +1 -0
- package/src/store/drawings/types.d.ts +12 -0
- package/src/store/generic/selectors.d.ts +3 -13
- package/src/store/generic/synchronizationActions/actions.d.ts +1 -1
- package/src/store/generic/synchronizationActions/types.d.ts +1 -1
- package/src/store/generic/synchronizationGroups/selector.d.ts +2 -8
- package/src/store/generic/synchronizationGroups/selectors.d.ts +5 -40
- package/src/store/generic/synchronizationGroups/types.d.ts +3 -3
- package/src/store/generic/types.d.ts +3 -3
- package/src/store/index.d.ts +1 -0
- package/src/store/layerSelect/reducer.d.ts +1 -1
- package/src/store/layerSelect/selectors.d.ts +6 -48
- package/src/store/layerSelect/types.d.ts +5 -5
- package/src/store/mapStore/layers/reducer.d.ts +1 -1
- package/src/store/mapStore/layers/selectors.d.ts +24 -185
- package/src/store/mapStore/map/filterLayers.d.ts +1 -1
- package/src/store/mapStore/map/selectors.d.ts +49 -392
- package/src/store/mapStore/map/types.d.ts +3 -3
- package/src/store/mapStore/map/utils.d.ts +2 -2
- package/src/store/mapStore/service/reducer.d.ts +1 -1
- package/src/store/mapStore/service/selectors.d.ts +7 -48
- package/src/store/mapStore/service/types.d.ts +2 -2
- package/src/store/mapStore/storeTestUtils.d.ts +2 -2
- package/src/store/router/reducer.d.ts +1 -1
- package/src/store/router/types.d.ts +1 -1
- package/src/store/snackbar/reducer.d.ts +1 -1
- package/src/store/snackbar/selectors.d.ts +1 -3
- package/src/store/snackbar/types.d.ts +1 -1
- package/src/store/types.d.ts +2 -1
- package/src/store/ui/selectors.d.ts +7 -68
- package/src/store/ui/types.d.ts +4 -4
|
@@ -26,14 +26,7 @@ export declare const getAllMapIds: (store: CoreAppStore) => string[];
|
|
|
26
26
|
* @param {object} store store object from which the map state wll be extracted
|
|
27
27
|
* @returns {object} object containing map state (isAnimating, bbox, baseLayers, layers etc.)
|
|
28
28
|
*/
|
|
29
|
-
export declare const getFirstMap: ((state: {
|
|
30
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
31
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
32
|
-
webmap?: WebMapState | undefined;
|
|
33
|
-
services?: import("../types").ServiceState | undefined;
|
|
34
|
-
layers?: import("../types").LayerState | undefined;
|
|
35
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
36
|
-
}) => any) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: any) => any, {
|
|
29
|
+
export declare const getFirstMap: ((state: any) => any) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: any) => any, {
|
|
37
30
|
clearCache: () => void;
|
|
38
31
|
}> & {
|
|
39
32
|
clearCache: () => void;
|
|
@@ -45,14 +38,7 @@ export declare const getFirstMap: ((state: {
|
|
|
45
38
|
* @param {object} store store: object from which the map state wll be extracted
|
|
46
39
|
* @returns {string} returnType:string - map id
|
|
47
40
|
*/
|
|
48
|
-
export declare const getFirstMapId: ((state: {
|
|
49
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
50
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
51
|
-
webmap?: WebMapState | undefined;
|
|
52
|
-
services?: import("../types").ServiceState | undefined;
|
|
53
|
-
layers?: import("../types").LayerState | undefined;
|
|
54
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
55
|
-
}) => any) & import("reselect").OutputSelectorFields<(args_0: any) => any, {
|
|
41
|
+
export declare const getFirstMapId: ((state: any) => any) & import("reselect").OutputSelectorFields<(args_0: any) => any, {
|
|
56
42
|
clearCache: () => void;
|
|
57
43
|
}> & {
|
|
58
44
|
clearCache: () => void;
|
|
@@ -64,14 +50,7 @@ export declare const getFirstMapId: ((state: {
|
|
|
64
50
|
* @param {string} mapId mapId: string - Id of the map
|
|
65
51
|
* @returns {boolean} returnType:boolean - true if map is present
|
|
66
52
|
*/
|
|
67
|
-
export declare const getIsMapPresent: ((state: {
|
|
68
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
69
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
70
|
-
webmap?: WebMapState | undefined;
|
|
71
|
-
services?: import("../types").ServiceState | undefined;
|
|
72
|
-
layers?: import("../types").LayerState | undefined;
|
|
73
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
74
|
-
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: boolean) => boolean, {
|
|
53
|
+
export declare const getIsMapPresent: ((state: CoreAppStore, mapId: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: boolean) => boolean, {
|
|
75
54
|
clearCache: () => void;
|
|
76
55
|
}> & {
|
|
77
56
|
clearCache: () => void;
|
|
@@ -84,14 +63,7 @@ export declare const getIsMapPresent: ((state: {
|
|
|
84
63
|
* @param {string} mapId mapId: string - Id of the map
|
|
85
64
|
* @returns {array} returnType: array - array containing all layerIds
|
|
86
65
|
*/
|
|
87
|
-
export declare const getLayerIds: ((state: {
|
|
88
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
89
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
90
|
-
webmap?: WebMapState | undefined;
|
|
91
|
-
services?: import("../types").ServiceState | undefined;
|
|
92
|
-
layers?: import("../types").LayerState | undefined;
|
|
93
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
94
|
-
} | undefined, params_0: string) => string[]) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string[], {
|
|
66
|
+
export declare const getLayerIds: ((state: CoreAppStore | undefined, mapId: string) => string[]) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string[], {
|
|
95
67
|
clearCache: () => void;
|
|
96
68
|
}> & {
|
|
97
69
|
clearCache: () => void;
|
|
@@ -104,14 +76,7 @@ export declare const getLayerIds: ((state: {
|
|
|
104
76
|
* @param {string} mapId mapId: string - Id of the map
|
|
105
77
|
* @returns {array} returnType: array - array containing all layer states for the map
|
|
106
78
|
*/
|
|
107
|
-
export declare const getMapLayers: ((state: {
|
|
108
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
109
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
110
|
-
webmap?: WebMapState | undefined;
|
|
111
|
-
services?: import("../types").ServiceState | undefined;
|
|
112
|
-
layers?: import("../types").LayerState | undefined;
|
|
113
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
114
|
-
}, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: Record<string, import("../types").ReduxLayer> | null) => import("../types").ReduxLayer[], {
|
|
79
|
+
export declare const getMapLayers: ((state: CoreAppStore, mapId: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: Record<string, import("../types").ReduxLayer> | null) => import("../types").ReduxLayer[], {
|
|
115
80
|
clearCache: () => void;
|
|
116
81
|
}> & {
|
|
117
82
|
clearCache: () => void;
|
|
@@ -124,14 +89,7 @@ export declare const getMapLayers: ((state: {
|
|
|
124
89
|
* @param {string} mapId mapId: string - Id of the map
|
|
125
90
|
* @returns {array} returnType: array - array containing an array of baselayers ids
|
|
126
91
|
*/
|
|
127
|
-
export declare const getMapBaseLayersIds: ((state: {
|
|
128
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
129
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
130
|
-
webmap?: WebMapState | undefined;
|
|
131
|
-
services?: import("../types").ServiceState | undefined;
|
|
132
|
-
layers?: import("../types").LayerState | undefined;
|
|
133
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
134
|
-
} | undefined, params_0: string) => string[]) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string[], {
|
|
92
|
+
export declare const getMapBaseLayersIds: ((state: CoreAppStore | undefined, mapId: string) => string[]) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string[], {
|
|
135
93
|
clearCache: () => void;
|
|
136
94
|
}> & {
|
|
137
95
|
clearCache: () => void;
|
|
@@ -144,14 +102,7 @@ export declare const getMapBaseLayersIds: ((state: {
|
|
|
144
102
|
* @param {string} mapId mapId: string - Id of the map
|
|
145
103
|
* @returns {array} returnType: array - array containing all baselayers for the map
|
|
146
104
|
*/
|
|
147
|
-
export declare const getMapBaseLayers: ((state: {
|
|
148
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
149
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
150
|
-
webmap?: WebMapState | undefined;
|
|
151
|
-
services?: import("../types").ServiceState | undefined;
|
|
152
|
-
layers?: import("../types").LayerState | undefined;
|
|
153
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
154
|
-
}, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: Record<string, import("../types").ReduxLayer> | null) => import("../types").ReduxLayer[], {
|
|
105
|
+
export declare const getMapBaseLayers: ((state: CoreAppStore, mapId: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: Record<string, import("../types").ReduxLayer> | null) => import("../types").ReduxLayer[], {
|
|
155
106
|
clearCache: () => void;
|
|
156
107
|
}> & {
|
|
157
108
|
clearCache: () => void;
|
|
@@ -164,14 +115,7 @@ export declare const getMapBaseLayers: ((state: {
|
|
|
164
115
|
* @param {string} mapId mapId: string - Id of the map
|
|
165
116
|
* @returns {array} returnType: array - array containing an array of overLayers ids
|
|
166
117
|
*/
|
|
167
|
-
export declare const getMapOverLayersIds: ((state: {
|
|
168
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
169
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
170
|
-
webmap?: WebMapState | undefined;
|
|
171
|
-
services?: import("../types").ServiceState | undefined;
|
|
172
|
-
layers?: import("../types").LayerState | undefined;
|
|
173
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
174
|
-
} | undefined, params_0: string) => string[]) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string[], {
|
|
118
|
+
export declare const getMapOverLayersIds: ((state: CoreAppStore | undefined, mapId: string) => string[]) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string[], {
|
|
175
119
|
clearCache: () => void;
|
|
176
120
|
}> & {
|
|
177
121
|
clearCache: () => void;
|
|
@@ -184,14 +128,7 @@ export declare const getMapOverLayersIds: ((state: {
|
|
|
184
128
|
* @param {string} mapId mapId: string - Id of the map
|
|
185
129
|
* @returns {array} returnType: array - array containing all overLayers for the map
|
|
186
130
|
*/
|
|
187
|
-
export declare const getMapOverLayers: ((state: {
|
|
188
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
189
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
190
|
-
webmap?: WebMapState | undefined;
|
|
191
|
-
services?: import("../types").ServiceState | undefined;
|
|
192
|
-
layers?: import("../types").LayerState | undefined;
|
|
193
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
194
|
-
}, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: Record<string, import("../types").ReduxLayer> | null) => import("../types").ReduxLayer[], {
|
|
131
|
+
export declare const getMapOverLayers: ((state: CoreAppStore, mapId: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: Record<string, import("../types").ReduxLayer> | null) => import("../types").ReduxLayer[], {
|
|
195
132
|
clearCache: () => void;
|
|
196
133
|
}> & {
|
|
197
134
|
clearCache: () => void;
|
|
@@ -204,14 +141,7 @@ export declare const getMapOverLayers: ((state: {
|
|
|
204
141
|
* @param {string} mapId mapId: string - Id of the map
|
|
205
142
|
* @returns {array} returnType: array - array containing map dimensions
|
|
206
143
|
*/
|
|
207
|
-
export declare const getMapDimensions: ((state: {
|
|
208
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
209
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
210
|
-
webmap?: WebMapState | undefined;
|
|
211
|
-
services?: import("../types").ServiceState | undefined;
|
|
212
|
-
layers?: import("../types").LayerState | undefined;
|
|
213
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
214
|
-
} | undefined, params_0: string) => import("./types").Dimension[] | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => import("./types").Dimension[] | undefined, {
|
|
144
|
+
export declare const getMapDimensions: ((state: CoreAppStore | undefined, mapId: string) => import("./types").Dimension[] | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => import("./types").Dimension[] | undefined, {
|
|
215
145
|
clearCache: () => void;
|
|
216
146
|
}> & {
|
|
217
147
|
clearCache: () => void;
|
|
@@ -225,14 +155,7 @@ export declare const getMapDimensions: ((state: {
|
|
|
225
155
|
* @param {string} dimensionName dimensionName: string - name of the dimension
|
|
226
156
|
* @returns {object} returnType: object - object containing the map dimension details
|
|
227
157
|
*/
|
|
228
|
-
export declare const getMapDimension: ((state: {
|
|
229
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
230
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
231
|
-
webmap?: WebMapState | undefined;
|
|
232
|
-
services?: import("../types").ServiceState | undefined;
|
|
233
|
-
layers?: import("../types").LayerState | undefined;
|
|
234
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
235
|
-
}, params_0: string, params_1: string) => import("./types").Dimension | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined, args_1: string) => import("./types").Dimension | undefined, {
|
|
158
|
+
export declare const getMapDimension: ((state: CoreAppStore, _mapId: string, dimensionName: string) => import("./types").Dimension | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined, args_1: string) => import("./types").Dimension | undefined, {
|
|
236
159
|
clearCache: () => void;
|
|
237
160
|
}> & {
|
|
238
161
|
clearCache: () => void;
|
|
@@ -245,14 +168,7 @@ export declare const getMapDimension: ((state: {
|
|
|
245
168
|
* @param {string} mapId mapId: string - Id of the map
|
|
246
169
|
* @returns {string} returnType: string - string containing srs
|
|
247
170
|
*/
|
|
248
|
-
export declare const getSrs: ((state: {
|
|
249
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
250
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
251
|
-
webmap?: WebMapState | undefined;
|
|
252
|
-
services?: import("../types").ServiceState | undefined;
|
|
253
|
-
layers?: import("../types").LayerState | undefined;
|
|
254
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
255
|
-
} | undefined, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string, {
|
|
171
|
+
export declare const getSrs: ((state: CoreAppStore | undefined, mapId: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string, {
|
|
256
172
|
clearCache: () => void;
|
|
257
173
|
}> & {
|
|
258
174
|
clearCache: () => void;
|
|
@@ -265,14 +181,7 @@ export declare const getSrs: ((state: {
|
|
|
265
181
|
* @param {string} mapId mapId: string - Id of the map
|
|
266
182
|
* @returns {object} returnType: object - boundingbox object {left: number, bottom: number, right:number, top: number}
|
|
267
183
|
*/
|
|
268
|
-
export declare const getBbox: ((state: {
|
|
269
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
270
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
271
|
-
webmap?: WebMapState | undefined;
|
|
272
|
-
services?: import("../types").ServiceState | undefined;
|
|
273
|
-
layers?: import("../types").LayerState | undefined;
|
|
274
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
275
|
-
} | undefined, params_0: string) => Bbox) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => Bbox, {
|
|
184
|
+
export declare const getBbox: ((state: CoreAppStore | undefined, mapId: string) => Bbox) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => Bbox, {
|
|
276
185
|
clearCache: () => void;
|
|
277
186
|
}> & {
|
|
278
187
|
clearCache: () => void;
|
|
@@ -285,14 +194,7 @@ export declare const getBbox: ((state: {
|
|
|
285
194
|
* @param {string} mapId mapId: string - Id of the map
|
|
286
195
|
* @returns {boolean} returnType: boolean
|
|
287
196
|
*/
|
|
288
|
-
export declare const isAnimating: ((state: {
|
|
289
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
290
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
291
|
-
webmap?: WebMapState | undefined;
|
|
292
|
-
services?: import("../types").ServiceState | undefined;
|
|
293
|
-
layers?: import("../types").LayerState | undefined;
|
|
294
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
295
|
-
} | undefined, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean, {
|
|
197
|
+
export declare const isAnimating: ((state: CoreAppStore | undefined, mapId: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean, {
|
|
296
198
|
clearCache: () => void;
|
|
297
199
|
}> & {
|
|
298
200
|
clearCache: () => void;
|
|
@@ -305,14 +207,7 @@ export declare const isAnimating: ((state: {
|
|
|
305
207
|
* @param {string} mapId mapId: string - Id of the map
|
|
306
208
|
* @returns {object} returnType: object - object containing isAnimating boolean and id string
|
|
307
209
|
*/
|
|
308
|
-
export declare const linkedMapAnimationInfo: ((state: {
|
|
309
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
310
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
311
|
-
webmap?: WebMapState | undefined;
|
|
312
|
-
services?: import("../types").ServiceState | undefined;
|
|
313
|
-
layers?: import("../types").LayerState | undefined;
|
|
314
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
315
|
-
}, params_0: string) => {
|
|
210
|
+
export declare const linkedMapAnimationInfo: ((state: CoreAppStore, mapId: string) => {
|
|
316
211
|
isAnimating: boolean;
|
|
317
212
|
id: string;
|
|
318
213
|
}) & import("reselect").OutputSelectorFields<(args_0: {
|
|
@@ -334,14 +229,7 @@ export declare const linkedMapAnimationInfo: ((state: {
|
|
|
334
229
|
* @param {string} mapId mapId: string - Id of the map
|
|
335
230
|
* @returns {string} returnType: string
|
|
336
231
|
*/
|
|
337
|
-
export declare const getAnimationStartTime: ((state: {
|
|
338
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
339
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
340
|
-
webmap?: WebMapState | undefined;
|
|
341
|
-
services?: import("../types").ServiceState | undefined;
|
|
342
|
-
layers?: import("../types").LayerState | undefined;
|
|
343
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
344
|
-
} | undefined, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
232
|
+
export declare const getAnimationStartTime: ((state: CoreAppStore | undefined, mapId: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
345
233
|
clearCache: () => void;
|
|
346
234
|
}> & {
|
|
347
235
|
clearCache: () => void;
|
|
@@ -354,14 +242,7 @@ export declare const getAnimationStartTime: ((state: {
|
|
|
354
242
|
* @param {string} mapId mapId: string - Id of the map
|
|
355
243
|
* @returns {string} returnType: string
|
|
356
244
|
*/
|
|
357
|
-
export declare const getAnimationEndTime: ((state: {
|
|
358
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
359
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
360
|
-
webmap?: WebMapState | undefined;
|
|
361
|
-
services?: import("../types").ServiceState | undefined;
|
|
362
|
-
layers?: import("../types").LayerState | undefined;
|
|
363
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
364
|
-
} | undefined, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
245
|
+
export declare const getAnimationEndTime: ((state: CoreAppStore | undefined, mapId: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
365
246
|
clearCache: () => void;
|
|
366
247
|
}> & {
|
|
367
248
|
clearCache: () => void;
|
|
@@ -374,14 +255,7 @@ export declare const getAnimationEndTime: ((state: {
|
|
|
374
255
|
* @param {string} mapId mapId: string - Id of the map
|
|
375
256
|
* @returns {boolean} returnType: boolean
|
|
376
257
|
*/
|
|
377
|
-
export declare const isAutoUpdating: ((state: {
|
|
378
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
379
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
380
|
-
webmap?: WebMapState | undefined;
|
|
381
|
-
services?: import("../types").ServiceState | undefined;
|
|
382
|
-
layers?: import("../types").LayerState | undefined;
|
|
383
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
384
|
-
} | undefined, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean, {
|
|
258
|
+
export declare const isAutoUpdating: ((state: CoreAppStore | undefined, mapId: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean, {
|
|
385
259
|
clearCache: () => void;
|
|
386
260
|
}> & {
|
|
387
261
|
clearCache: () => void;
|
|
@@ -394,14 +268,7 @@ export declare const isAutoUpdating: ((state: {
|
|
|
394
268
|
* @param {string} mapId mapId: string - Id of the map
|
|
395
269
|
* @returns {boolean} returnType: boolean
|
|
396
270
|
*/
|
|
397
|
-
export declare const isEndTimeOverriding: ((state: {
|
|
398
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
399
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
400
|
-
webmap?: WebMapState | undefined;
|
|
401
|
-
services?: import("../types").ServiceState | undefined;
|
|
402
|
-
layers?: import("../types").LayerState | undefined;
|
|
403
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
404
|
-
} | undefined, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean, {
|
|
271
|
+
export declare const isEndTimeOverriding: ((state: CoreAppStore | undefined, mapId: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean, {
|
|
405
272
|
clearCache: () => void;
|
|
406
273
|
}> & {
|
|
407
274
|
clearCache: () => void;
|
|
@@ -413,14 +280,7 @@ export declare const isEndTimeOverriding: ((state: {
|
|
|
413
280
|
* @param {object} store store: object - store object
|
|
414
281
|
* @param {string} mapId mapId: string - Id of the map
|
|
415
282
|
*/
|
|
416
|
-
export declare const getActiveLayerId: ((state: {
|
|
417
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
418
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
419
|
-
webmap?: WebMapState | undefined;
|
|
420
|
-
services?: import("../types").ServiceState | undefined;
|
|
421
|
-
layers?: import("../types").LayerState | undefined;
|
|
422
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
423
|
-
} | undefined, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
283
|
+
export declare const getActiveLayerId: ((state: CoreAppStore | undefined, mapId: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
424
284
|
clearCache: () => void;
|
|
425
285
|
}> & {
|
|
426
286
|
clearCache: () => void;
|
|
@@ -432,14 +292,7 @@ export declare const getActiveLayerId: ((state: {
|
|
|
432
292
|
* @param {object} store store: object - store object
|
|
433
293
|
* @param {string} mapId mapId: string - Id of the map
|
|
434
294
|
*/
|
|
435
|
-
export declare const getAutoUpdateLayerId: ((state: {
|
|
436
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
437
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
438
|
-
webmap?: WebMapState | undefined;
|
|
439
|
-
services?: import("../types").ServiceState | undefined;
|
|
440
|
-
layers?: import("../types").LayerState | undefined;
|
|
441
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
442
|
-
} | undefined, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
295
|
+
export declare const getAutoUpdateLayerId: ((state: CoreAppStore | undefined, mapId: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
443
296
|
clearCache: () => void;
|
|
444
297
|
}> & {
|
|
445
298
|
clearCache: () => void;
|
|
@@ -451,14 +304,7 @@ export declare const getAutoUpdateLayerId: ((state: {
|
|
|
451
304
|
* @param {object} store store: object - store object
|
|
452
305
|
* @param {string} mapId mapId: string - Id of the map
|
|
453
306
|
*/
|
|
454
|
-
export declare const getAutoTimeStepLayerId: ((state: {
|
|
455
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
456
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
457
|
-
webmap?: WebMapState | undefined;
|
|
458
|
-
services?: import("../types").ServiceState | undefined;
|
|
459
|
-
layers?: import("../types").LayerState | undefined;
|
|
460
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
461
|
-
} | undefined, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
307
|
+
export declare const getAutoTimeStepLayerId: ((state: CoreAppStore | undefined, mapId: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
462
308
|
clearCache: () => void;
|
|
463
309
|
}> & {
|
|
464
310
|
clearCache: () => void;
|
|
@@ -471,14 +317,7 @@ export declare const getAutoTimeStepLayerId: ((state: {
|
|
|
471
317
|
* @param {string} mapId mapId: string - Id of the map
|
|
472
318
|
* @returns {Span} returnType: Span - span as an enum
|
|
473
319
|
*/
|
|
474
|
-
export declare const getMapTimeSliderSpan: ((state: {
|
|
475
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
476
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
477
|
-
webmap?: WebMapState | undefined;
|
|
478
|
-
services?: import("../types").ServiceState | undefined;
|
|
479
|
-
layers?: import("../types").LayerState | undefined;
|
|
480
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
481
|
-
} | undefined, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
320
|
+
export declare const getMapTimeSliderSpan: ((state: CoreAppStore | undefined, mapId: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
482
321
|
clearCache: () => void;
|
|
483
322
|
}> & {
|
|
484
323
|
clearCache: () => void;
|
|
@@ -491,26 +330,12 @@ export declare const getMapTimeSliderSpan: ((state: {
|
|
|
491
330
|
* @param {string} mapId mapId: string - Id of the map
|
|
492
331
|
* @returns {number} returnType: number - time step as a number
|
|
493
332
|
*/
|
|
494
|
-
export declare const getMapTimeStep: ((state: {
|
|
495
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
496
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
497
|
-
webmap?: WebMapState | undefined;
|
|
498
|
-
services?: import("../types").ServiceState | undefined;
|
|
499
|
-
layers?: import("../types").LayerState | undefined;
|
|
500
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
501
|
-
} | undefined, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number, {
|
|
333
|
+
export declare const getMapTimeStep: ((state: CoreAppStore | undefined, mapId: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number, {
|
|
502
334
|
clearCache: () => void;
|
|
503
335
|
}> & {
|
|
504
336
|
clearCache: () => void;
|
|
505
337
|
};
|
|
506
|
-
export declare const getMapTimeStepWithoutDefault: ((state: {
|
|
507
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
508
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
509
|
-
webmap?: WebMapState | undefined;
|
|
510
|
-
services?: import("../types").ServiceState | undefined;
|
|
511
|
-
layers?: import("../types").LayerState | undefined;
|
|
512
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
513
|
-
} | undefined, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
338
|
+
export declare const getMapTimeStepWithoutDefault: ((state: CoreAppStore | undefined, mapId: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
514
339
|
clearCache: () => void;
|
|
515
340
|
}> & {
|
|
516
341
|
clearCache: () => void;
|
|
@@ -523,14 +348,7 @@ export declare const getMapTimeStepWithoutDefault: ((state: {
|
|
|
523
348
|
* @param {string} mapId mapId: string - Id of the map
|
|
524
349
|
* @returns {number} returnType: number - speed as a number
|
|
525
350
|
*/
|
|
526
|
-
export declare const getMapAnimationDelay: ((state: {
|
|
527
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
528
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
529
|
-
webmap?: WebMapState | undefined;
|
|
530
|
-
services?: import("../types").ServiceState | undefined;
|
|
531
|
-
layers?: import("../types").LayerState | undefined;
|
|
532
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
533
|
-
} | undefined, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
351
|
+
export declare const getMapAnimationDelay: ((state: CoreAppStore | undefined, mapId: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
534
352
|
clearCache: () => void;
|
|
535
353
|
}> & {
|
|
536
354
|
clearCache: () => void;
|
|
@@ -543,14 +361,7 @@ export declare const getMapAnimationDelay: ((state: {
|
|
|
543
361
|
* @param {string} mapId mapId: string - Id of the map
|
|
544
362
|
* @returns {number} returnType: number - center time as a unix timestamp
|
|
545
363
|
*/
|
|
546
|
-
export declare const getMapTimeSliderWidth: ((state: {
|
|
547
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
548
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
549
|
-
webmap?: WebMapState | undefined;
|
|
550
|
-
services?: import("../types").ServiceState | undefined;
|
|
551
|
-
layers?: import("../types").LayerState | undefined;
|
|
552
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
553
|
-
} | undefined, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
364
|
+
export declare const getMapTimeSliderWidth: ((state: CoreAppStore | undefined, mapId: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
554
365
|
clearCache: () => void;
|
|
555
366
|
}> & {
|
|
556
367
|
clearCache: () => void;
|
|
@@ -563,14 +374,7 @@ export declare const getMapTimeSliderWidth: ((state: {
|
|
|
563
374
|
* @param {string} mapId mapId: string - Id of the map
|
|
564
375
|
* @returns {number} returnType: number - center time as a unix timestamp
|
|
565
376
|
*/
|
|
566
|
-
export declare const getMapTimeSliderCenterTime: ((state: {
|
|
567
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
568
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
569
|
-
webmap?: WebMapState | undefined;
|
|
570
|
-
services?: import("../types").ServiceState | undefined;
|
|
571
|
-
layers?: import("../types").LayerState | undefined;
|
|
572
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
573
|
-
} | undefined, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
377
|
+
export declare const getMapTimeSliderCenterTime: ((state: CoreAppStore | undefined, mapId: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
574
378
|
clearCache: () => void;
|
|
575
379
|
}> & {
|
|
576
380
|
clearCache: () => void;
|
|
@@ -584,14 +388,7 @@ export declare const getMapTimeSliderCenterTime: ((state: {
|
|
|
584
388
|
* @param {string} mapId mapId: string - Id of the map
|
|
585
389
|
* @returns {number} returnType: number - unfiltered selected time as a unix timestamp
|
|
586
390
|
*/
|
|
587
|
-
export declare const getTimeSliderUnfilteredSelectedTime: ((state: {
|
|
588
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
589
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
590
|
-
webmap?: WebMapState | undefined;
|
|
591
|
-
services?: import("../types").ServiceState | undefined;
|
|
592
|
-
layers?: import("../types").LayerState | undefined;
|
|
593
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
594
|
-
} | undefined, params_0: string) => number | null | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | null | undefined, {
|
|
391
|
+
export declare const getTimeSliderUnfilteredSelectedTime: ((state: CoreAppStore | undefined, mapId: string) => number | null | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | null | undefined, {
|
|
595
392
|
clearCache: () => void;
|
|
596
393
|
}> & {
|
|
597
394
|
clearCache: () => void;
|
|
@@ -604,14 +401,7 @@ export declare const getTimeSliderUnfilteredSelectedTime: ((state: {
|
|
|
604
401
|
* @param {string} mapId mapId: string - Id of the map
|
|
605
402
|
* @returns {number} returnType: number - the number of seconds per pixel
|
|
606
403
|
*/
|
|
607
|
-
export declare const getMapTimeSliderSecondsPerPx: ((state: {
|
|
608
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
609
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
610
|
-
webmap?: WebMapState | undefined;
|
|
611
|
-
services?: import("../types").ServiceState | undefined;
|
|
612
|
-
layers?: import("../types").LayerState | undefined;
|
|
613
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
614
|
-
} | undefined, params_0: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
404
|
+
export declare const getMapTimeSliderSecondsPerPx: ((state: CoreAppStore | undefined, mapId: string) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => number | undefined, {
|
|
615
405
|
clearCache: () => void;
|
|
616
406
|
}> & {
|
|
617
407
|
clearCache: () => void;
|
|
@@ -624,14 +414,7 @@ export declare const getMapTimeSliderSecondsPerPx: ((state: {
|
|
|
624
414
|
* @param {string} mapId mapId: string - Id of the map
|
|
625
415
|
* @returns {boolean} returnType: boolean
|
|
626
416
|
*/
|
|
627
|
-
export declare const isTimestepAuto: ((state: {
|
|
628
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
629
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
630
|
-
webmap?: WebMapState | undefined;
|
|
631
|
-
services?: import("../types").ServiceState | undefined;
|
|
632
|
-
layers?: import("../types").LayerState | undefined;
|
|
633
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
634
|
-
} | undefined, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
417
|
+
export declare const isTimestepAuto: ((state: CoreAppStore | undefined, mapId: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
635
418
|
clearCache: () => void;
|
|
636
419
|
}> & {
|
|
637
420
|
clearCache: () => void;
|
|
@@ -644,14 +427,7 @@ export declare const isTimestepAuto: ((state: {
|
|
|
644
427
|
* @param {string} mapId mapId: string - Id of the map
|
|
645
428
|
* @returns {boolean} returnType: boolean
|
|
646
429
|
*/
|
|
647
|
-
export declare const isTimeSpanAuto: ((state: {
|
|
648
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
649
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
650
|
-
webmap?: WebMapState | undefined;
|
|
651
|
-
services?: import("../types").ServiceState | undefined;
|
|
652
|
-
layers?: import("../types").LayerState | undefined;
|
|
653
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
654
|
-
} | undefined, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
430
|
+
export declare const isTimeSpanAuto: ((state: CoreAppStore | undefined, mapId: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
655
431
|
clearCache: () => void;
|
|
656
432
|
}> & {
|
|
657
433
|
clearCache: () => void;
|
|
@@ -664,14 +440,7 @@ export declare const isTimeSpanAuto: ((state: {
|
|
|
664
440
|
* @param {string} mapId mapId: string - Id of the map
|
|
665
441
|
* @returns {boolean} returnType: boolean
|
|
666
442
|
*/
|
|
667
|
-
export declare const isTimeSliderHoverOn: ((state: {
|
|
668
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
669
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
670
|
-
webmap?: WebMapState | undefined;
|
|
671
|
-
services?: import("../types").ServiceState | undefined;
|
|
672
|
-
layers?: import("../types").LayerState | undefined;
|
|
673
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
674
|
-
} | undefined, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
443
|
+
export declare const isTimeSliderHoverOn: ((state: CoreAppStore | undefined, mapId: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
675
444
|
clearCache: () => void;
|
|
676
445
|
}> & {
|
|
677
446
|
clearCache: () => void;
|
|
@@ -684,14 +453,7 @@ export declare const isTimeSliderHoverOn: ((state: {
|
|
|
684
453
|
* @param {string} mapId mapId: string - Id of the map
|
|
685
454
|
* @returns {boolean} returnType: boolean
|
|
686
455
|
*/
|
|
687
|
-
export declare const isZoomControlsVisible: ((state: {
|
|
688
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
689
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
690
|
-
webmap?: WebMapState | undefined;
|
|
691
|
-
services?: import("../types").ServiceState | undefined;
|
|
692
|
-
layers?: import("../types").LayerState | undefined;
|
|
693
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
694
|
-
} | undefined, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
456
|
+
export declare const isZoomControlsVisible: ((state: CoreAppStore | undefined, mapId: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
695
457
|
clearCache: () => void;
|
|
696
458
|
}> & {
|
|
697
459
|
clearCache: () => void;
|
|
@@ -704,14 +466,7 @@ export declare const isZoomControlsVisible: ((state: {
|
|
|
704
466
|
* @param {string} mapId mapId: string - Id of the map
|
|
705
467
|
* @returns {boolean} returnType: boolean
|
|
706
468
|
*/
|
|
707
|
-
export declare const isTimeSliderVisible: ((state: {
|
|
708
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
709
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
710
|
-
webmap?: WebMapState | undefined;
|
|
711
|
-
services?: import("../types").ServiceState | undefined;
|
|
712
|
-
layers?: import("../types").LayerState | undefined;
|
|
713
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
714
|
-
} | undefined, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
469
|
+
export declare const isTimeSliderVisible: ((state: CoreAppStore | undefined, mapId: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
715
470
|
clearCache: () => void;
|
|
716
471
|
}> & {
|
|
717
472
|
clearCache: () => void;
|
|
@@ -725,14 +480,7 @@ export declare const isTimeSliderVisible: ((state: {
|
|
|
725
480
|
* @param {string} mapId layerId: string - Id of the layer
|
|
726
481
|
* @returns {boolean} returnType: boolean
|
|
727
482
|
*/
|
|
728
|
-
export declare const getIsLayerActiveLayer: ((state: {
|
|
729
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
730
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
731
|
-
webmap?: WebMapState | undefined;
|
|
732
|
-
services?: import("../types").ServiceState | undefined;
|
|
733
|
-
layers?: import("../types").LayerState | undefined;
|
|
734
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
735
|
-
} | undefined, params_0: string, params_1: {}) => boolean) & import("reselect").OutputSelectorFields<(args_0: string | undefined, args_1: any) => boolean, {
|
|
483
|
+
export declare const getIsLayerActiveLayer: ((state: any, _mapId: any, layerId: any) => boolean) & import("reselect").OutputSelectorFields<(args_0: string | undefined, args_1: any) => boolean, {
|
|
736
484
|
clearCache: () => void;
|
|
737
485
|
}> & {
|
|
738
486
|
clearCache: () => void;
|
|
@@ -745,14 +493,7 @@ export declare const getIsLayerActiveLayer: ((state: {
|
|
|
745
493
|
* @param {string} layerId layerId: string - Id of the layer
|
|
746
494
|
* @returns {string} returnType: string - the mapId, or null if not found
|
|
747
495
|
*/
|
|
748
|
-
export declare const getMapIdFromLayerId: ((state: {
|
|
749
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
750
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
751
|
-
webmap?: WebMapState | undefined;
|
|
752
|
-
services?: import("../types").ServiceState | undefined;
|
|
753
|
-
layers?: import("../types").LayerState | undefined;
|
|
754
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
755
|
-
}, params_0?: string | undefined) => string) & import("reselect").OutputSelectorFields<(args_0: WebMapState | undefined, args_1: string | undefined) => string, {
|
|
496
|
+
export declare const getMapIdFromLayerId: ((state: CoreAppStore, layerId?: string | undefined) => string) & import("reselect").OutputSelectorFields<(args_0: WebMapState | undefined, args_1: string | undefined) => string, {
|
|
756
497
|
clearCache: () => void;
|
|
757
498
|
}> & {
|
|
758
499
|
clearCache: () => void;
|
|
@@ -766,14 +507,7 @@ export declare const getMapIdFromLayerId: ((state: {
|
|
|
766
507
|
* @param {string} layerId layerId: string - Id of the layer
|
|
767
508
|
* @returns {string} returnType: string - the layerId, or null if not found
|
|
768
509
|
*/
|
|
769
|
-
export declare const getLayerIdByLayerName: ((state: {
|
|
770
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
771
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
772
|
-
webmap?: WebMapState | undefined;
|
|
773
|
-
services?: import("../types").ServiceState | undefined;
|
|
774
|
-
layers?: import("../types").LayerState | undefined;
|
|
775
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
776
|
-
}, params_0: string, params_1: {}) => string) & import("reselect").OutputSelectorFields<(args_0: import("../types").ReduxLayer[], args_1: string) => string, {
|
|
510
|
+
export declare const getLayerIdByLayerName: ((state: any, _mapId: any, layerName: any) => string) & import("reselect").OutputSelectorFields<(args_0: import("../types").ReduxLayer[], args_1: string) => string, {
|
|
777
511
|
clearCache: () => void;
|
|
778
512
|
}> & {
|
|
779
513
|
clearCache: () => void;
|
|
@@ -787,14 +521,7 @@ export declare const getLayerIdByLayerName: ((state: {
|
|
|
787
521
|
* @param {string} layerId layerId: string - Id of the layer
|
|
788
522
|
* @returns {number} returnType: index number or -1 if not found
|
|
789
523
|
*/
|
|
790
|
-
export declare const getLayerIndexByLayerId: ((state: {
|
|
791
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
792
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
793
|
-
webmap?: WebMapState | undefined;
|
|
794
|
-
services?: import("../types").ServiceState | undefined;
|
|
795
|
-
layers?: import("../types").LayerState | undefined;
|
|
796
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
797
|
-
}, params_0: string, params_1?: string | undefined) => number) & import("reselect").OutputSelectorFields<(args_0: import("../types").ReduxLayer[], args_1: string | undefined) => number, {
|
|
524
|
+
export declare const getLayerIndexByLayerId: ((state: any, _mapId: any, layerId?: string | undefined) => number) & import("reselect").OutputSelectorFields<(args_0: import("../types").ReduxLayer[], args_1: string | undefined) => number, {
|
|
798
525
|
clearCache: () => void;
|
|
799
526
|
}> & {
|
|
800
527
|
clearCache: () => void;
|
|
@@ -808,14 +535,7 @@ export declare const getLayerIndexByLayerId: ((state: {
|
|
|
808
535
|
* @param {number} layerIndex layerId: number - Index of the layer in the map
|
|
809
536
|
* @returns {object} returnType: layer, or null if not found
|
|
810
537
|
*/
|
|
811
|
-
export declare const getLayerByLayerIndex: ((state: {
|
|
812
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
813
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
814
|
-
webmap?: WebMapState | undefined;
|
|
815
|
-
services?: import("../types").ServiceState | undefined;
|
|
816
|
-
layers?: import("../types").LayerState | undefined;
|
|
817
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
818
|
-
}, params_0: string, params_1: {}) => Layer) & import("reselect").OutputSelectorFields<(args_0: import("../types").ReduxLayer[], args_1: number) => Layer, {
|
|
538
|
+
export declare const getLayerByLayerIndex: ((state: any, _mapId: any, layerIndex: any) => Layer) & import("reselect").OutputSelectorFields<(args_0: import("../types").ReduxLayer[], args_1: number) => Layer, {
|
|
819
539
|
clearCache: () => void;
|
|
820
540
|
}> & {
|
|
821
541
|
clearCache: () => void;
|
|
@@ -827,14 +547,7 @@ export declare const getLayerByLayerIndex: ((state: {
|
|
|
827
547
|
* @param {object} store store: object - store object
|
|
828
548
|
* @returns {array} returnType: array of dimension names
|
|
829
549
|
*/
|
|
830
|
-
export declare const getAllUniqueDimensions: ((state: {
|
|
831
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
832
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
833
|
-
webmap?: WebMapState | undefined;
|
|
834
|
-
services?: import("../types").ServiceState | undefined;
|
|
835
|
-
layers?: import("../types").LayerState | undefined;
|
|
836
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
837
|
-
}) => string[]) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: CoreAppStore) => string[], {
|
|
550
|
+
export declare const getAllUniqueDimensions: ((state: any) => string[]) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: CoreAppStore) => string[], {
|
|
838
551
|
clearCache: () => void;
|
|
839
552
|
}> & {
|
|
840
553
|
clearCache: () => void;
|
|
@@ -847,14 +560,7 @@ export declare const getAllUniqueDimensions: ((state: {
|
|
|
847
560
|
* @param {string} mapId mapId: string - Id of the map
|
|
848
561
|
* @returns {object} returnType: latitude and longitude of pin
|
|
849
562
|
*/
|
|
850
|
-
export declare const getPinLocation: ((state: {
|
|
851
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
852
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
853
|
-
webmap?: WebMapState | undefined;
|
|
854
|
-
services?: import("../types").ServiceState | undefined;
|
|
855
|
-
layers?: import("../types").LayerState | undefined;
|
|
856
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
857
|
-
} | undefined, params_0: string) => import("./types").MapLocation | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => import("./types").MapLocation | undefined, {
|
|
563
|
+
export declare const getPinLocation: ((state: CoreAppStore | undefined, mapId: string) => import("./types").MapLocation | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => import("./types").MapLocation | undefined, {
|
|
858
564
|
clearCache: () => void;
|
|
859
565
|
}> & {
|
|
860
566
|
clearCache: () => void;
|
|
@@ -867,14 +573,7 @@ export declare const getPinLocation: ((state: {
|
|
|
867
573
|
* @param {string} mapId mapId: string - Id of the map
|
|
868
574
|
* @returns {boolean} returnType: boolean
|
|
869
575
|
*/
|
|
870
|
-
export declare const getDisableMapPin: ((state: {
|
|
871
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
872
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
873
|
-
webmap?: WebMapState | undefined;
|
|
874
|
-
services?: import("../types").ServiceState | undefined;
|
|
875
|
-
layers?: import("../types").LayerState | undefined;
|
|
876
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
877
|
-
} | undefined, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
576
|
+
export declare const getDisableMapPin: ((state: CoreAppStore | undefined, mapId: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
878
577
|
clearCache: () => void;
|
|
879
578
|
}> & {
|
|
880
579
|
clearCache: () => void;
|
|
@@ -887,14 +586,7 @@ export declare const getDisableMapPin: ((state: {
|
|
|
887
586
|
* @param {string} mapId mapId: string - Id of the map
|
|
888
587
|
* @returns {boolean} returnType: boolean
|
|
889
588
|
*/
|
|
890
|
-
export declare const getDisplayMapPin: ((state: {
|
|
891
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
892
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
893
|
-
webmap?: WebMapState | undefined;
|
|
894
|
-
services?: import("../types").ServiceState | undefined;
|
|
895
|
-
layers?: import("../types").LayerState | undefined;
|
|
896
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
897
|
-
} | undefined, params_0: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
589
|
+
export declare const getDisplayMapPin: ((state: CoreAppStore | undefined, mapId: string) => boolean | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => boolean | undefined, {
|
|
898
590
|
clearCache: () => void;
|
|
899
591
|
}> & {
|
|
900
592
|
clearCache: () => void;
|
|
@@ -907,14 +599,7 @@ export declare const getDisplayMapPin: ((state: {
|
|
|
907
599
|
* @param {string} mapId mapId: string - Id of the map
|
|
908
600
|
* @returns {boolean} returnType: id or undefined
|
|
909
601
|
*/
|
|
910
|
-
export declare const getLegendId: ((state: {
|
|
911
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
912
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
913
|
-
webmap?: WebMapState | undefined;
|
|
914
|
-
services?: import("../types").ServiceState | undefined;
|
|
915
|
-
layers?: import("../types").LayerState | undefined;
|
|
916
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
917
|
-
} | undefined, params_0: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
602
|
+
export declare const getLegendId: ((state: CoreAppStore | undefined, mapId: string) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => string | undefined, {
|
|
918
603
|
clearCache: () => void;
|
|
919
604
|
}> & {
|
|
920
605
|
clearCache: () => void;
|
|
@@ -927,14 +612,7 @@ export declare const getLegendId: ((state: {
|
|
|
927
612
|
* @param {string} mapId mapId: string - Id of the map
|
|
928
613
|
* @returns {MapPreset} returnType: MapPreset
|
|
929
614
|
*/
|
|
930
|
-
export declare const getMapPreset: ((state: {
|
|
931
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
932
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
933
|
-
webmap?: WebMapState | undefined;
|
|
934
|
-
services?: import("../types").ServiceState | undefined;
|
|
935
|
-
layers?: import("../types").LayerState | undefined;
|
|
936
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
937
|
-
}, 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 | undefined, args_6: string | undefined, args_7: string | undefined, args_8: boolean, args_9: boolean, args_10: boolean | undefined, args_11: boolean | undefined, args_12: boolean | undefined, args_13: number, args_14: number | undefined, args_15: boolean | undefined, args_16: string | undefined, args_17: uiTypes.UIStoreType) => MapPreset, {
|
|
615
|
+
export declare const getMapPreset: ((state: CoreAppStore, mapId: 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 | undefined, args_6: string | undefined, args_7: string | undefined, args_8: boolean, args_9: boolean, args_10: boolean | undefined, args_11: boolean | undefined, args_12: boolean | undefined, args_13: number, args_14: number | undefined, args_15: boolean | undefined, args_16: string | undefined, args_17: uiTypes.UIStoreType) => MapPreset, {
|
|
938
616
|
clearCache: () => void;
|
|
939
617
|
}> & {
|
|
940
618
|
clearCache: () => void;
|
|
@@ -947,14 +625,7 @@ export declare const getMapPreset: ((state: {
|
|
|
947
625
|
* @param {string} mapId mapId: string - Id of the map
|
|
948
626
|
* @returns {string[]} returnType: string[] - array of enabled layerIds
|
|
949
627
|
*/
|
|
950
|
-
export declare const getMapLayerIdsEnabled: ((state: {
|
|
951
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
952
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
953
|
-
webmap?: WebMapState | undefined;
|
|
954
|
-
services?: import("../types").ServiceState | undefined;
|
|
955
|
-
layers?: import("../types").LayerState | undefined;
|
|
956
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
957
|
-
}, params_0: string) => string[]) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: Record<string, import("../types").ReduxLayer> | null) => string[], {
|
|
628
|
+
export declare const getMapLayerIdsEnabled: ((state: CoreAppStore, mapId: string) => string[]) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: Record<string, import("../types").ReduxLayer> | null) => string[], {
|
|
958
629
|
clearCache: () => void;
|
|
959
630
|
}> & {
|
|
960
631
|
clearCache: () => void;
|
|
@@ -968,14 +639,7 @@ export declare const getMapLayerIdsEnabled: ((state: {
|
|
|
968
639
|
* @param {string} dimensionName dimensionName: string - name of the dimension
|
|
969
640
|
* @returns {Boolean} returnType: boolean
|
|
970
641
|
*/
|
|
971
|
-
export declare const getIsEnabledLayersForMapDimension: ((state: {
|
|
972
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
973
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
974
|
-
webmap?: WebMapState | undefined;
|
|
975
|
-
services?: import("../types").ServiceState | undefined;
|
|
976
|
-
layers?: import("../types").LayerState | undefined;
|
|
977
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
978
|
-
}, params_0: string, params_1: {}) => any) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: string[]) => any, {
|
|
642
|
+
export declare const getIsEnabledLayersForMapDimension: ((state: any, _mapId: any, dimensionName: any) => any) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: string[]) => any, {
|
|
979
643
|
clearCache: () => void;
|
|
980
644
|
}> & {
|
|
981
645
|
clearCache: () => void;
|
|
@@ -988,14 +652,7 @@ export declare const getIsEnabledLayersForMapDimension: ((state: {
|
|
|
988
652
|
* @param {string} mapId mapId: string - Id of the map
|
|
989
653
|
* @returns {DockedLayerManagerSize} returnType: string
|
|
990
654
|
*/
|
|
991
|
-
export declare const getDockedLayerManagerSize: ((state: {
|
|
992
|
-
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState | undefined;
|
|
993
|
-
ui?: uiTypes.UIStoreType | undefined;
|
|
994
|
-
webmap?: WebMapState | undefined;
|
|
995
|
-
services?: import("../types").ServiceState | undefined;
|
|
996
|
-
layers?: import("../types").LayerState | undefined;
|
|
997
|
-
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType | undefined;
|
|
998
|
-
} | undefined, params_0: string) => import("./types").DockedLayerManagerSize | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => import("./types").DockedLayerManagerSize | undefined, {
|
|
655
|
+
export declare const getDockedLayerManagerSize: ((state: CoreAppStore | undefined, mapId: string) => import("./types").DockedLayerManagerSize | undefined) & import("reselect").OutputSelectorFields<(args_0: WebMap | undefined) => import("./types").DockedLayerManagerSize | undefined, {
|
|
999
656
|
clearCache: () => void;
|
|
1000
657
|
}> & {
|
|
1001
658
|
clearCache: () => void;
|