@opengeoweb/core 2.1.4 → 2.2.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 +358 -305
- package/index.umd.js +361 -301
- package/lib/components/CustomSwitch/CustomSwitch.stories.d.ts +4 -0
- package/lib/components/LayerManager/LayerSelect/KeywordFilterResults/KeywordFilterResults.d.ts +2 -1
- package/lib/components/{Mapcontrols/MapControlButton.spec.d.ts → LayerManager/LayerSelect/KeywordFilterResults/keywordFilterResultsConnect.spec.d.ts} +0 -0
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerList.d.ts +2 -0
- package/lib/components/LayerManager/LayerSelect/LayerList/LayerListUtils.d.ts +3 -0
- package/lib/components/{Mapcontrols/MapControls.spec.d.ts → LayerManager/LayerSelect/LayerList/LayerListUtils.spec.d.ts} +0 -0
- package/lib/components/LayerManager/LayerSelect/ServiceList/ServiceList.d.ts +2 -2
- package/lib/components/{Mapcontrols → MapControls}/MapControlButton.d.ts +0 -0
- package/lib/components/{Mapcontrols/ZoomControls.spec.d.ts → MapControls/MapControlButton.spec.d.ts} +0 -0
- package/lib/components/{Mapcontrols → MapControls}/MapControls.d.ts +0 -0
- package/lib/components/{Mapcontrols/ZoomControlsConnect.spec.d.ts → MapControls/MapControls.spec.d.ts} +0 -0
- package/lib/components/{Mapcontrols → MapControls}/ZoomControls.d.ts +0 -0
- package/lib/components/MapControls/ZoomControls.spec.d.ts +1 -0
- package/lib/components/{Mapcontrols → MapControls}/ZoomControlsConnect.d.ts +0 -0
- package/lib/components/MapControls/ZoomControlsConnect.spec.d.ts +1 -0
- package/lib/components/{Mapcontrols → MapControls}/index.d.ts +0 -0
- package/lib/components/MapView/MapViewConnect.SelectorTest.stories.d.ts +2 -0
- package/lib/components/MapView/MapViewConnect.stories.d.ts +1 -0
- package/lib/components/SyncGroups/selector.d.ts +13 -2
- package/lib/index.d.ts +2 -2
- package/lib/store/advancedLayerStore/selectors.d.ts +13 -2
- package/lib/store/generic/selectors.d.ts +21 -3
- package/lib/store/generic/synchronizationGroups/selectors.d.ts +13 -1
- package/lib/store/layerSelect/actions.d.ts +3 -9
- package/lib/store/layerSelect/constants.d.ts +2 -2
- package/lib/store/layerSelect/sagas.d.ts +1 -2
- package/lib/store/layerSelect/selectors.d.ts +53 -6
- package/lib/store/layerSelect/types.d.ts +35 -26
- package/lib/store/mapStore/layers/selectors.d.ts +208 -16
- package/lib/store/mapStore/map/selectors.d.ts +427 -33
- package/lib/store/mapStore/service/selectors.d.ts +78 -7
- package/lib/store/mapStore/service/types.d.ts +1 -1
- package/lib/store/mapStore/utils/helpers.d.ts +0 -1
- package/lib/store/ui/selectors.d.ts +65 -5
- package/lib/utils/defaultTestSettings.d.ts +7 -7
- package/lib/utils/getCapabilities.d.ts +2 -2
- package/package.json +6 -6
|
@@ -33,7 +33,19 @@ export declare const getFirstMap: (store: AppStore) => WebMap;
|
|
|
33
33
|
* @param {object} store store object from which the map state wll be extracted
|
|
34
34
|
* @returns {object} map id
|
|
35
35
|
*/
|
|
36
|
-
export declare const getFirstMapId:
|
|
36
|
+
export declare const getFirstMapId: ((state: {
|
|
37
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
38
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
39
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
40
|
+
webmap?: WebMapState;
|
|
41
|
+
services?: import("../types").ServiceState;
|
|
42
|
+
layers?: import("../types").LayerState;
|
|
43
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
44
|
+
}) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
|
|
45
|
+
clearCache: () => void;
|
|
46
|
+
}> & {
|
|
47
|
+
clearCache: () => void;
|
|
48
|
+
};
|
|
37
49
|
/**
|
|
38
50
|
* Determines if map is present
|
|
39
51
|
*
|
|
@@ -41,7 +53,19 @@ export declare const getFirstMapId: import("reselect").OutputSelector<AppStore,
|
|
|
41
53
|
* @param {string} mapId mapId: string - Id of the map
|
|
42
54
|
* @returns {array} returnType:true if map is present
|
|
43
55
|
*/
|
|
44
|
-
export declare const getIsMapPresent:
|
|
56
|
+
export declare const getIsMapPresent: ((state: {
|
|
57
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
58
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
59
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
60
|
+
webmap?: WebMapState;
|
|
61
|
+
services?: import("../types").ServiceState;
|
|
62
|
+
layers?: import("../types").LayerState;
|
|
63
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
64
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: boolean) => boolean & {
|
|
65
|
+
clearCache: () => void;
|
|
66
|
+
}> & {
|
|
67
|
+
clearCache: () => void;
|
|
68
|
+
};
|
|
45
69
|
/**
|
|
46
70
|
* Gets all layerIds for a map that aren't baselayers or overlayers
|
|
47
71
|
*
|
|
@@ -50,7 +74,19 @@ export declare const getIsMapPresent: import("reselect").OutputParametricSelecto
|
|
|
50
74
|
* @param {string} mapId mapId: string - Id of the map
|
|
51
75
|
* @returns {array} returnType: array - array containing all layerIds
|
|
52
76
|
*/
|
|
53
|
-
export declare const getLayerIds:
|
|
77
|
+
export declare const getLayerIds: ((state: {
|
|
78
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
79
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
80
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
81
|
+
webmap?: WebMapState;
|
|
82
|
+
services?: import("../types").ServiceState;
|
|
83
|
+
layers?: import("../types").LayerState;
|
|
84
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
85
|
+
}, params_0: string) => string[]) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string[] & {
|
|
86
|
+
clearCache: () => void;
|
|
87
|
+
}> & {
|
|
88
|
+
clearCache: () => void;
|
|
89
|
+
};
|
|
54
90
|
/**
|
|
55
91
|
* Gets all layer states for a map
|
|
56
92
|
*
|
|
@@ -59,7 +95,19 @@ export declare const getLayerIds: import("reselect").OutputParametricSelector<Ap
|
|
|
59
95
|
* @param {string} mapId mapId: string - Id of the map
|
|
60
96
|
* @returns {array} returnType: array - array containing all layer states for the map
|
|
61
97
|
*/
|
|
62
|
-
export declare const getMapLayers:
|
|
98
|
+
export declare const getMapLayers: ((state: {
|
|
99
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
100
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
101
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
102
|
+
webmap?: WebMapState;
|
|
103
|
+
services?: import("../types").ServiceState;
|
|
104
|
+
layers?: import("../types").LayerState;
|
|
105
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
106
|
+
}, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<((args_0: string[], args_1: Record<string, import("../types").ReduxLayer>) => import("../types").ReduxLayer[]) & {
|
|
107
|
+
clearCache: () => void;
|
|
108
|
+
}> & {
|
|
109
|
+
clearCache: () => void;
|
|
110
|
+
};
|
|
63
111
|
/**
|
|
64
112
|
* Gets an array of baselayers ids for a map
|
|
65
113
|
*
|
|
@@ -68,7 +116,19 @@ export declare const getMapLayers: import("reselect").OutputParametricSelector<A
|
|
|
68
116
|
* @param {string} mapId mapId: string - Id of the map
|
|
69
117
|
* @returns {array} returnType: array - array containing an array of baselayers ids
|
|
70
118
|
*/
|
|
71
|
-
export declare const getMapBaseLayersIds:
|
|
119
|
+
export declare const getMapBaseLayersIds: ((state: {
|
|
120
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
121
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
122
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
123
|
+
webmap?: WebMapState;
|
|
124
|
+
services?: import("../types").ServiceState;
|
|
125
|
+
layers?: import("../types").LayerState;
|
|
126
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
127
|
+
}, params_0: string) => string[]) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string[] & {
|
|
128
|
+
clearCache: () => void;
|
|
129
|
+
}> & {
|
|
130
|
+
clearCache: () => void;
|
|
131
|
+
};
|
|
72
132
|
/**
|
|
73
133
|
* Gets all baselayers for a map
|
|
74
134
|
*
|
|
@@ -77,7 +137,19 @@ export declare const getMapBaseLayersIds: import("reselect").OutputParametricSel
|
|
|
77
137
|
* @param {string} mapId mapId: string - Id of the map
|
|
78
138
|
* @returns {array} returnType: array - array containing all baselayers for the map
|
|
79
139
|
*/
|
|
80
|
-
export declare const getMapBaseLayers:
|
|
140
|
+
export declare const getMapBaseLayers: ((state: {
|
|
141
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
142
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
143
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
144
|
+
webmap?: WebMapState;
|
|
145
|
+
services?: import("../types").ServiceState;
|
|
146
|
+
layers?: import("../types").LayerState;
|
|
147
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
148
|
+
}, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<((args_0: string[], args_1: Record<string, import("../types").ReduxLayer>) => import("../types").ReduxLayer[]) & {
|
|
149
|
+
clearCache: () => void;
|
|
150
|
+
}> & {
|
|
151
|
+
clearCache: () => void;
|
|
152
|
+
};
|
|
81
153
|
/**
|
|
82
154
|
* Gets and array of overLayers ids for a map
|
|
83
155
|
*
|
|
@@ -86,7 +158,19 @@ export declare const getMapBaseLayers: import("reselect").OutputParametricSelect
|
|
|
86
158
|
* @param {string} mapId mapId: string - Id of the map
|
|
87
159
|
* @returns {array} returnType: array - array containing an array of overLayers ids
|
|
88
160
|
*/
|
|
89
|
-
export declare const getMapOverLayersIds:
|
|
161
|
+
export declare const getMapOverLayersIds: ((state: {
|
|
162
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
163
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
164
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
165
|
+
webmap?: WebMapState;
|
|
166
|
+
services?: import("../types").ServiceState;
|
|
167
|
+
layers?: import("../types").LayerState;
|
|
168
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
169
|
+
}, params_0: string) => string[]) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string[] & {
|
|
170
|
+
clearCache: () => void;
|
|
171
|
+
}> & {
|
|
172
|
+
clearCache: () => void;
|
|
173
|
+
};
|
|
90
174
|
/**
|
|
91
175
|
* Gets all overLayers for a map
|
|
92
176
|
*
|
|
@@ -95,7 +179,19 @@ export declare const getMapOverLayersIds: import("reselect").OutputParametricSel
|
|
|
95
179
|
* @param {string} mapId mapId: string - Id of the map
|
|
96
180
|
* @returns {array} returnType: array - array containing all overLayers for the map
|
|
97
181
|
*/
|
|
98
|
-
export declare const getMapOverLayers:
|
|
182
|
+
export declare const getMapOverLayers: ((state: {
|
|
183
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
184
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
185
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
186
|
+
webmap?: WebMapState;
|
|
187
|
+
services?: import("../types").ServiceState;
|
|
188
|
+
layers?: import("../types").LayerState;
|
|
189
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
190
|
+
}, params_0: string) => import("../types").ReduxLayer[]) & import("reselect").OutputSelectorFields<((args_0: string[], args_1: Record<string, import("../types").ReduxLayer>) => import("../types").ReduxLayer[]) & {
|
|
191
|
+
clearCache: () => void;
|
|
192
|
+
}> & {
|
|
193
|
+
clearCache: () => void;
|
|
194
|
+
};
|
|
99
195
|
/**
|
|
100
196
|
* Gets map dimensions
|
|
101
197
|
*
|
|
@@ -104,7 +200,19 @@ export declare const getMapOverLayers: import("reselect").OutputParametricSelect
|
|
|
104
200
|
* @param {string} mapId mapId: string - Id of the map
|
|
105
201
|
* @returns {array} returnType: array - array containing map dimensions
|
|
106
202
|
*/
|
|
107
|
-
export declare const getMapDimensions:
|
|
203
|
+
export declare const getMapDimensions: ((state: {
|
|
204
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
205
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
206
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
207
|
+
webmap?: WebMapState;
|
|
208
|
+
services?: import("../types").ServiceState;
|
|
209
|
+
layers?: import("../types").LayerState;
|
|
210
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
211
|
+
}, params_0: string) => import("./types").Dimension[]) & import("reselect").OutputSelectorFields<(args_0: WebMap) => import("./types").Dimension[] & {
|
|
212
|
+
clearCache: () => void;
|
|
213
|
+
}> & {
|
|
214
|
+
clearCache: () => void;
|
|
215
|
+
};
|
|
108
216
|
/**
|
|
109
217
|
* Gets the map dimension requested
|
|
110
218
|
*
|
|
@@ -114,7 +222,17 @@ export declare const getMapDimensions: import("reselect").OutputParametricSelect
|
|
|
114
222
|
* @param {string} dimensionName dimensionName: string - name of the dimension
|
|
115
223
|
* @returns {object} returnType: object - object containing the map dimension details
|
|
116
224
|
*/
|
|
117
|
-
export declare const getMapDimension:
|
|
225
|
+
export declare const getMapDimension: ((state: {
|
|
226
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
227
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
228
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
229
|
+
webmap?: WebMapState;
|
|
230
|
+
services?: import("../types").ServiceState;
|
|
231
|
+
layers?: import("../types").LayerState;
|
|
232
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
233
|
+
}, params_0: string, params_1: {}) => any) & import("reselect").OutputSelectorFields<(args_0: WebMap, args_1: string) => any> & {
|
|
234
|
+
clearCache: () => void;
|
|
235
|
+
};
|
|
118
236
|
/**
|
|
119
237
|
* Gets map srs
|
|
120
238
|
*
|
|
@@ -123,7 +241,19 @@ export declare const getMapDimension: import("reselect").OutputParametricSelecto
|
|
|
123
241
|
* @param {string} mapId mapId: string - Id of the map
|
|
124
242
|
* @returns {string} returnType: string - string containing srs
|
|
125
243
|
*/
|
|
126
|
-
export declare const getSrs:
|
|
244
|
+
export declare const getSrs: ((state: {
|
|
245
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
246
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
247
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
248
|
+
webmap?: WebMapState;
|
|
249
|
+
services?: import("../types").ServiceState;
|
|
250
|
+
layers?: import("../types").LayerState;
|
|
251
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
252
|
+
}, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
|
|
253
|
+
clearCache: () => void;
|
|
254
|
+
}> & {
|
|
255
|
+
clearCache: () => void;
|
|
256
|
+
};
|
|
127
257
|
/**
|
|
128
258
|
* Gets map bounding box
|
|
129
259
|
*
|
|
@@ -132,7 +262,19 @@ export declare const getSrs: import("reselect").OutputParametricSelector<AppStor
|
|
|
132
262
|
* @param {string} mapId mapId: string - Id of the map
|
|
133
263
|
* @returns {object} returnType: object - boundingbox object {left: number, bottom: number, right:number, top: number}
|
|
134
264
|
*/
|
|
135
|
-
export declare const getBbox:
|
|
265
|
+
export declare const getBbox: ((state: {
|
|
266
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
267
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
268
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
269
|
+
webmap?: WebMapState;
|
|
270
|
+
services?: import("../types").ServiceState;
|
|
271
|
+
layers?: import("../types").LayerState;
|
|
272
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
273
|
+
}, params_0: string) => {}) & import("reselect").OutputSelectorFields<(args_0: WebMap) => {
|
|
274
|
+
clearCache: () => void;
|
|
275
|
+
}> & {
|
|
276
|
+
clearCache: () => void;
|
|
277
|
+
};
|
|
136
278
|
/**
|
|
137
279
|
* Gets if map is animating
|
|
138
280
|
*
|
|
@@ -141,7 +283,19 @@ export declare const getBbox: import("reselect").OutputParametricSelector<AppSto
|
|
|
141
283
|
* @param {string} mapId mapId: string - Id of the map
|
|
142
284
|
* @returns {boolean} returnType: boolean
|
|
143
285
|
*/
|
|
144
|
-
export declare const isAnimating:
|
|
286
|
+
export declare const isAnimating: ((state: {
|
|
287
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
288
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
289
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
290
|
+
webmap?: WebMapState;
|
|
291
|
+
services?: import("../types").ServiceState;
|
|
292
|
+
layers?: import("../types").LayerState;
|
|
293
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
294
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
|
|
295
|
+
clearCache: () => void;
|
|
296
|
+
}> & {
|
|
297
|
+
clearCache: () => void;
|
|
298
|
+
};
|
|
145
299
|
/**
|
|
146
300
|
* Gets start time of animation
|
|
147
301
|
*
|
|
@@ -150,7 +304,19 @@ export declare const isAnimating: import("reselect").OutputParametricSelector<Ap
|
|
|
150
304
|
* @param {string} mapId mapId: string - Id of the map
|
|
151
305
|
* @returns {string} returnType: string
|
|
152
306
|
*/
|
|
153
|
-
export declare const getAnimationStartTime:
|
|
307
|
+
export declare const getAnimationStartTime: ((state: {
|
|
308
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
309
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
310
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
311
|
+
webmap?: WebMapState;
|
|
312
|
+
services?: import("../types").ServiceState;
|
|
313
|
+
layers?: import("../types").LayerState;
|
|
314
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
315
|
+
}, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
|
|
316
|
+
clearCache: () => void;
|
|
317
|
+
}> & {
|
|
318
|
+
clearCache: () => void;
|
|
319
|
+
};
|
|
154
320
|
/**
|
|
155
321
|
* Gets end time of animation
|
|
156
322
|
*
|
|
@@ -159,7 +325,19 @@ export declare const getAnimationStartTime: import("reselect").OutputParametricS
|
|
|
159
325
|
* @param {string} mapId mapId: string - Id of the map
|
|
160
326
|
* @returns {string} returnType: string
|
|
161
327
|
*/
|
|
162
|
-
export declare const getAnimationEndTime:
|
|
328
|
+
export declare const getAnimationEndTime: ((state: {
|
|
329
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
330
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
331
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
332
|
+
webmap?: WebMapState;
|
|
333
|
+
services?: import("../types").ServiceState;
|
|
334
|
+
layers?: import("../types").LayerState;
|
|
335
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
336
|
+
}, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
|
|
337
|
+
clearCache: () => void;
|
|
338
|
+
}> & {
|
|
339
|
+
clearCache: () => void;
|
|
340
|
+
};
|
|
163
341
|
/**
|
|
164
342
|
* Returns map is auto updating
|
|
165
343
|
*
|
|
@@ -168,7 +346,19 @@ export declare const getAnimationEndTime: import("reselect").OutputParametricSel
|
|
|
168
346
|
* @param {string} mapId mapId: string - Id of the map
|
|
169
347
|
* @returns {boolean} returnType: boolean
|
|
170
348
|
*/
|
|
171
|
-
export declare const isAutoUpdating:
|
|
349
|
+
export declare const isAutoUpdating: ((state: {
|
|
350
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
351
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
352
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
353
|
+
webmap?: WebMapState;
|
|
354
|
+
services?: import("../types").ServiceState;
|
|
355
|
+
layers?: import("../types").LayerState;
|
|
356
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
357
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
|
|
358
|
+
clearCache: () => void;
|
|
359
|
+
}> & {
|
|
360
|
+
clearCache: () => void;
|
|
361
|
+
};
|
|
172
362
|
/**
|
|
173
363
|
* Tells whether the "loop" behavior of animation is on/off
|
|
174
364
|
*
|
|
@@ -177,7 +367,19 @@ export declare const isAutoUpdating: import("reselect").OutputParametricSelector
|
|
|
177
367
|
* @param {string} mapId mapId: string - Id of the map
|
|
178
368
|
* @returns {boolean} returnType: boolean
|
|
179
369
|
*/
|
|
180
|
-
export declare const isLooping:
|
|
370
|
+
export declare const isLooping: ((state: {
|
|
371
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
372
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
373
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
374
|
+
webmap?: WebMapState;
|
|
375
|
+
services?: import("../types").ServiceState;
|
|
376
|
+
layers?: import("../types").LayerState;
|
|
377
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
378
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
|
|
379
|
+
clearCache: () => void;
|
|
380
|
+
}> & {
|
|
381
|
+
clearCache: () => void;
|
|
382
|
+
};
|
|
181
383
|
/**
|
|
182
384
|
* Gets activeLayerId for map
|
|
183
385
|
*
|
|
@@ -185,7 +387,19 @@ export declare const isLooping: import("reselect").OutputParametricSelector<AppS
|
|
|
185
387
|
* @param {object} store store: object - store object
|
|
186
388
|
* @param {string} mapId mapId: string - Id of the map
|
|
187
389
|
*/
|
|
188
|
-
export declare const getActiveLayerId:
|
|
390
|
+
export declare const getActiveLayerId: ((state: {
|
|
391
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
392
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
393
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
394
|
+
webmap?: WebMapState;
|
|
395
|
+
services?: import("../types").ServiceState;
|
|
396
|
+
layers?: import("../types").LayerState;
|
|
397
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
398
|
+
}, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMap) => string & {
|
|
399
|
+
clearCache: () => void;
|
|
400
|
+
}> & {
|
|
401
|
+
clearCache: () => void;
|
|
402
|
+
};
|
|
189
403
|
/**
|
|
190
404
|
* Gets scale of a time slider of a map
|
|
191
405
|
*
|
|
@@ -194,7 +408,19 @@ export declare const getActiveLayerId: import("reselect").OutputParametricSelect
|
|
|
194
408
|
* @param {string} mapId mapId: string - Id of the map
|
|
195
409
|
* @returns {Scale} returnType: Scale - scale as an enum
|
|
196
410
|
*/
|
|
197
|
-
export declare const getMapTimeSliderScale:
|
|
411
|
+
export declare const getMapTimeSliderScale: ((state: {
|
|
412
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
413
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
414
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
415
|
+
webmap?: WebMapState;
|
|
416
|
+
services?: import("../types").ServiceState;
|
|
417
|
+
layers?: import("../types").LayerState;
|
|
418
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
419
|
+
}, params_0: string) => Scale) & import("reselect").OutputSelectorFields<(args_0: WebMap) => Scale & {
|
|
420
|
+
clearCache: () => void;
|
|
421
|
+
}> & {
|
|
422
|
+
clearCache: () => void;
|
|
423
|
+
};
|
|
198
424
|
/**
|
|
199
425
|
* Gets time step of a map
|
|
200
426
|
*
|
|
@@ -203,7 +429,19 @@ export declare const getMapTimeSliderScale: import("reselect").OutputParametricS
|
|
|
203
429
|
* @param {string} mapId mapId: string - Id of the map
|
|
204
430
|
* @returns {object} returnType: number - time step as a number
|
|
205
431
|
*/
|
|
206
|
-
export declare const getMapTimeStep:
|
|
432
|
+
export declare const getMapTimeStep: ((state: {
|
|
433
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
434
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
435
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
436
|
+
webmap?: WebMapState;
|
|
437
|
+
services?: import("../types").ServiceState;
|
|
438
|
+
layers?: import("../types").LayerState;
|
|
439
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
440
|
+
}, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
|
|
441
|
+
clearCache: () => void;
|
|
442
|
+
}> & {
|
|
443
|
+
clearCache: () => void;
|
|
444
|
+
};
|
|
207
445
|
/**
|
|
208
446
|
* Returns the speed of animation
|
|
209
447
|
*
|
|
@@ -212,7 +450,19 @@ export declare const getMapTimeStep: import("reselect").OutputParametricSelector
|
|
|
212
450
|
* @param {string} mapId mapId: string - Id of the map
|
|
213
451
|
* @returns {object} returnType: number - speed as a number
|
|
214
452
|
*/
|
|
215
|
-
export declare const getMapAnimationDelay:
|
|
453
|
+
export declare const getMapAnimationDelay: ((state: {
|
|
454
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
455
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
456
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
457
|
+
webmap?: WebMapState;
|
|
458
|
+
services?: import("../types").ServiceState;
|
|
459
|
+
layers?: import("../types").LayerState;
|
|
460
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
461
|
+
}, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
|
|
462
|
+
clearCache: () => void;
|
|
463
|
+
}> & {
|
|
464
|
+
clearCache: () => void;
|
|
465
|
+
};
|
|
216
466
|
/**
|
|
217
467
|
* Returns the center time of time slider
|
|
218
468
|
*
|
|
@@ -221,7 +471,19 @@ export declare const getMapAnimationDelay: import("reselect").OutputParametricSe
|
|
|
221
471
|
* @param {string} mapId mapId: string - Id of the map
|
|
222
472
|
* @returns {object} returnType: number - center time as a unix timestamp
|
|
223
473
|
*/
|
|
224
|
-
export declare const getMapTimeSliderCenterTime:
|
|
474
|
+
export declare const getMapTimeSliderCenterTime: ((state: {
|
|
475
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
476
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
477
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
478
|
+
webmap?: WebMapState;
|
|
479
|
+
services?: import("../types").ServiceState;
|
|
480
|
+
layers?: import("../types").LayerState;
|
|
481
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
482
|
+
}, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
|
|
483
|
+
clearCache: () => void;
|
|
484
|
+
}> & {
|
|
485
|
+
clearCache: () => void;
|
|
486
|
+
};
|
|
225
487
|
/**
|
|
226
488
|
* Returns the number of seconds per pixel on the time slider
|
|
227
489
|
*
|
|
@@ -230,7 +492,19 @@ export declare const getMapTimeSliderCenterTime: import("reselect").OutputParame
|
|
|
230
492
|
* @param {string} mapId mapId: string - Id of the map
|
|
231
493
|
* @returns {object} returnType: number - the number of seconds per pixel
|
|
232
494
|
*/
|
|
233
|
-
export declare const getMapTimeSliderSecondsPerPx:
|
|
495
|
+
export declare const getMapTimeSliderSecondsPerPx: ((state: {
|
|
496
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
497
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
498
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
499
|
+
webmap?: WebMapState;
|
|
500
|
+
services?: import("../types").ServiceState;
|
|
501
|
+
layers?: import("../types").LayerState;
|
|
502
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
503
|
+
}, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
|
|
504
|
+
clearCache: () => void;
|
|
505
|
+
}> & {
|
|
506
|
+
clearCache: () => void;
|
|
507
|
+
};
|
|
234
508
|
/**
|
|
235
509
|
* Returns the number of scale to seconds pixel on the time slider
|
|
236
510
|
*
|
|
@@ -239,7 +513,19 @@ export declare const getMapTimeSliderSecondsPerPx: import("reselect").OutputPara
|
|
|
239
513
|
* @param {string} mapId mapId: string - Id of the map
|
|
240
514
|
* @returns {object} returnType: number - the number of scaleto seconds pixel
|
|
241
515
|
*/
|
|
242
|
-
export declare const getMapTimeSliderDataScaleToSecondsPerPx:
|
|
516
|
+
export declare const getMapTimeSliderDataScaleToSecondsPerPx: ((state: {
|
|
517
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
518
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
519
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
520
|
+
webmap?: WebMapState;
|
|
521
|
+
services?: import("../types").ServiceState;
|
|
522
|
+
layers?: import("../types").LayerState;
|
|
523
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
524
|
+
}, params_0: string) => number) & import("reselect").OutputSelectorFields<(args_0: WebMap) => number & {
|
|
525
|
+
clearCache: () => void;
|
|
526
|
+
}> & {
|
|
527
|
+
clearCache: () => void;
|
|
528
|
+
};
|
|
243
529
|
/**
|
|
244
530
|
* Returns map is timestep auto
|
|
245
531
|
*
|
|
@@ -248,7 +534,19 @@ export declare const getMapTimeSliderDataScaleToSecondsPerPx: import("reselect")
|
|
|
248
534
|
* @param {string} mapId mapId: string - Id of the map
|
|
249
535
|
* @returns {boolean} returnType: boolean
|
|
250
536
|
*/
|
|
251
|
-
export declare const isTimestepAuto:
|
|
537
|
+
export declare const isTimestepAuto: ((state: {
|
|
538
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
539
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
540
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
541
|
+
webmap?: WebMapState;
|
|
542
|
+
services?: import("../types").ServiceState;
|
|
543
|
+
layers?: import("../types").LayerState;
|
|
544
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
545
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
|
|
546
|
+
clearCache: () => void;
|
|
547
|
+
}> & {
|
|
548
|
+
clearCache: () => void;
|
|
549
|
+
};
|
|
252
550
|
/**
|
|
253
551
|
* Returns map is time slider hover
|
|
254
552
|
*
|
|
@@ -257,7 +555,19 @@ export declare const isTimestepAuto: import("reselect").OutputParametricSelector
|
|
|
257
555
|
* @param {string} mapId mapId: string - Id of the map
|
|
258
556
|
* @returns {boolean} returnType: boolean
|
|
259
557
|
*/
|
|
260
|
-
export declare const isTimeSliderHoverOn:
|
|
558
|
+
export declare const isTimeSliderHoverOn: ((state: {
|
|
559
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
560
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
561
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
562
|
+
webmap?: WebMapState;
|
|
563
|
+
services?: import("../types").ServiceState;
|
|
564
|
+
layers?: import("../types").LayerState;
|
|
565
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
566
|
+
}, params_0: string) => boolean) & import("reselect").OutputSelectorFields<(args_0: WebMap) => boolean & {
|
|
567
|
+
clearCache: () => void;
|
|
568
|
+
}> & {
|
|
569
|
+
clearCache: () => void;
|
|
570
|
+
};
|
|
261
571
|
/**
|
|
262
572
|
* Returns is layer is active layer
|
|
263
573
|
*
|
|
@@ -267,7 +577,19 @@ export declare const isTimeSliderHoverOn: import("reselect").OutputParametricSel
|
|
|
267
577
|
* @param {string} mapId layerId: string - Id of the layer
|
|
268
578
|
* @returns {boolean} returnType: boolean
|
|
269
579
|
*/
|
|
270
|
-
export declare const getIsLayerActiveLayer:
|
|
580
|
+
export declare const getIsLayerActiveLayer: ((state: {
|
|
581
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
582
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
583
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
584
|
+
webmap?: WebMapState;
|
|
585
|
+
services?: import("../types").ServiceState;
|
|
586
|
+
layers?: import("../types").LayerState;
|
|
587
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
588
|
+
}, params_0: string, params_1: {}) => boolean) & import("reselect").OutputSelectorFields<(args_0: string, args_1: any) => boolean & {
|
|
589
|
+
clearCache: () => void;
|
|
590
|
+
}> & {
|
|
591
|
+
clearCache: () => void;
|
|
592
|
+
};
|
|
271
593
|
/**
|
|
272
594
|
* Returns the mapId for given layerId
|
|
273
595
|
*
|
|
@@ -276,7 +598,19 @@ export declare const getIsLayerActiveLayer: import("reselect").OutputParametricS
|
|
|
276
598
|
* @param {string} layerId layerId: string - Id of the layer
|
|
277
599
|
* @returns {string} returnType: the mapId, or null if not found
|
|
278
600
|
*/
|
|
279
|
-
export declare const getMapIdFromLayerId:
|
|
601
|
+
export declare const getMapIdFromLayerId: ((state: {
|
|
602
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
603
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
604
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
605
|
+
webmap?: WebMapState;
|
|
606
|
+
services?: import("../types").ServiceState;
|
|
607
|
+
layers?: import("../types").LayerState;
|
|
608
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
609
|
+
}, params_0: string) => string) & import("reselect").OutputSelectorFields<(args_0: WebMapState, args_1: string) => string & {
|
|
610
|
+
clearCache: () => void;
|
|
611
|
+
}> & {
|
|
612
|
+
clearCache: () => void;
|
|
613
|
+
};
|
|
280
614
|
/**
|
|
281
615
|
* Returns the layerId for given layerName
|
|
282
616
|
*
|
|
@@ -286,7 +620,19 @@ export declare const getMapIdFromLayerId: import("reselect").OutputParametricSel
|
|
|
286
620
|
* @param {string} layerId layerId: string - Id of the layer
|
|
287
621
|
* @returns {string} returnType: the layerId, or null if not found
|
|
288
622
|
*/
|
|
289
|
-
export declare const getLayerIdByLayerName:
|
|
623
|
+
export declare const getLayerIdByLayerName: ((state: {
|
|
624
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
625
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
626
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
627
|
+
webmap?: WebMapState;
|
|
628
|
+
services?: import("../types").ServiceState;
|
|
629
|
+
layers?: import("../types").LayerState;
|
|
630
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
631
|
+
}, params_0: string, params_1: {}) => string) & import("reselect").OutputSelectorFields<(args_0: import("../types").ReduxLayer[], args_1: string) => string & {
|
|
632
|
+
clearCache: () => void;
|
|
633
|
+
}> & {
|
|
634
|
+
clearCache: () => void;
|
|
635
|
+
};
|
|
290
636
|
/**
|
|
291
637
|
* Returns the layerIndex in the map for given layerId
|
|
292
638
|
*
|
|
@@ -296,7 +642,19 @@ export declare const getLayerIdByLayerName: import("reselect").OutputParametricS
|
|
|
296
642
|
* @param {string} layerId layerId: string - Id of the layer
|
|
297
643
|
* @returns {number} returnType: index number or -1 if not found
|
|
298
644
|
*/
|
|
299
|
-
export declare const getLayerIndexByLayerId:
|
|
645
|
+
export declare const getLayerIndexByLayerId: ((state: {
|
|
646
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
647
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
648
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
649
|
+
webmap?: WebMapState;
|
|
650
|
+
services?: import("../types").ServiceState;
|
|
651
|
+
layers?: import("../types").LayerState;
|
|
652
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
653
|
+
}, params_0: string, params_1: {}) => number) & import("reselect").OutputSelectorFields<(args_0: import("../types").ReduxLayer[], args_1: string) => number & {
|
|
654
|
+
clearCache: () => void;
|
|
655
|
+
}> & {
|
|
656
|
+
clearCache: () => void;
|
|
657
|
+
};
|
|
300
658
|
/**
|
|
301
659
|
* Returns the Layer in the map for given layerIndex
|
|
302
660
|
*
|
|
@@ -306,7 +664,19 @@ export declare const getLayerIndexByLayerId: import("reselect").OutputParametric
|
|
|
306
664
|
* @param {number} layerIndex layerId: number - Index of the layer in the map
|
|
307
665
|
* @returns {object} returnType: layer, or null if not found
|
|
308
666
|
*/
|
|
309
|
-
export declare const getLayerByLayerIndex:
|
|
667
|
+
export declare const getLayerByLayerIndex: ((state: {
|
|
668
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
669
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
670
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
671
|
+
webmap?: WebMapState;
|
|
672
|
+
services?: import("../types").ServiceState;
|
|
673
|
+
layers?: import("../types").LayerState;
|
|
674
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
675
|
+
}, params_0: string, params_1: {}) => Layer) & import("reselect").OutputSelectorFields<(args_0: import("../types").ReduxLayer[], args_1: number) => Layer & {
|
|
676
|
+
clearCache: () => void;
|
|
677
|
+
}> & {
|
|
678
|
+
clearCache: () => void;
|
|
679
|
+
};
|
|
310
680
|
/**
|
|
311
681
|
* Returns name of all unique dimensions present in all maps
|
|
312
682
|
*
|
|
@@ -314,7 +684,19 @@ export declare const getLayerByLayerIndex: import("reselect").OutputParametricSe
|
|
|
314
684
|
* @param {object} store store: object - store object
|
|
315
685
|
* @returns {array} returnType: array of dimension names
|
|
316
686
|
*/
|
|
317
|
-
export declare const getAllUniqueDimensions:
|
|
687
|
+
export declare const getAllUniqueDimensions: ((state: {
|
|
688
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
689
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
690
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
691
|
+
webmap?: WebMapState;
|
|
692
|
+
services?: import("../types").ServiceState;
|
|
693
|
+
layers?: import("../types").LayerState;
|
|
694
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
695
|
+
}) => string[]) & import("reselect").OutputSelectorFields<(args_0: string[], args_1: AppStore) => string[] & {
|
|
696
|
+
clearCache: () => void;
|
|
697
|
+
}> & {
|
|
698
|
+
clearCache: () => void;
|
|
699
|
+
};
|
|
318
700
|
/**
|
|
319
701
|
* Returns the mapPinLocation for the current map
|
|
320
702
|
*
|
|
@@ -323,4 +705,16 @@ export declare const getAllUniqueDimensions: import("reselect").OutputSelector<A
|
|
|
323
705
|
* @param {string} mapId mapId: string - Id of the map
|
|
324
706
|
* @returns {object} returnType: latitude and longitude of pin
|
|
325
707
|
*/
|
|
326
|
-
export declare const getPinLocation:
|
|
708
|
+
export declare const getPinLocation: ((state: {
|
|
709
|
+
advancedLayerStore?: import("../../advancedLayerStore/types").AdvancedLayerStoreState;
|
|
710
|
+
syncronizationGroupStore?: import("../../generic/synchronizationGroups/types").SynchronizationGroupState;
|
|
711
|
+
ui?: import("../../ui/types").UIStoreType;
|
|
712
|
+
webmap?: WebMapState;
|
|
713
|
+
services?: import("../types").ServiceState;
|
|
714
|
+
layers?: import("../types").LayerState;
|
|
715
|
+
layerSelect?: import("../../layerSelect/types").LayerSelectStoreType;
|
|
716
|
+
}, params_0: string) => import("./types").MapLocation) & import("reselect").OutputSelectorFields<(args_0: WebMap) => import("./types").MapLocation & {
|
|
717
|
+
clearCache: () => void;
|
|
718
|
+
}> & {
|
|
719
|
+
clearCache: () => void;
|
|
720
|
+
};
|