@opengeoweb/store 12.7.0 → 12.9.1
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 +37 -38
- package/package.json +9 -8
- package/src/store/drawingTool/selectors.d.ts +30 -30
- package/src/store/generic/selectors.d.ts +57 -26
- package/src/store/generic/syncGroups/selectors.d.ts +2 -42
- package/src/store/map/map/index.d.ts +2 -2
- package/src/store/map/map/reducer.d.ts +5 -0
- package/src/store/map/map/selectors.d.ts +86 -1724
- package/src/store/ui/selectors.d.ts +2 -42
- /package/{index.esm.d.ts → index.d.ts} +0 -0
|
@@ -10,27 +10,7 @@ import type { uiTypes } from '../../ui';
|
|
|
10
10
|
* @param {string} mapId Id of the map
|
|
11
11
|
* @returns {object} object containing map state (isAnimating, bbox, baseLayers, layers etc.)
|
|
12
12
|
*/
|
|
13
|
-
export declare const getMapById: (
|
|
14
|
-
clearCache: () => void;
|
|
15
|
-
resultsCount: () => number;
|
|
16
|
-
resetResultsCount: () => void;
|
|
17
|
-
} & {
|
|
18
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
19
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
20
|
-
clearCache: () => void;
|
|
21
|
-
resultsCount: () => number;
|
|
22
|
-
resetResultsCount: () => void;
|
|
23
|
-
};
|
|
24
|
-
lastResult: () => WebMap | undefined;
|
|
25
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
26
|
-
recomputations: () => number;
|
|
27
|
-
resetRecomputations: () => void;
|
|
28
|
-
dependencyRecomputations: () => number;
|
|
29
|
-
resetDependencyRecomputations: () => void;
|
|
30
|
-
} & {
|
|
31
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
32
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
33
|
-
};
|
|
13
|
+
export declare const getMapById: (store: CoreAppStore, mapId: string) => WebMap | undefined;
|
|
34
14
|
export declare const getAllMapsByIds: ((state: CoreAppStore) => Record<string, WebMap>) & {
|
|
35
15
|
clearCache: () => void;
|
|
36
16
|
resultsCount: () => number;
|
|
@@ -255,27 +235,7 @@ export declare const getIsMapPresent: ((state: CoreAppStore, mapId: string) => b
|
|
|
255
235
|
resetResultsCount: () => void;
|
|
256
236
|
};
|
|
257
237
|
lastResult: () => boolean;
|
|
258
|
-
dependencies: [(
|
|
259
|
-
clearCache: () => void;
|
|
260
|
-
resultsCount: () => number;
|
|
261
|
-
resetResultsCount: () => void;
|
|
262
|
-
} & {
|
|
263
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
264
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
265
|
-
clearCache: () => void;
|
|
266
|
-
resultsCount: () => number;
|
|
267
|
-
resetResultsCount: () => void;
|
|
268
|
-
};
|
|
269
|
-
lastResult: () => WebMap | undefined;
|
|
270
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
271
|
-
recomputations: () => number;
|
|
272
|
-
resetRecomputations: () => void;
|
|
273
|
-
dependencyRecomputations: () => number;
|
|
274
|
-
resetDependencyRecomputations: () => void;
|
|
275
|
-
} & {
|
|
276
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
277
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
278
|
-
}];
|
|
238
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
279
239
|
recomputations: () => number;
|
|
280
240
|
resetRecomputations: () => void;
|
|
281
241
|
dependencyRecomputations: () => number;
|
|
@@ -304,27 +264,7 @@ export declare const getLayerIds: ((state: CoreAppStore, mapId: string) => strin
|
|
|
304
264
|
resetResultsCount: () => void;
|
|
305
265
|
};
|
|
306
266
|
lastResult: () => string[];
|
|
307
|
-
dependencies: [(
|
|
308
|
-
clearCache: () => void;
|
|
309
|
-
resultsCount: () => number;
|
|
310
|
-
resetResultsCount: () => void;
|
|
311
|
-
} & {
|
|
312
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
313
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
314
|
-
clearCache: () => void;
|
|
315
|
-
resultsCount: () => number;
|
|
316
|
-
resetResultsCount: () => void;
|
|
317
|
-
};
|
|
318
|
-
lastResult: () => WebMap | undefined;
|
|
319
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
320
|
-
recomputations: () => number;
|
|
321
|
-
resetRecomputations: () => void;
|
|
322
|
-
dependencyRecomputations: () => number;
|
|
323
|
-
resetDependencyRecomputations: () => void;
|
|
324
|
-
} & {
|
|
325
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
326
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
327
|
-
}];
|
|
267
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
328
268
|
recomputations: () => number;
|
|
329
269
|
resetRecomputations: () => void;
|
|
330
270
|
dependencyRecomputations: () => number;
|
|
@@ -365,27 +305,7 @@ export declare const getMapLayers: ((state: CoreAppStore, mapId: string) => Redu
|
|
|
365
305
|
resetResultsCount: () => void;
|
|
366
306
|
};
|
|
367
307
|
lastResult: () => string[];
|
|
368
|
-
dependencies: [(
|
|
369
|
-
clearCache: () => void;
|
|
370
|
-
resultsCount: () => number;
|
|
371
|
-
resetResultsCount: () => void;
|
|
372
|
-
} & {
|
|
373
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
374
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
375
|
-
clearCache: () => void;
|
|
376
|
-
resultsCount: () => number;
|
|
377
|
-
resetResultsCount: () => void;
|
|
378
|
-
};
|
|
379
|
-
lastResult: () => WebMap | undefined;
|
|
380
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
381
|
-
recomputations: () => number;
|
|
382
|
-
resetRecomputations: () => void;
|
|
383
|
-
dependencyRecomputations: () => number;
|
|
384
|
-
resetDependencyRecomputations: () => void;
|
|
385
|
-
} & {
|
|
386
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
387
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
388
|
-
}];
|
|
308
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
389
309
|
recomputations: () => number;
|
|
390
310
|
resetRecomputations: () => void;
|
|
391
311
|
dependencyRecomputations: () => number;
|
|
@@ -456,27 +376,7 @@ export declare const getMapLayersWithoutDimensionCurrentValue: ((state: CoreAppS
|
|
|
456
376
|
resetResultsCount: () => void;
|
|
457
377
|
};
|
|
458
378
|
lastResult: () => string[];
|
|
459
|
-
dependencies: [(
|
|
460
|
-
clearCache: () => void;
|
|
461
|
-
resultsCount: () => number;
|
|
462
|
-
resetResultsCount: () => void;
|
|
463
|
-
} & {
|
|
464
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
465
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
466
|
-
clearCache: () => void;
|
|
467
|
-
resultsCount: () => number;
|
|
468
|
-
resetResultsCount: () => void;
|
|
469
|
-
};
|
|
470
|
-
lastResult: () => WebMap | undefined;
|
|
471
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
472
|
-
recomputations: () => number;
|
|
473
|
-
resetRecomputations: () => void;
|
|
474
|
-
dependencyRecomputations: () => number;
|
|
475
|
-
resetDependencyRecomputations: () => void;
|
|
476
|
-
} & {
|
|
477
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
478
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
479
|
-
}];
|
|
379
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
480
380
|
recomputations: () => number;
|
|
481
381
|
resetRecomputations: () => void;
|
|
482
382
|
dependencyRecomputations: () => number;
|
|
@@ -533,27 +433,7 @@ export declare const getMapBaseLayersIds: ((state: CoreAppStore, mapId: string)
|
|
|
533
433
|
resetResultsCount: () => void;
|
|
534
434
|
};
|
|
535
435
|
lastResult: () => string[];
|
|
536
|
-
dependencies: [(
|
|
537
|
-
clearCache: () => void;
|
|
538
|
-
resultsCount: () => number;
|
|
539
|
-
resetResultsCount: () => void;
|
|
540
|
-
} & {
|
|
541
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
542
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
543
|
-
clearCache: () => void;
|
|
544
|
-
resultsCount: () => number;
|
|
545
|
-
resetResultsCount: () => void;
|
|
546
|
-
};
|
|
547
|
-
lastResult: () => WebMap | undefined;
|
|
548
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
549
|
-
recomputations: () => number;
|
|
550
|
-
resetRecomputations: () => void;
|
|
551
|
-
dependencyRecomputations: () => number;
|
|
552
|
-
resetDependencyRecomputations: () => void;
|
|
553
|
-
} & {
|
|
554
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
555
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
556
|
-
}];
|
|
436
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
557
437
|
recomputations: () => number;
|
|
558
438
|
resetRecomputations: () => void;
|
|
559
439
|
dependencyRecomputations: () => number;
|
|
@@ -594,27 +474,7 @@ export declare const getMapBaseLayers: ((state: CoreAppStore, mapId: string) =>
|
|
|
594
474
|
resetResultsCount: () => void;
|
|
595
475
|
};
|
|
596
476
|
lastResult: () => string[];
|
|
597
|
-
dependencies: [(
|
|
598
|
-
clearCache: () => void;
|
|
599
|
-
resultsCount: () => number;
|
|
600
|
-
resetResultsCount: () => void;
|
|
601
|
-
} & {
|
|
602
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
603
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
604
|
-
clearCache: () => void;
|
|
605
|
-
resultsCount: () => number;
|
|
606
|
-
resetResultsCount: () => void;
|
|
607
|
-
};
|
|
608
|
-
lastResult: () => WebMap | undefined;
|
|
609
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
610
|
-
recomputations: () => number;
|
|
611
|
-
resetRecomputations: () => void;
|
|
612
|
-
dependencyRecomputations: () => number;
|
|
613
|
-
resetDependencyRecomputations: () => void;
|
|
614
|
-
} & {
|
|
615
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
616
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
617
|
-
}];
|
|
477
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
618
478
|
recomputations: () => number;
|
|
619
479
|
resetRecomputations: () => void;
|
|
620
480
|
dependencyRecomputations: () => number;
|
|
@@ -671,27 +531,7 @@ export declare const getMapOverLayersIds: ((state: CoreAppStore, mapId: string)
|
|
|
671
531
|
resetResultsCount: () => void;
|
|
672
532
|
};
|
|
673
533
|
lastResult: () => string[];
|
|
674
|
-
dependencies: [(
|
|
675
|
-
clearCache: () => void;
|
|
676
|
-
resultsCount: () => number;
|
|
677
|
-
resetResultsCount: () => void;
|
|
678
|
-
} & {
|
|
679
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
680
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
681
|
-
clearCache: () => void;
|
|
682
|
-
resultsCount: () => number;
|
|
683
|
-
resetResultsCount: () => void;
|
|
684
|
-
};
|
|
685
|
-
lastResult: () => WebMap | undefined;
|
|
686
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
687
|
-
recomputations: () => number;
|
|
688
|
-
resetRecomputations: () => void;
|
|
689
|
-
dependencyRecomputations: () => number;
|
|
690
|
-
resetDependencyRecomputations: () => void;
|
|
691
|
-
} & {
|
|
692
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
693
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
694
|
-
}];
|
|
534
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
695
535
|
recomputations: () => number;
|
|
696
536
|
resetRecomputations: () => void;
|
|
697
537
|
dependencyRecomputations: () => number;
|
|
@@ -712,27 +552,7 @@ export declare const getMapFeatureLayers: ((state: CoreAppStore, mapId: string)
|
|
|
712
552
|
resetResultsCount: () => void;
|
|
713
553
|
};
|
|
714
554
|
lastResult: () => ReduxLayer[];
|
|
715
|
-
dependencies: [(
|
|
716
|
-
clearCache: () => void;
|
|
717
|
-
resultsCount: () => number;
|
|
718
|
-
resetResultsCount: () => void;
|
|
719
|
-
} & {
|
|
720
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
721
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
722
|
-
clearCache: () => void;
|
|
723
|
-
resultsCount: () => number;
|
|
724
|
-
resetResultsCount: () => void;
|
|
725
|
-
};
|
|
726
|
-
lastResult: () => WebMap | undefined;
|
|
727
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
728
|
-
recomputations: () => number;
|
|
729
|
-
resetRecomputations: () => void;
|
|
730
|
-
dependencyRecomputations: () => number;
|
|
731
|
-
resetDependencyRecomputations: () => void;
|
|
732
|
-
} & {
|
|
733
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
734
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
735
|
-
}, ((state: CoreAppStore) => ReduxLayer[]) & {
|
|
555
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined, ((state: CoreAppStore) => ReduxLayer[]) & {
|
|
736
556
|
clearCache: () => void;
|
|
737
557
|
resultsCount: () => number;
|
|
738
558
|
resetResultsCount: () => void;
|
|
@@ -853,27 +673,7 @@ export declare const getMapOverLayers: ((state: CoreAppStore, mapId: string) =>
|
|
|
853
673
|
resetResultsCount: () => void;
|
|
854
674
|
};
|
|
855
675
|
lastResult: () => string[];
|
|
856
|
-
dependencies: [(
|
|
857
|
-
clearCache: () => void;
|
|
858
|
-
resultsCount: () => number;
|
|
859
|
-
resetResultsCount: () => void;
|
|
860
|
-
} & {
|
|
861
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
862
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
863
|
-
clearCache: () => void;
|
|
864
|
-
resultsCount: () => number;
|
|
865
|
-
resetResultsCount: () => void;
|
|
866
|
-
};
|
|
867
|
-
lastResult: () => WebMap | undefined;
|
|
868
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
869
|
-
recomputations: () => number;
|
|
870
|
-
resetRecomputations: () => void;
|
|
871
|
-
dependencyRecomputations: () => number;
|
|
872
|
-
resetDependencyRecomputations: () => void;
|
|
873
|
-
} & {
|
|
874
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
875
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
876
|
-
}];
|
|
676
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
877
677
|
recomputations: () => number;
|
|
878
678
|
resetRecomputations: () => void;
|
|
879
679
|
dependencyRecomputations: () => number;
|
|
@@ -930,27 +730,7 @@ export declare const getMapDimensions: ((state: CoreAppStore, mapId: string) =>
|
|
|
930
730
|
resetResultsCount: () => void;
|
|
931
731
|
};
|
|
932
732
|
lastResult: () => Dimension[] | undefined;
|
|
933
|
-
dependencies: [(
|
|
934
|
-
clearCache: () => void;
|
|
935
|
-
resultsCount: () => number;
|
|
936
|
-
resetResultsCount: () => void;
|
|
937
|
-
} & {
|
|
938
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
939
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
940
|
-
clearCache: () => void;
|
|
941
|
-
resultsCount: () => number;
|
|
942
|
-
resetResultsCount: () => void;
|
|
943
|
-
};
|
|
944
|
-
lastResult: () => WebMap | undefined;
|
|
945
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
946
|
-
recomputations: () => number;
|
|
947
|
-
resetRecomputations: () => void;
|
|
948
|
-
dependencyRecomputations: () => number;
|
|
949
|
-
resetDependencyRecomputations: () => void;
|
|
950
|
-
} & {
|
|
951
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
952
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
953
|
-
}];
|
|
733
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
954
734
|
recomputations: () => number;
|
|
955
735
|
resetRecomputations: () => void;
|
|
956
736
|
dependencyRecomputations: () => number;
|
|
@@ -980,27 +760,7 @@ export declare const getMapDimension: ((state: any, _mapId: any, dimensionName:
|
|
|
980
760
|
resetResultsCount: () => void;
|
|
981
761
|
};
|
|
982
762
|
lastResult: () => Dimension | undefined;
|
|
983
|
-
dependencies: [(
|
|
984
|
-
clearCache: () => void;
|
|
985
|
-
resultsCount: () => number;
|
|
986
|
-
resetResultsCount: () => void;
|
|
987
|
-
} & {
|
|
988
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
989
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
990
|
-
clearCache: () => void;
|
|
991
|
-
resultsCount: () => number;
|
|
992
|
-
resetResultsCount: () => void;
|
|
993
|
-
};
|
|
994
|
-
lastResult: () => WebMap | undefined;
|
|
995
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
996
|
-
recomputations: () => number;
|
|
997
|
-
resetRecomputations: () => void;
|
|
998
|
-
dependencyRecomputations: () => number;
|
|
999
|
-
resetDependencyRecomputations: () => void;
|
|
1000
|
-
} & {
|
|
1001
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1002
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1003
|
-
}, (_store: any, mapId: any) => string, (_store: any, _mapId: any, dimensionName: string) => string];
|
|
763
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined, (_store: any, mapId: any) => string, (_store: any, _mapId: any, dimensionName: string) => string];
|
|
1004
764
|
recomputations: () => number;
|
|
1005
765
|
resetRecomputations: () => void;
|
|
1006
766
|
dependencyRecomputations: () => number;
|
|
@@ -1073,27 +833,7 @@ export declare const getDataLimitsFromLayers: ((state: CoreAppStore, mapId: stri
|
|
|
1073
833
|
resetResultsCount: () => void;
|
|
1074
834
|
};
|
|
1075
835
|
lastResult: () => string[];
|
|
1076
|
-
dependencies: [(
|
|
1077
|
-
clearCache: () => void;
|
|
1078
|
-
resultsCount: () => number;
|
|
1079
|
-
resetResultsCount: () => void;
|
|
1080
|
-
} & {
|
|
1081
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1082
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1083
|
-
clearCache: () => void;
|
|
1084
|
-
resultsCount: () => number;
|
|
1085
|
-
resetResultsCount: () => void;
|
|
1086
|
-
};
|
|
1087
|
-
lastResult: () => WebMap | undefined;
|
|
1088
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1089
|
-
recomputations: () => number;
|
|
1090
|
-
resetRecomputations: () => void;
|
|
1091
|
-
dependencyRecomputations: () => number;
|
|
1092
|
-
resetDependencyRecomputations: () => void;
|
|
1093
|
-
} & {
|
|
1094
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1095
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1096
|
-
}];
|
|
836
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1097
837
|
recomputations: () => number;
|
|
1098
838
|
resetRecomputations: () => void;
|
|
1099
839
|
dependencyRecomputations: () => number;
|
|
@@ -1158,27 +898,7 @@ export declare const getSrs: ((state: CoreAppStore, mapId: string) => string) &
|
|
|
1158
898
|
resetResultsCount: () => void;
|
|
1159
899
|
};
|
|
1160
900
|
lastResult: () => string;
|
|
1161
|
-
dependencies: [(
|
|
1162
|
-
clearCache: () => void;
|
|
1163
|
-
resultsCount: () => number;
|
|
1164
|
-
resetResultsCount: () => void;
|
|
1165
|
-
} & {
|
|
1166
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1167
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1168
|
-
clearCache: () => void;
|
|
1169
|
-
resultsCount: () => number;
|
|
1170
|
-
resetResultsCount: () => void;
|
|
1171
|
-
};
|
|
1172
|
-
lastResult: () => WebMap | undefined;
|
|
1173
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1174
|
-
recomputations: () => number;
|
|
1175
|
-
resetRecomputations: () => void;
|
|
1176
|
-
dependencyRecomputations: () => number;
|
|
1177
|
-
resetDependencyRecomputations: () => void;
|
|
1178
|
-
} & {
|
|
1179
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1180
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1181
|
-
}];
|
|
901
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1182
902
|
recomputations: () => number;
|
|
1183
903
|
resetRecomputations: () => void;
|
|
1184
904
|
dependencyRecomputations: () => number;
|
|
@@ -1207,27 +927,7 @@ export declare const getBbox: ((state: CoreAppStore, mapId: string) => Bbox) & {
|
|
|
1207
927
|
resetResultsCount: () => void;
|
|
1208
928
|
};
|
|
1209
929
|
lastResult: () => Bbox;
|
|
1210
|
-
dependencies: [(
|
|
1211
|
-
clearCache: () => void;
|
|
1212
|
-
resultsCount: () => number;
|
|
1213
|
-
resetResultsCount: () => void;
|
|
1214
|
-
} & {
|
|
1215
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1216
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1217
|
-
clearCache: () => void;
|
|
1218
|
-
resultsCount: () => number;
|
|
1219
|
-
resetResultsCount: () => void;
|
|
1220
|
-
};
|
|
1221
|
-
lastResult: () => WebMap | undefined;
|
|
1222
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1223
|
-
recomputations: () => number;
|
|
1224
|
-
resetRecomputations: () => void;
|
|
1225
|
-
dependencyRecomputations: () => number;
|
|
1226
|
-
resetDependencyRecomputations: () => void;
|
|
1227
|
-
} & {
|
|
1228
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1229
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1230
|
-
}];
|
|
930
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1231
931
|
recomputations: () => number;
|
|
1232
932
|
resetRecomputations: () => void;
|
|
1233
933
|
dependencyRecomputations: () => number;
|
|
@@ -1244,47 +944,7 @@ export declare const getBbox: ((state: CoreAppStore, mapId: string) => Bbox) & {
|
|
|
1244
944
|
* @param {string} mapId mapId: string - Id of the map
|
|
1245
945
|
* @returns {boolean} returnType: boolean
|
|
1246
946
|
*/
|
|
1247
|
-
export declare const isAnimating: (
|
|
1248
|
-
clearCache: () => void;
|
|
1249
|
-
resultsCount: () => number;
|
|
1250
|
-
resetResultsCount: () => void;
|
|
1251
|
-
} & {
|
|
1252
|
-
resultFunc: (resultFuncArgs_0: WebMap | undefined) => boolean;
|
|
1253
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMap | undefined) => boolean) & {
|
|
1254
|
-
clearCache: () => void;
|
|
1255
|
-
resultsCount: () => number;
|
|
1256
|
-
resetResultsCount: () => void;
|
|
1257
|
-
};
|
|
1258
|
-
lastResult: () => boolean;
|
|
1259
|
-
dependencies: [((state: CoreAppStore, mapId: string) => WebMap | undefined) & {
|
|
1260
|
-
clearCache: () => void;
|
|
1261
|
-
resultsCount: () => number;
|
|
1262
|
-
resetResultsCount: () => void;
|
|
1263
|
-
} & {
|
|
1264
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1265
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1266
|
-
clearCache: () => void;
|
|
1267
|
-
resultsCount: () => number;
|
|
1268
|
-
resetResultsCount: () => void;
|
|
1269
|
-
};
|
|
1270
|
-
lastResult: () => WebMap | undefined;
|
|
1271
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1272
|
-
recomputations: () => number;
|
|
1273
|
-
resetRecomputations: () => void;
|
|
1274
|
-
dependencyRecomputations: () => number;
|
|
1275
|
-
resetDependencyRecomputations: () => void;
|
|
1276
|
-
} & {
|
|
1277
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1278
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1279
|
-
}];
|
|
1280
|
-
recomputations: () => number;
|
|
1281
|
-
resetRecomputations: () => void;
|
|
1282
|
-
dependencyRecomputations: () => number;
|
|
1283
|
-
resetDependencyRecomputations: () => void;
|
|
1284
|
-
} & {
|
|
1285
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1286
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1287
|
-
};
|
|
947
|
+
export declare const isAnimating: (store: CoreAppStore, mapId: string) => boolean;
|
|
1288
948
|
/**
|
|
1289
949
|
* Gets if any linked map is animating
|
|
1290
950
|
*
|
|
@@ -1293,47 +953,9 @@ export declare const isAnimating: ((state: CoreAppStore, mapId: string) => boole
|
|
|
1293
953
|
* @param {string} mapId mapId: string - Id of the map
|
|
1294
954
|
* @returns {object} returnType: object - object containing isAnimating boolean and id string
|
|
1295
955
|
*/
|
|
1296
|
-
export declare const linkedMapAnimationInfo: (
|
|
956
|
+
export declare const linkedMapAnimationInfo: (store: CoreAppStore, mapId: string) => {
|
|
1297
957
|
isAnimating: boolean;
|
|
1298
958
|
id: string;
|
|
1299
|
-
}) & {
|
|
1300
|
-
clearCache: () => void;
|
|
1301
|
-
resultsCount: () => number;
|
|
1302
|
-
resetResultsCount: () => void;
|
|
1303
|
-
} & {
|
|
1304
|
-
resultFunc: (resultFuncArgs_0: {
|
|
1305
|
-
isAnimating: boolean;
|
|
1306
|
-
id: string;
|
|
1307
|
-
}) => {
|
|
1308
|
-
isAnimating: boolean;
|
|
1309
|
-
id: string;
|
|
1310
|
-
};
|
|
1311
|
-
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1312
|
-
isAnimating: boolean;
|
|
1313
|
-
id: string;
|
|
1314
|
-
}) => {
|
|
1315
|
-
isAnimating: boolean;
|
|
1316
|
-
id: string;
|
|
1317
|
-
}) & {
|
|
1318
|
-
clearCache: () => void;
|
|
1319
|
-
resultsCount: () => number;
|
|
1320
|
-
resetResultsCount: () => void;
|
|
1321
|
-
};
|
|
1322
|
-
lastResult: () => {
|
|
1323
|
-
isAnimating: boolean;
|
|
1324
|
-
id: string;
|
|
1325
|
-
};
|
|
1326
|
-
dependencies: [(store: CoreAppStore, mapId: string) => {
|
|
1327
|
-
isAnimating: boolean;
|
|
1328
|
-
id: string;
|
|
1329
|
-
}];
|
|
1330
|
-
recomputations: () => number;
|
|
1331
|
-
resetRecomputations: () => void;
|
|
1332
|
-
dependencyRecomputations: () => number;
|
|
1333
|
-
resetDependencyRecomputations: () => void;
|
|
1334
|
-
} & {
|
|
1335
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1336
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1337
959
|
};
|
|
1338
960
|
/**
|
|
1339
961
|
* Gets start time of animation
|
|
@@ -1355,27 +977,7 @@ export declare const getAnimationStartTime: ((state: CoreAppStore, mapId: string
|
|
|
1355
977
|
resetResultsCount: () => void;
|
|
1356
978
|
};
|
|
1357
979
|
lastResult: () => string | undefined;
|
|
1358
|
-
dependencies: [(
|
|
1359
|
-
clearCache: () => void;
|
|
1360
|
-
resultsCount: () => number;
|
|
1361
|
-
resetResultsCount: () => void;
|
|
1362
|
-
} & {
|
|
1363
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1364
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1365
|
-
clearCache: () => void;
|
|
1366
|
-
resultsCount: () => number;
|
|
1367
|
-
resetResultsCount: () => void;
|
|
1368
|
-
};
|
|
1369
|
-
lastResult: () => WebMap | undefined;
|
|
1370
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1371
|
-
recomputations: () => number;
|
|
1372
|
-
resetRecomputations: () => void;
|
|
1373
|
-
dependencyRecomputations: () => number;
|
|
1374
|
-
resetDependencyRecomputations: () => void;
|
|
1375
|
-
} & {
|
|
1376
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1377
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1378
|
-
}];
|
|
980
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1379
981
|
recomputations: () => number;
|
|
1380
982
|
resetRecomputations: () => void;
|
|
1381
983
|
dependencyRecomputations: () => number;
|
|
@@ -1404,27 +1006,7 @@ export declare const getAnimationEndTime: ((state: CoreAppStore, mapId: string)
|
|
|
1404
1006
|
resetResultsCount: () => void;
|
|
1405
1007
|
};
|
|
1406
1008
|
lastResult: () => string | undefined;
|
|
1407
|
-
dependencies: [(
|
|
1408
|
-
clearCache: () => void;
|
|
1409
|
-
resultsCount: () => number;
|
|
1410
|
-
resetResultsCount: () => void;
|
|
1411
|
-
} & {
|
|
1412
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1413
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1414
|
-
clearCache: () => void;
|
|
1415
|
-
resultsCount: () => number;
|
|
1416
|
-
resetResultsCount: () => void;
|
|
1417
|
-
};
|
|
1418
|
-
lastResult: () => WebMap | undefined;
|
|
1419
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1420
|
-
recomputations: () => number;
|
|
1421
|
-
resetRecomputations: () => void;
|
|
1422
|
-
dependencyRecomputations: () => number;
|
|
1423
|
-
resetDependencyRecomputations: () => void;
|
|
1424
|
-
} & {
|
|
1425
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1426
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1427
|
-
}];
|
|
1009
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1428
1010
|
recomputations: () => number;
|
|
1429
1011
|
resetRecomputations: () => void;
|
|
1430
1012
|
dependencyRecomputations: () => number;
|
|
@@ -1453,27 +1035,7 @@ export declare const isAutoUpdating: ((state: CoreAppStore, mapId: string) => bo
|
|
|
1453
1035
|
resetResultsCount: () => void;
|
|
1454
1036
|
};
|
|
1455
1037
|
lastResult: () => boolean;
|
|
1456
|
-
dependencies: [(
|
|
1457
|
-
clearCache: () => void;
|
|
1458
|
-
resultsCount: () => number;
|
|
1459
|
-
resetResultsCount: () => void;
|
|
1460
|
-
} & {
|
|
1461
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1462
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1463
|
-
clearCache: () => void;
|
|
1464
|
-
resultsCount: () => number;
|
|
1465
|
-
resetResultsCount: () => void;
|
|
1466
|
-
};
|
|
1467
|
-
lastResult: () => WebMap | undefined;
|
|
1468
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1469
|
-
recomputations: () => number;
|
|
1470
|
-
resetRecomputations: () => void;
|
|
1471
|
-
dependencyRecomputations: () => number;
|
|
1472
|
-
resetDependencyRecomputations: () => void;
|
|
1473
|
-
} & {
|
|
1474
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1475
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1476
|
-
}];
|
|
1038
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1477
1039
|
recomputations: () => number;
|
|
1478
1040
|
resetRecomputations: () => void;
|
|
1479
1041
|
dependencyRecomputations: () => number;
|
|
@@ -1502,27 +1064,7 @@ export declare const shouldEndtimeOverride: ((state: CoreAppStore, mapId: string
|
|
|
1502
1064
|
resetResultsCount: () => void;
|
|
1503
1065
|
};
|
|
1504
1066
|
lastResult: () => boolean;
|
|
1505
|
-
dependencies: [(
|
|
1506
|
-
clearCache: () => void;
|
|
1507
|
-
resultsCount: () => number;
|
|
1508
|
-
resetResultsCount: () => void;
|
|
1509
|
-
} & {
|
|
1510
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1511
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1512
|
-
clearCache: () => void;
|
|
1513
|
-
resultsCount: () => number;
|
|
1514
|
-
resetResultsCount: () => void;
|
|
1515
|
-
};
|
|
1516
|
-
lastResult: () => WebMap | undefined;
|
|
1517
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1518
|
-
recomputations: () => number;
|
|
1519
|
-
resetRecomputations: () => void;
|
|
1520
|
-
dependencyRecomputations: () => number;
|
|
1521
|
-
resetDependencyRecomputations: () => void;
|
|
1522
|
-
} & {
|
|
1523
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1524
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1525
|
-
}];
|
|
1067
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1526
1068
|
recomputations: () => number;
|
|
1527
1069
|
resetRecomputations: () => void;
|
|
1528
1070
|
dependencyRecomputations: () => number;
|
|
@@ -1550,27 +1092,7 @@ export declare const getActiveLayerId: ((state: CoreAppStore, mapId: string) =>
|
|
|
1550
1092
|
resetResultsCount: () => void;
|
|
1551
1093
|
};
|
|
1552
1094
|
lastResult: () => string | undefined;
|
|
1553
|
-
dependencies: [(
|
|
1554
|
-
clearCache: () => void;
|
|
1555
|
-
resultsCount: () => number;
|
|
1556
|
-
resetResultsCount: () => void;
|
|
1557
|
-
} & {
|
|
1558
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1559
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1560
|
-
clearCache: () => void;
|
|
1561
|
-
resultsCount: () => number;
|
|
1562
|
-
resetResultsCount: () => void;
|
|
1563
|
-
};
|
|
1564
|
-
lastResult: () => WebMap | undefined;
|
|
1565
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1566
|
-
recomputations: () => number;
|
|
1567
|
-
resetRecomputations: () => void;
|
|
1568
|
-
dependencyRecomputations: () => number;
|
|
1569
|
-
resetDependencyRecomputations: () => void;
|
|
1570
|
-
} & {
|
|
1571
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1572
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1573
|
-
}];
|
|
1095
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1574
1096
|
recomputations: () => number;
|
|
1575
1097
|
resetRecomputations: () => void;
|
|
1576
1098
|
dependencyRecomputations: () => number;
|
|
@@ -1598,27 +1120,7 @@ export declare const getAutoUpdateLayerId: ((state: CoreAppStore, mapId: string)
|
|
|
1598
1120
|
resetResultsCount: () => void;
|
|
1599
1121
|
};
|
|
1600
1122
|
lastResult: () => string | undefined;
|
|
1601
|
-
dependencies: [(
|
|
1602
|
-
clearCache: () => void;
|
|
1603
|
-
resultsCount: () => number;
|
|
1604
|
-
resetResultsCount: () => void;
|
|
1605
|
-
} & {
|
|
1606
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1607
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1608
|
-
clearCache: () => void;
|
|
1609
|
-
resultsCount: () => number;
|
|
1610
|
-
resetResultsCount: () => void;
|
|
1611
|
-
};
|
|
1612
|
-
lastResult: () => WebMap | undefined;
|
|
1613
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1614
|
-
recomputations: () => number;
|
|
1615
|
-
resetRecomputations: () => void;
|
|
1616
|
-
dependencyRecomputations: () => number;
|
|
1617
|
-
resetDependencyRecomputations: () => void;
|
|
1618
|
-
} & {
|
|
1619
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1620
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1621
|
-
}];
|
|
1123
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1622
1124
|
recomputations: () => number;
|
|
1623
1125
|
resetRecomputations: () => void;
|
|
1624
1126
|
dependencyRecomputations: () => number;
|
|
@@ -1646,27 +1148,7 @@ export declare const getAutoTimeStepLayerId: ((state: CoreAppStore, mapId: strin
|
|
|
1646
1148
|
resetResultsCount: () => void;
|
|
1647
1149
|
};
|
|
1648
1150
|
lastResult: () => string | undefined;
|
|
1649
|
-
dependencies: [(
|
|
1650
|
-
clearCache: () => void;
|
|
1651
|
-
resultsCount: () => number;
|
|
1652
|
-
resetResultsCount: () => void;
|
|
1653
|
-
} & {
|
|
1654
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1655
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1656
|
-
clearCache: () => void;
|
|
1657
|
-
resultsCount: () => number;
|
|
1658
|
-
resetResultsCount: () => void;
|
|
1659
|
-
};
|
|
1660
|
-
lastResult: () => WebMap | undefined;
|
|
1661
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1662
|
-
recomputations: () => number;
|
|
1663
|
-
resetRecomputations: () => void;
|
|
1664
|
-
dependencyRecomputations: () => number;
|
|
1665
|
-
resetDependencyRecomputations: () => void;
|
|
1666
|
-
} & {
|
|
1667
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1668
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1669
|
-
}];
|
|
1151
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1670
1152
|
recomputations: () => number;
|
|
1671
1153
|
resetRecomputations: () => void;
|
|
1672
1154
|
dependencyRecomputations: () => number;
|
|
@@ -1695,27 +1177,7 @@ export declare const getMapTimeSliderSpan: ((state: CoreAppStore, mapId: string)
|
|
|
1695
1177
|
resetResultsCount: () => void;
|
|
1696
1178
|
};
|
|
1697
1179
|
lastResult: () => number | undefined;
|
|
1698
|
-
dependencies: [(
|
|
1699
|
-
clearCache: () => void;
|
|
1700
|
-
resultsCount: () => number;
|
|
1701
|
-
resetResultsCount: () => void;
|
|
1702
|
-
} & {
|
|
1703
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1704
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1705
|
-
clearCache: () => void;
|
|
1706
|
-
resultsCount: () => number;
|
|
1707
|
-
resetResultsCount: () => void;
|
|
1708
|
-
};
|
|
1709
|
-
lastResult: () => WebMap | undefined;
|
|
1710
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1711
|
-
recomputations: () => number;
|
|
1712
|
-
resetRecomputations: () => void;
|
|
1713
|
-
dependencyRecomputations: () => number;
|
|
1714
|
-
resetDependencyRecomputations: () => void;
|
|
1715
|
-
} & {
|
|
1716
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1717
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1718
|
-
}];
|
|
1180
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1719
1181
|
recomputations: () => number;
|
|
1720
1182
|
resetRecomputations: () => void;
|
|
1721
1183
|
dependencyRecomputations: () => number;
|
|
@@ -1744,27 +1206,7 @@ export declare const getMapTimeStep: ((state: CoreAppStore, mapId: string) => nu
|
|
|
1744
1206
|
resetResultsCount: () => void;
|
|
1745
1207
|
};
|
|
1746
1208
|
lastResult: () => number;
|
|
1747
|
-
dependencies: [(
|
|
1748
|
-
clearCache: () => void;
|
|
1749
|
-
resultsCount: () => number;
|
|
1750
|
-
resetResultsCount: () => void;
|
|
1751
|
-
} & {
|
|
1752
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1753
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1754
|
-
clearCache: () => void;
|
|
1755
|
-
resultsCount: () => number;
|
|
1756
|
-
resetResultsCount: () => void;
|
|
1757
|
-
};
|
|
1758
|
-
lastResult: () => WebMap | undefined;
|
|
1759
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1760
|
-
recomputations: () => number;
|
|
1761
|
-
resetRecomputations: () => void;
|
|
1762
|
-
dependencyRecomputations: () => number;
|
|
1763
|
-
resetDependencyRecomputations: () => void;
|
|
1764
|
-
} & {
|
|
1765
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1766
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1767
|
-
}];
|
|
1209
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1768
1210
|
recomputations: () => number;
|
|
1769
1211
|
resetRecomputations: () => void;
|
|
1770
1212
|
dependencyRecomputations: () => number;
|
|
@@ -1785,27 +1227,7 @@ export declare const getMapTimeStepWithoutDefault: ((state: CoreAppStore, mapId:
|
|
|
1785
1227
|
resetResultsCount: () => void;
|
|
1786
1228
|
};
|
|
1787
1229
|
lastResult: () => number | undefined;
|
|
1788
|
-
dependencies: [(
|
|
1789
|
-
clearCache: () => void;
|
|
1790
|
-
resultsCount: () => number;
|
|
1791
|
-
resetResultsCount: () => void;
|
|
1792
|
-
} & {
|
|
1793
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1794
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1795
|
-
clearCache: () => void;
|
|
1796
|
-
resultsCount: () => number;
|
|
1797
|
-
resetResultsCount: () => void;
|
|
1798
|
-
};
|
|
1799
|
-
lastResult: () => WebMap | undefined;
|
|
1800
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1801
|
-
recomputations: () => number;
|
|
1802
|
-
resetRecomputations: () => void;
|
|
1803
|
-
dependencyRecomputations: () => number;
|
|
1804
|
-
resetDependencyRecomputations: () => void;
|
|
1805
|
-
} & {
|
|
1806
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1807
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1808
|
-
}];
|
|
1230
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1809
1231
|
recomputations: () => number;
|
|
1810
1232
|
resetRecomputations: () => void;
|
|
1811
1233
|
dependencyRecomputations: () => number;
|
|
@@ -1834,27 +1256,7 @@ export declare const getMapAnimationDelay: ((state: CoreAppStore, mapId: string)
|
|
|
1834
1256
|
resetResultsCount: () => void;
|
|
1835
1257
|
};
|
|
1836
1258
|
lastResult: () => number | undefined;
|
|
1837
|
-
dependencies: [(
|
|
1838
|
-
clearCache: () => void;
|
|
1839
|
-
resultsCount: () => number;
|
|
1840
|
-
resetResultsCount: () => void;
|
|
1841
|
-
} & {
|
|
1842
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1843
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1844
|
-
clearCache: () => void;
|
|
1845
|
-
resultsCount: () => number;
|
|
1846
|
-
resetResultsCount: () => void;
|
|
1847
|
-
};
|
|
1848
|
-
lastResult: () => WebMap | undefined;
|
|
1849
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1850
|
-
recomputations: () => number;
|
|
1851
|
-
resetRecomputations: () => void;
|
|
1852
|
-
dependencyRecomputations: () => number;
|
|
1853
|
-
resetDependencyRecomputations: () => void;
|
|
1854
|
-
} & {
|
|
1855
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1856
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1857
|
-
}];
|
|
1259
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1858
1260
|
recomputations: () => number;
|
|
1859
1261
|
resetRecomputations: () => void;
|
|
1860
1262
|
dependencyRecomputations: () => number;
|
|
@@ -1883,27 +1285,7 @@ export declare const getMapTimeSliderWidth: ((state: CoreAppStore, mapId: string
|
|
|
1883
1285
|
resetResultsCount: () => void;
|
|
1884
1286
|
};
|
|
1885
1287
|
lastResult: () => number | undefined;
|
|
1886
|
-
dependencies: [(
|
|
1887
|
-
clearCache: () => void;
|
|
1888
|
-
resultsCount: () => number;
|
|
1889
|
-
resetResultsCount: () => void;
|
|
1890
|
-
} & {
|
|
1891
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1892
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1893
|
-
clearCache: () => void;
|
|
1894
|
-
resultsCount: () => number;
|
|
1895
|
-
resetResultsCount: () => void;
|
|
1896
|
-
};
|
|
1897
|
-
lastResult: () => WebMap | undefined;
|
|
1898
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1899
|
-
recomputations: () => number;
|
|
1900
|
-
resetRecomputations: () => void;
|
|
1901
|
-
dependencyRecomputations: () => number;
|
|
1902
|
-
resetDependencyRecomputations: () => void;
|
|
1903
|
-
} & {
|
|
1904
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1905
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1906
|
-
}];
|
|
1288
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1907
1289
|
recomputations: () => number;
|
|
1908
1290
|
resetRecomputations: () => void;
|
|
1909
1291
|
dependencyRecomputations: () => number;
|
|
@@ -1920,80 +1302,20 @@ export declare const getMapTimeSliderWidth: ((state: CoreAppStore, mapId: string
|
|
|
1920
1302
|
* @param {string} mapId mapId: string - Id of the map
|
|
1921
1303
|
* @returns {number} returnType: number - center time as a unix timestamp
|
|
1922
1304
|
*/
|
|
1923
|
-
export declare const getMapTimeSliderCenterTime: (
|
|
1305
|
+
export declare const getMapTimeSliderCenterTime: (store: CoreAppStore, mapId: string) => number;
|
|
1306
|
+
export declare const getMapTimeSliderStartCenterEndAndStep: ((state: CoreAppStore, mapId: string) => TimeSliderStartCenterEndTime) & {
|
|
1924
1307
|
clearCache: () => void;
|
|
1925
1308
|
resultsCount: () => number;
|
|
1926
1309
|
resetResultsCount: () => void;
|
|
1927
1310
|
} & {
|
|
1928
|
-
resultFunc: (resultFuncArgs_0: WebMap | undefined) =>
|
|
1929
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMap | undefined) =>
|
|
1311
|
+
resultFunc: (resultFuncArgs_0: WebMap | undefined) => TimeSliderStartCenterEndTime;
|
|
1312
|
+
memoizedResultFunc: ((resultFuncArgs_0: WebMap | undefined) => TimeSliderStartCenterEndTime) & {
|
|
1930
1313
|
clearCache: () => void;
|
|
1931
1314
|
resultsCount: () => number;
|
|
1932
1315
|
resetResultsCount: () => void;
|
|
1933
1316
|
};
|
|
1934
|
-
lastResult: () =>
|
|
1935
|
-
dependencies: [(
|
|
1936
|
-
clearCache: () => void;
|
|
1937
|
-
resultsCount: () => number;
|
|
1938
|
-
resetResultsCount: () => void;
|
|
1939
|
-
} & {
|
|
1940
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1941
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1942
|
-
clearCache: () => void;
|
|
1943
|
-
resultsCount: () => number;
|
|
1944
|
-
resetResultsCount: () => void;
|
|
1945
|
-
};
|
|
1946
|
-
lastResult: () => WebMap | undefined;
|
|
1947
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1948
|
-
recomputations: () => number;
|
|
1949
|
-
resetRecomputations: () => void;
|
|
1950
|
-
dependencyRecomputations: () => number;
|
|
1951
|
-
resetDependencyRecomputations: () => void;
|
|
1952
|
-
} & {
|
|
1953
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1954
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1955
|
-
}];
|
|
1956
|
-
recomputations: () => number;
|
|
1957
|
-
resetRecomputations: () => void;
|
|
1958
|
-
dependencyRecomputations: () => number;
|
|
1959
|
-
resetDependencyRecomputations: () => void;
|
|
1960
|
-
} & {
|
|
1961
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1962
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1963
|
-
};
|
|
1964
|
-
export declare const getMapTimeSliderStartCenterEndAndStep: ((state: CoreAppStore, mapId: string) => TimeSliderStartCenterEndTime) & {
|
|
1965
|
-
clearCache: () => void;
|
|
1966
|
-
resultsCount: () => number;
|
|
1967
|
-
resetResultsCount: () => void;
|
|
1968
|
-
} & {
|
|
1969
|
-
resultFunc: (resultFuncArgs_0: WebMap | undefined) => TimeSliderStartCenterEndTime;
|
|
1970
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMap | undefined) => TimeSliderStartCenterEndTime) & {
|
|
1971
|
-
clearCache: () => void;
|
|
1972
|
-
resultsCount: () => number;
|
|
1973
|
-
resetResultsCount: () => void;
|
|
1974
|
-
};
|
|
1975
|
-
lastResult: () => TimeSliderStartCenterEndTime;
|
|
1976
|
-
dependencies: [((state: CoreAppStore, mapId: string) => WebMap | undefined) & {
|
|
1977
|
-
clearCache: () => void;
|
|
1978
|
-
resultsCount: () => number;
|
|
1979
|
-
resetResultsCount: () => void;
|
|
1980
|
-
} & {
|
|
1981
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
1982
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
1983
|
-
clearCache: () => void;
|
|
1984
|
-
resultsCount: () => number;
|
|
1985
|
-
resetResultsCount: () => void;
|
|
1986
|
-
};
|
|
1987
|
-
lastResult: () => WebMap | undefined;
|
|
1988
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
1989
|
-
recomputations: () => number;
|
|
1990
|
-
resetRecomputations: () => void;
|
|
1991
|
-
dependencyRecomputations: () => number;
|
|
1992
|
-
resetDependencyRecomputations: () => void;
|
|
1993
|
-
} & {
|
|
1994
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
1995
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
1996
|
-
}];
|
|
1317
|
+
lastResult: () => TimeSliderStartCenterEndTime;
|
|
1318
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
1997
1319
|
recomputations: () => number;
|
|
1998
1320
|
resetRecomputations: () => void;
|
|
1999
1321
|
dependencyRecomputations: () => number;
|
|
@@ -2022,27 +1344,7 @@ export declare const getMapTimeSliderSecondsPerPx: ((state: CoreAppStore, mapId:
|
|
|
2022
1344
|
resetResultsCount: () => void;
|
|
2023
1345
|
};
|
|
2024
1346
|
lastResult: () => number | undefined;
|
|
2025
|
-
dependencies: [(
|
|
2026
|
-
clearCache: () => void;
|
|
2027
|
-
resultsCount: () => number;
|
|
2028
|
-
resetResultsCount: () => void;
|
|
2029
|
-
} & {
|
|
2030
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2031
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2032
|
-
clearCache: () => void;
|
|
2033
|
-
resultsCount: () => number;
|
|
2034
|
-
resetResultsCount: () => void;
|
|
2035
|
-
};
|
|
2036
|
-
lastResult: () => WebMap | undefined;
|
|
2037
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2038
|
-
recomputations: () => number;
|
|
2039
|
-
resetRecomputations: () => void;
|
|
2040
|
-
dependencyRecomputations: () => number;
|
|
2041
|
-
resetDependencyRecomputations: () => void;
|
|
2042
|
-
} & {
|
|
2043
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2044
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2045
|
-
}];
|
|
1347
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2046
1348
|
recomputations: () => number;
|
|
2047
1349
|
resetRecomputations: () => void;
|
|
2048
1350
|
dependencyRecomputations: () => number;
|
|
@@ -2071,27 +1373,7 @@ export declare const isTimestepAuto: ((state: CoreAppStore, mapId: string) => bo
|
|
|
2071
1373
|
resetResultsCount: () => void;
|
|
2072
1374
|
};
|
|
2073
1375
|
lastResult: () => boolean | undefined;
|
|
2074
|
-
dependencies: [(
|
|
2075
|
-
clearCache: () => void;
|
|
2076
|
-
resultsCount: () => number;
|
|
2077
|
-
resetResultsCount: () => void;
|
|
2078
|
-
} & {
|
|
2079
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2080
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2081
|
-
clearCache: () => void;
|
|
2082
|
-
resultsCount: () => number;
|
|
2083
|
-
resetResultsCount: () => void;
|
|
2084
|
-
};
|
|
2085
|
-
lastResult: () => WebMap | undefined;
|
|
2086
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2087
|
-
recomputations: () => number;
|
|
2088
|
-
resetRecomputations: () => void;
|
|
2089
|
-
dependencyRecomputations: () => number;
|
|
2090
|
-
resetDependencyRecomputations: () => void;
|
|
2091
|
-
} & {
|
|
2092
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2093
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2094
|
-
}];
|
|
1376
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2095
1377
|
recomputations: () => number;
|
|
2096
1378
|
resetRecomputations: () => void;
|
|
2097
1379
|
dependencyRecomputations: () => number;
|
|
@@ -2118,27 +1400,7 @@ export declare const isAnimationLengthAuto: ((state: CoreAppStore, mapId: string
|
|
|
2118
1400
|
resetResultsCount: () => void;
|
|
2119
1401
|
};
|
|
2120
1402
|
lastResult: () => boolean;
|
|
2121
|
-
dependencies: [(
|
|
2122
|
-
clearCache: () => void;
|
|
2123
|
-
resultsCount: () => number;
|
|
2124
|
-
resetResultsCount: () => void;
|
|
2125
|
-
} & {
|
|
2126
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2127
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2128
|
-
clearCache: () => void;
|
|
2129
|
-
resultsCount: () => number;
|
|
2130
|
-
resetResultsCount: () => void;
|
|
2131
|
-
};
|
|
2132
|
-
lastResult: () => WebMap | undefined;
|
|
2133
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2134
|
-
recomputations: () => number;
|
|
2135
|
-
resetRecomputations: () => void;
|
|
2136
|
-
dependencyRecomputations: () => number;
|
|
2137
|
-
resetDependencyRecomputations: () => void;
|
|
2138
|
-
} & {
|
|
2139
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2140
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2141
|
-
}];
|
|
1403
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2142
1404
|
recomputations: () => number;
|
|
2143
1405
|
resetRecomputations: () => void;
|
|
2144
1406
|
dependencyRecomputations: () => number;
|
|
@@ -2167,27 +1429,7 @@ export declare const isTimeSpanAuto: ((state: CoreAppStore, mapId: string) => bo
|
|
|
2167
1429
|
resetResultsCount: () => void;
|
|
2168
1430
|
};
|
|
2169
1431
|
lastResult: () => boolean | undefined;
|
|
2170
|
-
dependencies: [(
|
|
2171
|
-
clearCache: () => void;
|
|
2172
|
-
resultsCount: () => number;
|
|
2173
|
-
resetResultsCount: () => void;
|
|
2174
|
-
} & {
|
|
2175
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2176
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2177
|
-
clearCache: () => void;
|
|
2178
|
-
resultsCount: () => number;
|
|
2179
|
-
resetResultsCount: () => void;
|
|
2180
|
-
};
|
|
2181
|
-
lastResult: () => WebMap | undefined;
|
|
2182
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2183
|
-
recomputations: () => number;
|
|
2184
|
-
resetRecomputations: () => void;
|
|
2185
|
-
dependencyRecomputations: () => number;
|
|
2186
|
-
resetDependencyRecomputations: () => void;
|
|
2187
|
-
} & {
|
|
2188
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2189
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2190
|
-
}];
|
|
1432
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2191
1433
|
recomputations: () => number;
|
|
2192
1434
|
resetRecomputations: () => void;
|
|
2193
1435
|
dependencyRecomputations: () => number;
|
|
@@ -2216,27 +1458,7 @@ export declare const isTimeSliderHoverOn: ((state: CoreAppStore, mapId: string)
|
|
|
2216
1458
|
resetResultsCount: () => void;
|
|
2217
1459
|
};
|
|
2218
1460
|
lastResult: () => boolean | undefined;
|
|
2219
|
-
dependencies: [(
|
|
2220
|
-
clearCache: () => void;
|
|
2221
|
-
resultsCount: () => number;
|
|
2222
|
-
resetResultsCount: () => void;
|
|
2223
|
-
} & {
|
|
2224
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2225
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2226
|
-
clearCache: () => void;
|
|
2227
|
-
resultsCount: () => number;
|
|
2228
|
-
resetResultsCount: () => void;
|
|
2229
|
-
};
|
|
2230
|
-
lastResult: () => WebMap | undefined;
|
|
2231
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2232
|
-
recomputations: () => number;
|
|
2233
|
-
resetRecomputations: () => void;
|
|
2234
|
-
dependencyRecomputations: () => number;
|
|
2235
|
-
resetDependencyRecomputations: () => void;
|
|
2236
|
-
} & {
|
|
2237
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2238
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2239
|
-
}];
|
|
1461
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2240
1462
|
recomputations: () => number;
|
|
2241
1463
|
resetRecomputations: () => void;
|
|
2242
1464
|
dependencyRecomputations: () => number;
|
|
@@ -2265,27 +1487,7 @@ export declare const isZoomControlsVisible: ((state: CoreAppStore, mapId: string
|
|
|
2265
1487
|
resetResultsCount: () => void;
|
|
2266
1488
|
};
|
|
2267
1489
|
lastResult: () => boolean | undefined;
|
|
2268
|
-
dependencies: [(
|
|
2269
|
-
clearCache: () => void;
|
|
2270
|
-
resultsCount: () => number;
|
|
2271
|
-
resetResultsCount: () => void;
|
|
2272
|
-
} & {
|
|
2273
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2274
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2275
|
-
clearCache: () => void;
|
|
2276
|
-
resultsCount: () => number;
|
|
2277
|
-
resetResultsCount: () => void;
|
|
2278
|
-
};
|
|
2279
|
-
lastResult: () => WebMap | undefined;
|
|
2280
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2281
|
-
recomputations: () => number;
|
|
2282
|
-
resetRecomputations: () => void;
|
|
2283
|
-
dependencyRecomputations: () => number;
|
|
2284
|
-
resetDependencyRecomputations: () => void;
|
|
2285
|
-
} & {
|
|
2286
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2287
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2288
|
-
}];
|
|
1490
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2289
1491
|
recomputations: () => number;
|
|
2290
1492
|
resetRecomputations: () => void;
|
|
2291
1493
|
dependencyRecomputations: () => number;
|
|
@@ -2314,27 +1516,7 @@ export declare const isTimeSliderVisible: ((state: CoreAppStore, mapId: string)
|
|
|
2314
1516
|
resetResultsCount: () => void;
|
|
2315
1517
|
};
|
|
2316
1518
|
lastResult: () => boolean | undefined;
|
|
2317
|
-
dependencies: [(
|
|
2318
|
-
clearCache: () => void;
|
|
2319
|
-
resultsCount: () => number;
|
|
2320
|
-
resetResultsCount: () => void;
|
|
2321
|
-
} & {
|
|
2322
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2323
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2324
|
-
clearCache: () => void;
|
|
2325
|
-
resultsCount: () => number;
|
|
2326
|
-
resetResultsCount: () => void;
|
|
2327
|
-
};
|
|
2328
|
-
lastResult: () => WebMap | undefined;
|
|
2329
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2330
|
-
recomputations: () => number;
|
|
2331
|
-
resetRecomputations: () => void;
|
|
2332
|
-
dependencyRecomputations: () => number;
|
|
2333
|
-
resetDependencyRecomputations: () => void;
|
|
2334
|
-
} & {
|
|
2335
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2336
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2337
|
-
}];
|
|
1519
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2338
1520
|
recomputations: () => number;
|
|
2339
1521
|
resetRecomputations: () => void;
|
|
2340
1522
|
dependencyRecomputations: () => number;
|
|
@@ -2376,27 +1558,7 @@ export declare const getIsLayerActiveLayer: ((state: CoreAppStore, _mapId: strin
|
|
|
2376
1558
|
resetResultsCount: () => void;
|
|
2377
1559
|
};
|
|
2378
1560
|
lastResult: () => string | undefined;
|
|
2379
|
-
dependencies: [(
|
|
2380
|
-
clearCache: () => void;
|
|
2381
|
-
resultsCount: () => number;
|
|
2382
|
-
resetResultsCount: () => void;
|
|
2383
|
-
} & {
|
|
2384
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2385
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2386
|
-
clearCache: () => void;
|
|
2387
|
-
resultsCount: () => number;
|
|
2388
|
-
resetResultsCount: () => void;
|
|
2389
|
-
};
|
|
2390
|
-
lastResult: () => WebMap | undefined;
|
|
2391
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2392
|
-
recomputations: () => number;
|
|
2393
|
-
resetRecomputations: () => void;
|
|
2394
|
-
dependencyRecomputations: () => number;
|
|
2395
|
-
resetDependencyRecomputations: () => void;
|
|
2396
|
-
} & {
|
|
2397
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2398
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2399
|
-
}];
|
|
1561
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2400
1562
|
recomputations: () => number;
|
|
2401
1563
|
resetRecomputations: () => void;
|
|
2402
1564
|
dependencyRecomputations: () => number;
|
|
@@ -2487,27 +1649,7 @@ export declare const getLayerIdByLayerName: ((state: CoreAppStore, _mapId: strin
|
|
|
2487
1649
|
resetResultsCount: () => void;
|
|
2488
1650
|
};
|
|
2489
1651
|
lastResult: () => string[];
|
|
2490
|
-
dependencies: [(
|
|
2491
|
-
clearCache: () => void;
|
|
2492
|
-
resultsCount: () => number;
|
|
2493
|
-
resetResultsCount: () => void;
|
|
2494
|
-
} & {
|
|
2495
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2496
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2497
|
-
clearCache: () => void;
|
|
2498
|
-
resultsCount: () => number;
|
|
2499
|
-
resetResultsCount: () => void;
|
|
2500
|
-
};
|
|
2501
|
-
lastResult: () => WebMap | undefined;
|
|
2502
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2503
|
-
recomputations: () => number;
|
|
2504
|
-
resetRecomputations: () => void;
|
|
2505
|
-
dependencyRecomputations: () => number;
|
|
2506
|
-
resetDependencyRecomputations: () => void;
|
|
2507
|
-
} & {
|
|
2508
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2509
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2510
|
-
}];
|
|
1652
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2511
1653
|
recomputations: () => number;
|
|
2512
1654
|
resetRecomputations: () => void;
|
|
2513
1655
|
dependencyRecomputations: () => number;
|
|
@@ -2597,27 +1739,7 @@ export declare const getLayerIndexByLayerId: ((state: CoreAppStore, _mapId: stri
|
|
|
2597
1739
|
resetResultsCount: () => void;
|
|
2598
1740
|
};
|
|
2599
1741
|
lastResult: () => string[];
|
|
2600
|
-
dependencies: [(
|
|
2601
|
-
clearCache: () => void;
|
|
2602
|
-
resultsCount: () => number;
|
|
2603
|
-
resetResultsCount: () => void;
|
|
2604
|
-
} & {
|
|
2605
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2606
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2607
|
-
clearCache: () => void;
|
|
2608
|
-
resultsCount: () => number;
|
|
2609
|
-
resetResultsCount: () => void;
|
|
2610
|
-
};
|
|
2611
|
-
lastResult: () => WebMap | undefined;
|
|
2612
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2613
|
-
recomputations: () => number;
|
|
2614
|
-
resetRecomputations: () => void;
|
|
2615
|
-
dependencyRecomputations: () => number;
|
|
2616
|
-
resetDependencyRecomputations: () => void;
|
|
2617
|
-
} & {
|
|
2618
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2619
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2620
|
-
}];
|
|
1742
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2621
1743
|
recomputations: () => number;
|
|
2622
1744
|
resetRecomputations: () => void;
|
|
2623
1745
|
dependencyRecomputations: () => number;
|
|
@@ -2707,27 +1829,7 @@ export declare const getLayerByLayerIndex: ((state: CoreAppStore, _mapId: string
|
|
|
2707
1829
|
resetResultsCount: () => void;
|
|
2708
1830
|
};
|
|
2709
1831
|
lastResult: () => string[];
|
|
2710
|
-
dependencies: [(
|
|
2711
|
-
clearCache: () => void;
|
|
2712
|
-
resultsCount: () => number;
|
|
2713
|
-
resetResultsCount: () => void;
|
|
2714
|
-
} & {
|
|
2715
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2716
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2717
|
-
clearCache: () => void;
|
|
2718
|
-
resultsCount: () => number;
|
|
2719
|
-
resetResultsCount: () => void;
|
|
2720
|
-
};
|
|
2721
|
-
lastResult: () => WebMap | undefined;
|
|
2722
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2723
|
-
recomputations: () => number;
|
|
2724
|
-
resetRecomputations: () => void;
|
|
2725
|
-
dependencyRecomputations: () => number;
|
|
2726
|
-
resetDependencyRecomputations: () => void;
|
|
2727
|
-
} & {
|
|
2728
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2729
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2730
|
-
}];
|
|
1832
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2731
1833
|
recomputations: () => number;
|
|
2732
1834
|
resetRecomputations: () => void;
|
|
2733
1835
|
dependencyRecomputations: () => number;
|
|
@@ -2828,39 +1930,19 @@ export declare const getAllUniqueDimensions: ((state: CoreAppStore) => string[])
|
|
|
2828
1930
|
* @param {string} mapId mapId: string - Id of the map
|
|
2829
1931
|
* @returns {object} returnType: latitude and longitude of pin
|
|
2830
1932
|
*/
|
|
2831
|
-
export declare const getPinLocation: ((state: CoreAppStore, mapId: string) => import("
|
|
1933
|
+
export declare const getPinLocation: ((state: CoreAppStore, mapId: string) => import("@opengeoweb/webmap-react").MapLocation | undefined) & {
|
|
2832
1934
|
clearCache: () => void;
|
|
2833
1935
|
resultsCount: () => number;
|
|
2834
1936
|
resetResultsCount: () => void;
|
|
2835
1937
|
} & {
|
|
2836
|
-
resultFunc: (resultFuncArgs_0: WebMap | undefined) => import("
|
|
2837
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMap | undefined) => import("
|
|
1938
|
+
resultFunc: (resultFuncArgs_0: WebMap | undefined) => import("@opengeoweb/webmap-react").MapLocation | undefined;
|
|
1939
|
+
memoizedResultFunc: ((resultFuncArgs_0: WebMap | undefined) => import("@opengeoweb/webmap-react").MapLocation | undefined) & {
|
|
2838
1940
|
clearCache: () => void;
|
|
2839
1941
|
resultsCount: () => number;
|
|
2840
1942
|
resetResultsCount: () => void;
|
|
2841
1943
|
};
|
|
2842
|
-
lastResult: () => import("
|
|
2843
|
-
dependencies: [(
|
|
2844
|
-
clearCache: () => void;
|
|
2845
|
-
resultsCount: () => number;
|
|
2846
|
-
resetResultsCount: () => void;
|
|
2847
|
-
} & {
|
|
2848
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2849
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2850
|
-
clearCache: () => void;
|
|
2851
|
-
resultsCount: () => number;
|
|
2852
|
-
resetResultsCount: () => void;
|
|
2853
|
-
};
|
|
2854
|
-
lastResult: () => WebMap | undefined;
|
|
2855
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2856
|
-
recomputations: () => number;
|
|
2857
|
-
resetRecomputations: () => void;
|
|
2858
|
-
dependencyRecomputations: () => number;
|
|
2859
|
-
resetDependencyRecomputations: () => void;
|
|
2860
|
-
} & {
|
|
2861
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2862
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2863
|
-
}];
|
|
1944
|
+
lastResult: () => import("@opengeoweb/webmap-react").MapLocation | undefined;
|
|
1945
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2864
1946
|
recomputations: () => number;
|
|
2865
1947
|
resetRecomputations: () => void;
|
|
2866
1948
|
dependencyRecomputations: () => number;
|
|
@@ -2889,27 +1971,7 @@ export declare const getDisableMapPin: ((state: CoreAppStore, mapId: string) =>
|
|
|
2889
1971
|
resetResultsCount: () => void;
|
|
2890
1972
|
};
|
|
2891
1973
|
lastResult: () => boolean | undefined;
|
|
2892
|
-
dependencies: [(
|
|
2893
|
-
clearCache: () => void;
|
|
2894
|
-
resultsCount: () => number;
|
|
2895
|
-
resetResultsCount: () => void;
|
|
2896
|
-
} & {
|
|
2897
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2898
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2899
|
-
clearCache: () => void;
|
|
2900
|
-
resultsCount: () => number;
|
|
2901
|
-
resetResultsCount: () => void;
|
|
2902
|
-
};
|
|
2903
|
-
lastResult: () => WebMap | undefined;
|
|
2904
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2905
|
-
recomputations: () => number;
|
|
2906
|
-
resetRecomputations: () => void;
|
|
2907
|
-
dependencyRecomputations: () => number;
|
|
2908
|
-
resetDependencyRecomputations: () => void;
|
|
2909
|
-
} & {
|
|
2910
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2911
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2912
|
-
}];
|
|
1974
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2913
1975
|
recomputations: () => number;
|
|
2914
1976
|
resetRecomputations: () => void;
|
|
2915
1977
|
dependencyRecomputations: () => number;
|
|
@@ -2938,27 +2000,7 @@ export declare const getDisplayMapPin: ((state: CoreAppStore, mapId: string) =>
|
|
|
2938
2000
|
resetResultsCount: () => void;
|
|
2939
2001
|
};
|
|
2940
2002
|
lastResult: () => boolean | undefined;
|
|
2941
|
-
dependencies: [(
|
|
2942
|
-
clearCache: () => void;
|
|
2943
|
-
resultsCount: () => number;
|
|
2944
|
-
resetResultsCount: () => void;
|
|
2945
|
-
} & {
|
|
2946
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2947
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2948
|
-
clearCache: () => void;
|
|
2949
|
-
resultsCount: () => number;
|
|
2950
|
-
resetResultsCount: () => void;
|
|
2951
|
-
};
|
|
2952
|
-
lastResult: () => WebMap | undefined;
|
|
2953
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
2954
|
-
recomputations: () => number;
|
|
2955
|
-
resetRecomputations: () => void;
|
|
2956
|
-
dependencyRecomputations: () => number;
|
|
2957
|
-
resetDependencyRecomputations: () => void;
|
|
2958
|
-
} & {
|
|
2959
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
2960
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
2961
|
-
}];
|
|
2003
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
2962
2004
|
recomputations: () => number;
|
|
2963
2005
|
resetRecomputations: () => void;
|
|
2964
2006
|
dependencyRecomputations: () => number;
|
|
@@ -2987,27 +2029,7 @@ export declare const getLegendId: ((state: CoreAppStore, mapId: string) => strin
|
|
|
2987
2029
|
resetResultsCount: () => void;
|
|
2988
2030
|
};
|
|
2989
2031
|
lastResult: () => string | undefined;
|
|
2990
|
-
dependencies: [(
|
|
2991
|
-
clearCache: () => void;
|
|
2992
|
-
resultsCount: () => number;
|
|
2993
|
-
resetResultsCount: () => void;
|
|
2994
|
-
} & {
|
|
2995
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
2996
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
2997
|
-
clearCache: () => void;
|
|
2998
|
-
resultsCount: () => number;
|
|
2999
|
-
resetResultsCount: () => void;
|
|
3000
|
-
};
|
|
3001
|
-
lastResult: () => WebMap | undefined;
|
|
3002
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3003
|
-
recomputations: () => number;
|
|
3004
|
-
resetRecomputations: () => void;
|
|
3005
|
-
dependencyRecomputations: () => number;
|
|
3006
|
-
resetDependencyRecomputations: () => void;
|
|
3007
|
-
} & {
|
|
3008
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3009
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3010
|
-
}];
|
|
2032
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3011
2033
|
recomputations: () => number;
|
|
3012
2034
|
resetRecomputations: () => void;
|
|
3013
2035
|
dependencyRecomputations: () => number;
|
|
@@ -3060,27 +2082,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3060
2082
|
resetResultsCount: () => void;
|
|
3061
2083
|
};
|
|
3062
2084
|
lastResult: () => string[];
|
|
3063
|
-
dependencies: [(
|
|
3064
|
-
clearCache: () => void;
|
|
3065
|
-
resultsCount: () => number;
|
|
3066
|
-
resetResultsCount: () => void;
|
|
3067
|
-
} & {
|
|
3068
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3069
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3070
|
-
clearCache: () => void;
|
|
3071
|
-
resultsCount: () => number;
|
|
3072
|
-
resetResultsCount: () => void;
|
|
3073
|
-
};
|
|
3074
|
-
lastResult: () => WebMap | undefined;
|
|
3075
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3076
|
-
recomputations: () => number;
|
|
3077
|
-
resetRecomputations: () => void;
|
|
3078
|
-
dependencyRecomputations: () => number;
|
|
3079
|
-
resetDependencyRecomputations: () => void;
|
|
3080
|
-
} & {
|
|
3081
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3082
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3083
|
-
}];
|
|
2085
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3084
2086
|
recomputations: () => number;
|
|
3085
2087
|
resetRecomputations: () => void;
|
|
3086
2088
|
dependencyRecomputations: () => number;
|
|
@@ -3140,27 +2142,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3140
2142
|
resetResultsCount: () => void;
|
|
3141
2143
|
};
|
|
3142
2144
|
lastResult: () => string[];
|
|
3143
|
-
dependencies: [(
|
|
3144
|
-
clearCache: () => void;
|
|
3145
|
-
resultsCount: () => number;
|
|
3146
|
-
resetResultsCount: () => void;
|
|
3147
|
-
} & {
|
|
3148
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3149
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3150
|
-
clearCache: () => void;
|
|
3151
|
-
resultsCount: () => number;
|
|
3152
|
-
resetResultsCount: () => void;
|
|
3153
|
-
};
|
|
3154
|
-
lastResult: () => WebMap | undefined;
|
|
3155
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3156
|
-
recomputations: () => number;
|
|
3157
|
-
resetRecomputations: () => void;
|
|
3158
|
-
dependencyRecomputations: () => number;
|
|
3159
|
-
resetDependencyRecomputations: () => void;
|
|
3160
|
-
} & {
|
|
3161
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3162
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3163
|
-
}];
|
|
2145
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3164
2146
|
recomputations: () => number;
|
|
3165
2147
|
resetRecomputations: () => void;
|
|
3166
2148
|
dependencyRecomputations: () => number;
|
|
@@ -3220,27 +2202,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3220
2202
|
resetResultsCount: () => void;
|
|
3221
2203
|
};
|
|
3222
2204
|
lastResult: () => string[];
|
|
3223
|
-
dependencies: [(
|
|
3224
|
-
clearCache: () => void;
|
|
3225
|
-
resultsCount: () => number;
|
|
3226
|
-
resetResultsCount: () => void;
|
|
3227
|
-
} & {
|
|
3228
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3229
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3230
|
-
clearCache: () => void;
|
|
3231
|
-
resultsCount: () => number;
|
|
3232
|
-
resetResultsCount: () => void;
|
|
3233
|
-
};
|
|
3234
|
-
lastResult: () => WebMap | undefined;
|
|
3235
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3236
|
-
recomputations: () => number;
|
|
3237
|
-
resetRecomputations: () => void;
|
|
3238
|
-
dependencyRecomputations: () => number;
|
|
3239
|
-
resetDependencyRecomputations: () => void;
|
|
3240
|
-
} & {
|
|
3241
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3242
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3243
|
-
}];
|
|
2205
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3244
2206
|
recomputations: () => number;
|
|
3245
2207
|
resetRecomputations: () => void;
|
|
3246
2208
|
dependencyRecomputations: () => number;
|
|
@@ -3288,27 +2250,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3288
2250
|
resetResultsCount: () => void;
|
|
3289
2251
|
};
|
|
3290
2252
|
lastResult: () => Bbox;
|
|
3291
|
-
dependencies: [(
|
|
3292
|
-
clearCache: () => void;
|
|
3293
|
-
resultsCount: () => number;
|
|
3294
|
-
resetResultsCount: () => void;
|
|
3295
|
-
} & {
|
|
3296
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3297
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3298
|
-
clearCache: () => void;
|
|
3299
|
-
resultsCount: () => number;
|
|
3300
|
-
resetResultsCount: () => void;
|
|
3301
|
-
};
|
|
3302
|
-
lastResult: () => WebMap | undefined;
|
|
3303
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3304
|
-
recomputations: () => number;
|
|
3305
|
-
resetRecomputations: () => void;
|
|
3306
|
-
dependencyRecomputations: () => number;
|
|
3307
|
-
resetDependencyRecomputations: () => void;
|
|
3308
|
-
} & {
|
|
3309
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3310
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3311
|
-
}];
|
|
2253
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3312
2254
|
recomputations: () => number;
|
|
3313
2255
|
resetRecomputations: () => void;
|
|
3314
2256
|
dependencyRecomputations: () => number;
|
|
@@ -3328,27 +2270,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3328
2270
|
resetResultsCount: () => void;
|
|
3329
2271
|
};
|
|
3330
2272
|
lastResult: () => string;
|
|
3331
|
-
dependencies: [(
|
|
3332
|
-
clearCache: () => void;
|
|
3333
|
-
resultsCount: () => number;
|
|
3334
|
-
resetResultsCount: () => void;
|
|
3335
|
-
} & {
|
|
3336
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3337
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3338
|
-
clearCache: () => void;
|
|
3339
|
-
resultsCount: () => number;
|
|
3340
|
-
resetResultsCount: () => void;
|
|
3341
|
-
};
|
|
3342
|
-
lastResult: () => WebMap | undefined;
|
|
3343
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3344
|
-
recomputations: () => number;
|
|
3345
|
-
resetRecomputations: () => void;
|
|
3346
|
-
dependencyRecomputations: () => number;
|
|
3347
|
-
resetDependencyRecomputations: () => void;
|
|
3348
|
-
} & {
|
|
3349
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3350
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3351
|
-
}];
|
|
2273
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3352
2274
|
recomputations: () => number;
|
|
3353
2275
|
resetRecomputations: () => void;
|
|
3354
2276
|
dependencyRecomputations: () => number;
|
|
@@ -3368,27 +2290,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3368
2290
|
resetResultsCount: () => void;
|
|
3369
2291
|
};
|
|
3370
2292
|
lastResult: () => string | undefined;
|
|
3371
|
-
dependencies: [(
|
|
3372
|
-
clearCache: () => void;
|
|
3373
|
-
resultsCount: () => number;
|
|
3374
|
-
resetResultsCount: () => void;
|
|
3375
|
-
} & {
|
|
3376
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3377
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3378
|
-
clearCache: () => void;
|
|
3379
|
-
resultsCount: () => number;
|
|
3380
|
-
resetResultsCount: () => void;
|
|
3381
|
-
};
|
|
3382
|
-
lastResult: () => WebMap | undefined;
|
|
3383
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3384
|
-
recomputations: () => number;
|
|
3385
|
-
resetRecomputations: () => void;
|
|
3386
|
-
dependencyRecomputations: () => number;
|
|
3387
|
-
resetDependencyRecomputations: () => void;
|
|
3388
|
-
} & {
|
|
3389
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3390
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3391
|
-
}];
|
|
2293
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3392
2294
|
recomputations: () => number;
|
|
3393
2295
|
resetRecomputations: () => void;
|
|
3394
2296
|
dependencyRecomputations: () => number;
|
|
@@ -3408,27 +2310,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3408
2310
|
resetResultsCount: () => void;
|
|
3409
2311
|
};
|
|
3410
2312
|
lastResult: () => string | undefined;
|
|
3411
|
-
dependencies: [(
|
|
3412
|
-
clearCache: () => void;
|
|
3413
|
-
resultsCount: () => number;
|
|
3414
|
-
resetResultsCount: () => void;
|
|
3415
|
-
} & {
|
|
3416
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3417
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3418
|
-
clearCache: () => void;
|
|
3419
|
-
resultsCount: () => number;
|
|
3420
|
-
resetResultsCount: () => void;
|
|
3421
|
-
};
|
|
3422
|
-
lastResult: () => WebMap | undefined;
|
|
3423
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3424
|
-
recomputations: () => number;
|
|
3425
|
-
resetRecomputations: () => void;
|
|
3426
|
-
dependencyRecomputations: () => number;
|
|
3427
|
-
resetDependencyRecomputations: () => void;
|
|
3428
|
-
} & {
|
|
3429
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3430
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3431
|
-
}];
|
|
2313
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3432
2314
|
recomputations: () => number;
|
|
3433
2315
|
resetRecomputations: () => void;
|
|
3434
2316
|
dependencyRecomputations: () => number;
|
|
@@ -3448,27 +2330,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3448
2330
|
resetResultsCount: () => void;
|
|
3449
2331
|
};
|
|
3450
2332
|
lastResult: () => string | undefined;
|
|
3451
|
-
dependencies: [(
|
|
3452
|
-
clearCache: () => void;
|
|
3453
|
-
resultsCount: () => number;
|
|
3454
|
-
resetResultsCount: () => void;
|
|
3455
|
-
} & {
|
|
3456
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3457
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3458
|
-
clearCache: () => void;
|
|
3459
|
-
resultsCount: () => number;
|
|
3460
|
-
resetResultsCount: () => void;
|
|
3461
|
-
};
|
|
3462
|
-
lastResult: () => WebMap | undefined;
|
|
3463
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3464
|
-
recomputations: () => number;
|
|
3465
|
-
resetRecomputations: () => void;
|
|
3466
|
-
dependencyRecomputations: () => number;
|
|
3467
|
-
resetDependencyRecomputations: () => void;
|
|
3468
|
-
} & {
|
|
3469
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3470
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3471
|
-
}];
|
|
2333
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3472
2334
|
recomputations: () => number;
|
|
3473
2335
|
resetRecomputations: () => void;
|
|
3474
2336
|
dependencyRecomputations: () => number;
|
|
@@ -3476,7 +2338,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3476
2338
|
} & {
|
|
3477
2339
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
3478
2340
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3479
|
-
}, ((state: CoreAppStore, mapId: string) => boolean) & {
|
|
2341
|
+
}, (store: CoreAppStore, mapId: string) => boolean, ((state: CoreAppStore, mapId: string) => boolean) & {
|
|
3480
2342
|
clearCache: () => void;
|
|
3481
2343
|
resultsCount: () => number;
|
|
3482
2344
|
resetResultsCount: () => void;
|
|
@@ -3488,67 +2350,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3488
2350
|
resetResultsCount: () => void;
|
|
3489
2351
|
};
|
|
3490
2352
|
lastResult: () => boolean;
|
|
3491
|
-
dependencies: [(
|
|
3492
|
-
clearCache: () => void;
|
|
3493
|
-
resultsCount: () => number;
|
|
3494
|
-
resetResultsCount: () => void;
|
|
3495
|
-
} & {
|
|
3496
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3497
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3498
|
-
clearCache: () => void;
|
|
3499
|
-
resultsCount: () => number;
|
|
3500
|
-
resetResultsCount: () => void;
|
|
3501
|
-
};
|
|
3502
|
-
lastResult: () => WebMap | undefined;
|
|
3503
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3504
|
-
recomputations: () => number;
|
|
3505
|
-
resetRecomputations: () => void;
|
|
3506
|
-
dependencyRecomputations: () => number;
|
|
3507
|
-
resetDependencyRecomputations: () => void;
|
|
3508
|
-
} & {
|
|
3509
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3510
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3511
|
-
}];
|
|
3512
|
-
recomputations: () => number;
|
|
3513
|
-
resetRecomputations: () => void;
|
|
3514
|
-
dependencyRecomputations: () => number;
|
|
3515
|
-
resetDependencyRecomputations: () => void;
|
|
3516
|
-
} & {
|
|
3517
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3518
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3519
|
-
}, ((state: CoreAppStore, mapId: string) => boolean) & {
|
|
3520
|
-
clearCache: () => void;
|
|
3521
|
-
resultsCount: () => number;
|
|
3522
|
-
resetResultsCount: () => void;
|
|
3523
|
-
} & {
|
|
3524
|
-
resultFunc: (resultFuncArgs_0: WebMap | undefined) => boolean;
|
|
3525
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMap | undefined) => boolean) & {
|
|
3526
|
-
clearCache: () => void;
|
|
3527
|
-
resultsCount: () => number;
|
|
3528
|
-
resetResultsCount: () => void;
|
|
3529
|
-
};
|
|
3530
|
-
lastResult: () => boolean;
|
|
3531
|
-
dependencies: [((state: CoreAppStore, mapId: string) => WebMap | undefined) & {
|
|
3532
|
-
clearCache: () => void;
|
|
3533
|
-
resultsCount: () => number;
|
|
3534
|
-
resetResultsCount: () => void;
|
|
3535
|
-
} & {
|
|
3536
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3537
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3538
|
-
clearCache: () => void;
|
|
3539
|
-
resultsCount: () => number;
|
|
3540
|
-
resetResultsCount: () => void;
|
|
3541
|
-
};
|
|
3542
|
-
lastResult: () => WebMap | undefined;
|
|
3543
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3544
|
-
recomputations: () => number;
|
|
3545
|
-
resetRecomputations: () => void;
|
|
3546
|
-
dependencyRecomputations: () => number;
|
|
3547
|
-
resetDependencyRecomputations: () => void;
|
|
3548
|
-
} & {
|
|
3549
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3550
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3551
|
-
}];
|
|
2353
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3552
2354
|
recomputations: () => number;
|
|
3553
2355
|
resetRecomputations: () => void;
|
|
3554
2356
|
dependencyRecomputations: () => number;
|
|
@@ -3568,27 +2370,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3568
2370
|
resetResultsCount: () => void;
|
|
3569
2371
|
};
|
|
3570
2372
|
lastResult: () => boolean | undefined;
|
|
3571
|
-
dependencies: [(
|
|
3572
|
-
clearCache: () => void;
|
|
3573
|
-
resultsCount: () => number;
|
|
3574
|
-
resetResultsCount: () => void;
|
|
3575
|
-
} & {
|
|
3576
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3577
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3578
|
-
clearCache: () => void;
|
|
3579
|
-
resultsCount: () => number;
|
|
3580
|
-
resetResultsCount: () => void;
|
|
3581
|
-
};
|
|
3582
|
-
lastResult: () => WebMap | undefined;
|
|
3583
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3584
|
-
recomputations: () => number;
|
|
3585
|
-
resetRecomputations: () => void;
|
|
3586
|
-
dependencyRecomputations: () => number;
|
|
3587
|
-
resetDependencyRecomputations: () => void;
|
|
3588
|
-
} & {
|
|
3589
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3590
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3591
|
-
}];
|
|
2373
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3592
2374
|
recomputations: () => number;
|
|
3593
2375
|
resetRecomputations: () => void;
|
|
3594
2376
|
dependencyRecomputations: () => number;
|
|
@@ -3608,27 +2390,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3608
2390
|
resetResultsCount: () => void;
|
|
3609
2391
|
};
|
|
3610
2392
|
lastResult: () => boolean | undefined;
|
|
3611
|
-
dependencies: [(
|
|
3612
|
-
clearCache: () => void;
|
|
3613
|
-
resultsCount: () => number;
|
|
3614
|
-
resetResultsCount: () => void;
|
|
3615
|
-
} & {
|
|
3616
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3617
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3618
|
-
clearCache: () => void;
|
|
3619
|
-
resultsCount: () => number;
|
|
3620
|
-
resetResultsCount: () => void;
|
|
3621
|
-
};
|
|
3622
|
-
lastResult: () => WebMap | undefined;
|
|
3623
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3624
|
-
recomputations: () => number;
|
|
3625
|
-
resetRecomputations: () => void;
|
|
3626
|
-
dependencyRecomputations: () => number;
|
|
3627
|
-
resetDependencyRecomputations: () => void;
|
|
3628
|
-
} & {
|
|
3629
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3630
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3631
|
-
}];
|
|
2393
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3632
2394
|
recomputations: () => number;
|
|
3633
2395
|
resetRecomputations: () => void;
|
|
3634
2396
|
dependencyRecomputations: () => number;
|
|
@@ -3648,27 +2410,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3648
2410
|
resetResultsCount: () => void;
|
|
3649
2411
|
};
|
|
3650
2412
|
lastResult: () => boolean | undefined;
|
|
3651
|
-
dependencies: [(
|
|
3652
|
-
clearCache: () => void;
|
|
3653
|
-
resultsCount: () => number;
|
|
3654
|
-
resetResultsCount: () => void;
|
|
3655
|
-
} & {
|
|
3656
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3657
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3658
|
-
clearCache: () => void;
|
|
3659
|
-
resultsCount: () => number;
|
|
3660
|
-
resetResultsCount: () => void;
|
|
3661
|
-
};
|
|
3662
|
-
lastResult: () => WebMap | undefined;
|
|
3663
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3664
|
-
recomputations: () => number;
|
|
3665
|
-
resetRecomputations: () => void;
|
|
3666
|
-
dependencyRecomputations: () => number;
|
|
3667
|
-
resetDependencyRecomputations: () => void;
|
|
3668
|
-
} & {
|
|
3669
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3670
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3671
|
-
}];
|
|
2413
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3672
2414
|
recomputations: () => number;
|
|
3673
2415
|
resetRecomputations: () => void;
|
|
3674
2416
|
dependencyRecomputations: () => number;
|
|
@@ -3688,27 +2430,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3688
2430
|
resetResultsCount: () => void;
|
|
3689
2431
|
};
|
|
3690
2432
|
lastResult: () => number;
|
|
3691
|
-
dependencies: [(
|
|
3692
|
-
clearCache: () => void;
|
|
3693
|
-
resultsCount: () => number;
|
|
3694
|
-
resetResultsCount: () => void;
|
|
3695
|
-
} & {
|
|
3696
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3697
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3698
|
-
clearCache: () => void;
|
|
3699
|
-
resultsCount: () => number;
|
|
3700
|
-
resetResultsCount: () => void;
|
|
3701
|
-
};
|
|
3702
|
-
lastResult: () => WebMap | undefined;
|
|
3703
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3704
|
-
recomputations: () => number;
|
|
3705
|
-
resetRecomputations: () => void;
|
|
3706
|
-
dependencyRecomputations: () => number;
|
|
3707
|
-
resetDependencyRecomputations: () => void;
|
|
3708
|
-
} & {
|
|
3709
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3710
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3711
|
-
}];
|
|
2433
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3712
2434
|
recomputations: () => number;
|
|
3713
2435
|
resetRecomputations: () => void;
|
|
3714
2436
|
dependencyRecomputations: () => number;
|
|
@@ -3728,27 +2450,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3728
2450
|
resetResultsCount: () => void;
|
|
3729
2451
|
};
|
|
3730
2452
|
lastResult: () => number | undefined;
|
|
3731
|
-
dependencies: [(
|
|
3732
|
-
clearCache: () => void;
|
|
3733
|
-
resultsCount: () => number;
|
|
3734
|
-
resetResultsCount: () => void;
|
|
3735
|
-
} & {
|
|
3736
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3737
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3738
|
-
clearCache: () => void;
|
|
3739
|
-
resultsCount: () => number;
|
|
3740
|
-
resetResultsCount: () => void;
|
|
3741
|
-
};
|
|
3742
|
-
lastResult: () => WebMap | undefined;
|
|
3743
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3744
|
-
recomputations: () => number;
|
|
3745
|
-
resetRecomputations: () => void;
|
|
3746
|
-
dependencyRecomputations: () => number;
|
|
3747
|
-
resetDependencyRecomputations: () => void;
|
|
3748
|
-
} & {
|
|
3749
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3750
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3751
|
-
}];
|
|
2453
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3752
2454
|
recomputations: () => number;
|
|
3753
2455
|
resetRecomputations: () => void;
|
|
3754
2456
|
dependencyRecomputations: () => number;
|
|
@@ -3768,27 +2470,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3768
2470
|
resetResultsCount: () => void;
|
|
3769
2471
|
};
|
|
3770
2472
|
lastResult: () => string | undefined;
|
|
3771
|
-
dependencies: [(
|
|
3772
|
-
clearCache: () => void;
|
|
3773
|
-
resultsCount: () => number;
|
|
3774
|
-
resetResultsCount: () => void;
|
|
3775
|
-
} & {
|
|
3776
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3777
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3778
|
-
clearCache: () => void;
|
|
3779
|
-
resultsCount: () => number;
|
|
3780
|
-
resetResultsCount: () => void;
|
|
3781
|
-
};
|
|
3782
|
-
lastResult: () => WebMap | undefined;
|
|
3783
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3784
|
-
recomputations: () => number;
|
|
3785
|
-
resetRecomputations: () => void;
|
|
3786
|
-
dependencyRecomputations: () => number;
|
|
3787
|
-
resetDependencyRecomputations: () => void;
|
|
3788
|
-
} & {
|
|
3789
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3790
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3791
|
-
}];
|
|
2473
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3792
2474
|
recomputations: () => number;
|
|
3793
2475
|
resetRecomputations: () => void;
|
|
3794
2476
|
dependencyRecomputations: () => number;
|
|
@@ -3808,27 +2490,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3808
2490
|
resetResultsCount: () => void;
|
|
3809
2491
|
};
|
|
3810
2492
|
lastResult: () => string | undefined;
|
|
3811
|
-
dependencies: [(
|
|
3812
|
-
clearCache: () => void;
|
|
3813
|
-
resultsCount: () => number;
|
|
3814
|
-
resetResultsCount: () => void;
|
|
3815
|
-
} & {
|
|
3816
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3817
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3818
|
-
clearCache: () => void;
|
|
3819
|
-
resultsCount: () => number;
|
|
3820
|
-
resetResultsCount: () => void;
|
|
3821
|
-
};
|
|
3822
|
-
lastResult: () => WebMap | undefined;
|
|
3823
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3824
|
-
recomputations: () => number;
|
|
3825
|
-
resetRecomputations: () => void;
|
|
3826
|
-
dependencyRecomputations: () => number;
|
|
3827
|
-
resetDependencyRecomputations: () => void;
|
|
3828
|
-
} & {
|
|
3829
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3830
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3831
|
-
}];
|
|
2493
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3832
2494
|
recomputations: () => number;
|
|
3833
2495
|
resetRecomputations: () => void;
|
|
3834
2496
|
dependencyRecomputations: () => number;
|
|
@@ -3848,27 +2510,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3848
2510
|
resetResultsCount: () => void;
|
|
3849
2511
|
};
|
|
3850
2512
|
lastResult: () => number | undefined;
|
|
3851
|
-
dependencies: [(
|
|
3852
|
-
clearCache: () => void;
|
|
3853
|
-
resultsCount: () => number;
|
|
3854
|
-
resetResultsCount: () => void;
|
|
3855
|
-
} & {
|
|
3856
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3857
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3858
|
-
clearCache: () => void;
|
|
3859
|
-
resultsCount: () => number;
|
|
3860
|
-
resetResultsCount: () => void;
|
|
3861
|
-
};
|
|
3862
|
-
lastResult: () => WebMap | undefined;
|
|
3863
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3864
|
-
recomputations: () => number;
|
|
3865
|
-
resetRecomputations: () => void;
|
|
3866
|
-
dependencyRecomputations: () => number;
|
|
3867
|
-
resetDependencyRecomputations: () => void;
|
|
3868
|
-
} & {
|
|
3869
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3870
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3871
|
-
}];
|
|
2513
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3872
2514
|
recomputations: () => number;
|
|
3873
2515
|
resetRecomputations: () => void;
|
|
3874
2516
|
dependencyRecomputations: () => number;
|
|
@@ -3888,27 +2530,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3888
2530
|
resetResultsCount: () => void;
|
|
3889
2531
|
};
|
|
3890
2532
|
lastResult: () => boolean | undefined;
|
|
3891
|
-
dependencies: [(
|
|
3892
|
-
clearCache: () => void;
|
|
3893
|
-
resultsCount: () => number;
|
|
3894
|
-
resetResultsCount: () => void;
|
|
3895
|
-
} & {
|
|
3896
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3897
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3898
|
-
clearCache: () => void;
|
|
3899
|
-
resultsCount: () => number;
|
|
3900
|
-
resetResultsCount: () => void;
|
|
3901
|
-
};
|
|
3902
|
-
lastResult: () => WebMap | undefined;
|
|
3903
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3904
|
-
recomputations: () => number;
|
|
3905
|
-
resetRecomputations: () => void;
|
|
3906
|
-
dependencyRecomputations: () => number;
|
|
3907
|
-
resetDependencyRecomputations: () => void;
|
|
3908
|
-
} & {
|
|
3909
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3910
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3911
|
-
}];
|
|
2533
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3912
2534
|
recomputations: () => number;
|
|
3913
2535
|
resetRecomputations: () => void;
|
|
3914
2536
|
dependencyRecomputations: () => number;
|
|
@@ -3928,27 +2550,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3928
2550
|
resetResultsCount: () => void;
|
|
3929
2551
|
};
|
|
3930
2552
|
lastResult: () => boolean | undefined;
|
|
3931
|
-
dependencies: [(
|
|
3932
|
-
clearCache: () => void;
|
|
3933
|
-
resultsCount: () => number;
|
|
3934
|
-
resetResultsCount: () => void;
|
|
3935
|
-
} & {
|
|
3936
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3937
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3938
|
-
clearCache: () => void;
|
|
3939
|
-
resultsCount: () => number;
|
|
3940
|
-
resetResultsCount: () => void;
|
|
3941
|
-
};
|
|
3942
|
-
lastResult: () => WebMap | undefined;
|
|
3943
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3944
|
-
recomputations: () => number;
|
|
3945
|
-
resetRecomputations: () => void;
|
|
3946
|
-
dependencyRecomputations: () => number;
|
|
3947
|
-
resetDependencyRecomputations: () => void;
|
|
3948
|
-
} & {
|
|
3949
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3950
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3951
|
-
}];
|
|
2553
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3952
2554
|
recomputations: () => number;
|
|
3953
2555
|
resetRecomputations: () => void;
|
|
3954
2556
|
dependencyRecomputations: () => number;
|
|
@@ -3968,27 +2570,7 @@ export declare const getMapPreset: ((state: CoreAppStore & uiTypes.UIModuleState
|
|
|
3968
2570
|
resetResultsCount: () => void;
|
|
3969
2571
|
};
|
|
3970
2572
|
lastResult: () => string | undefined;
|
|
3971
|
-
dependencies: [(
|
|
3972
|
-
clearCache: () => void;
|
|
3973
|
-
resultsCount: () => number;
|
|
3974
|
-
resetResultsCount: () => void;
|
|
3975
|
-
} & {
|
|
3976
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
3977
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
3978
|
-
clearCache: () => void;
|
|
3979
|
-
resultsCount: () => number;
|
|
3980
|
-
resetResultsCount: () => void;
|
|
3981
|
-
};
|
|
3982
|
-
lastResult: () => WebMap | undefined;
|
|
3983
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
3984
|
-
recomputations: () => number;
|
|
3985
|
-
resetRecomputations: () => void;
|
|
3986
|
-
dependencyRecomputations: () => number;
|
|
3987
|
-
resetDependencyRecomputations: () => void;
|
|
3988
|
-
} & {
|
|
3989
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
3990
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
3991
|
-
}];
|
|
2573
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
3992
2574
|
recomputations: () => number;
|
|
3993
2575
|
resetRecomputations: () => void;
|
|
3994
2576
|
dependencyRecomputations: () => number;
|
|
@@ -4037,27 +2619,7 @@ export declare const getMapLayerIdsEnabled: ((state: CoreAppStore, mapId: string
|
|
|
4037
2619
|
resetResultsCount: () => void;
|
|
4038
2620
|
};
|
|
4039
2621
|
lastResult: () => string[];
|
|
4040
|
-
dependencies: [(
|
|
4041
|
-
clearCache: () => void;
|
|
4042
|
-
resultsCount: () => number;
|
|
4043
|
-
resetResultsCount: () => void;
|
|
4044
|
-
} & {
|
|
4045
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
4046
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
4047
|
-
clearCache: () => void;
|
|
4048
|
-
resultsCount: () => number;
|
|
4049
|
-
resetResultsCount: () => void;
|
|
4050
|
-
};
|
|
4051
|
-
lastResult: () => WebMap | undefined;
|
|
4052
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
4053
|
-
recomputations: () => number;
|
|
4054
|
-
resetRecomputations: () => void;
|
|
4055
|
-
dependencyRecomputations: () => number;
|
|
4056
|
-
resetDependencyRecomputations: () => void;
|
|
4057
|
-
} & {
|
|
4058
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
4059
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4060
|
-
}];
|
|
2622
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
4061
2623
|
recomputations: () => number;
|
|
4062
2624
|
resetRecomputations: () => void;
|
|
4063
2625
|
dependencyRecomputations: () => number;
|
|
@@ -4139,27 +2701,7 @@ export declare const getIsEnabledLayersForMapDimension: ((state: CoreAppStore, _
|
|
|
4139
2701
|
resetResultsCount: () => void;
|
|
4140
2702
|
};
|
|
4141
2703
|
lastResult: () => string[];
|
|
4142
|
-
dependencies: [(
|
|
4143
|
-
clearCache: () => void;
|
|
4144
|
-
resultsCount: () => number;
|
|
4145
|
-
resetResultsCount: () => void;
|
|
4146
|
-
} & {
|
|
4147
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
4148
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
4149
|
-
clearCache: () => void;
|
|
4150
|
-
resultsCount: () => number;
|
|
4151
|
-
resetResultsCount: () => void;
|
|
4152
|
-
};
|
|
4153
|
-
lastResult: () => WebMap | undefined;
|
|
4154
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
4155
|
-
recomputations: () => number;
|
|
4156
|
-
resetRecomputations: () => void;
|
|
4157
|
-
dependencyRecomputations: () => number;
|
|
4158
|
-
resetDependencyRecomputations: () => void;
|
|
4159
|
-
} & {
|
|
4160
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
4161
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4162
|
-
}];
|
|
2704
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
4163
2705
|
recomputations: () => number;
|
|
4164
2706
|
resetRecomputations: () => void;
|
|
4165
2707
|
dependencyRecomputations: () => number;
|
|
@@ -4224,27 +2766,7 @@ export declare const getDockedLayerManagerSize: ((state: CoreAppStore, mapId: st
|
|
|
4224
2766
|
resetResultsCount: () => void;
|
|
4225
2767
|
};
|
|
4226
2768
|
lastResult: () => import("./types").DockedLayerManagerSize | undefined;
|
|
4227
|
-
dependencies: [(
|
|
4228
|
-
clearCache: () => void;
|
|
4229
|
-
resultsCount: () => number;
|
|
4230
|
-
resetResultsCount: () => void;
|
|
4231
|
-
} & {
|
|
4232
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
4233
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
4234
|
-
clearCache: () => void;
|
|
4235
|
-
resultsCount: () => number;
|
|
4236
|
-
resetResultsCount: () => void;
|
|
4237
|
-
};
|
|
4238
|
-
lastResult: () => WebMap | undefined;
|
|
4239
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
4240
|
-
recomputations: () => number;
|
|
4241
|
-
resetRecomputations: () => void;
|
|
4242
|
-
dependencyRecomputations: () => number;
|
|
4243
|
-
resetDependencyRecomputations: () => void;
|
|
4244
|
-
} & {
|
|
4245
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
4246
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4247
|
-
}];
|
|
2769
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
4248
2770
|
recomputations: () => number;
|
|
4249
2771
|
resetRecomputations: () => void;
|
|
4250
2772
|
dependencyRecomputations: () => number;
|
|
@@ -4291,27 +2813,7 @@ export declare const getAnimationList: ((state: CoreAppStore, mapId: string) =>
|
|
|
4291
2813
|
} & {
|
|
4292
2814
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
4293
2815
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4294
|
-
}, ((state: CoreAppStore, mapId: string) =>
|
|
4295
|
-
clearCache: () => void;
|
|
4296
|
-
resultsCount: () => number;
|
|
4297
|
-
resetResultsCount: () => void;
|
|
4298
|
-
} & {
|
|
4299
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
4300
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
4301
|
-
clearCache: () => void;
|
|
4302
|
-
resultsCount: () => number;
|
|
4303
|
-
resetResultsCount: () => void;
|
|
4304
|
-
};
|
|
4305
|
-
lastResult: () => WebMap | undefined;
|
|
4306
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
4307
|
-
recomputations: () => number;
|
|
4308
|
-
resetRecomputations: () => void;
|
|
4309
|
-
dependencyRecomputations: () => number;
|
|
4310
|
-
resetDependencyRecomputations: () => void;
|
|
4311
|
-
} & {
|
|
4312
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
4313
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4314
|
-
}, ((state: CoreAppStore, mapId: string) => string | undefined) & {
|
|
2816
|
+
}, (store: CoreAppStore, mapId: string) => WebMap | undefined, ((state: CoreAppStore, mapId: string) => string | undefined) & {
|
|
4315
2817
|
clearCache: () => void;
|
|
4316
2818
|
resultsCount: () => number;
|
|
4317
2819
|
resetResultsCount: () => void;
|
|
@@ -4323,27 +2825,7 @@ export declare const getAnimationList: ((state: CoreAppStore, mapId: string) =>
|
|
|
4323
2825
|
resetResultsCount: () => void;
|
|
4324
2826
|
};
|
|
4325
2827
|
lastResult: () => string | undefined;
|
|
4326
|
-
dependencies: [(
|
|
4327
|
-
clearCache: () => void;
|
|
4328
|
-
resultsCount: () => number;
|
|
4329
|
-
resetResultsCount: () => void;
|
|
4330
|
-
} & {
|
|
4331
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
4332
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
4333
|
-
clearCache: () => void;
|
|
4334
|
-
resultsCount: () => number;
|
|
4335
|
-
resetResultsCount: () => void;
|
|
4336
|
-
};
|
|
4337
|
-
lastResult: () => WebMap | undefined;
|
|
4338
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
4339
|
-
recomputations: () => number;
|
|
4340
|
-
resetRecomputations: () => void;
|
|
4341
|
-
dependencyRecomputations: () => number;
|
|
4342
|
-
resetDependencyRecomputations: () => void;
|
|
4343
|
-
} & {
|
|
4344
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
4345
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4346
|
-
}];
|
|
2828
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
4347
2829
|
recomputations: () => number;
|
|
4348
2830
|
resetRecomputations: () => void;
|
|
4349
2831
|
dependencyRecomputations: () => number;
|
|
@@ -4363,27 +2845,7 @@ export declare const getAnimationList: ((state: CoreAppStore, mapId: string) =>
|
|
|
4363
2845
|
resetResultsCount: () => void;
|
|
4364
2846
|
};
|
|
4365
2847
|
lastResult: () => string | undefined;
|
|
4366
|
-
dependencies: [(
|
|
4367
|
-
clearCache: () => void;
|
|
4368
|
-
resultsCount: () => number;
|
|
4369
|
-
resetResultsCount: () => void;
|
|
4370
|
-
} & {
|
|
4371
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
4372
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
4373
|
-
clearCache: () => void;
|
|
4374
|
-
resultsCount: () => number;
|
|
4375
|
-
resetResultsCount: () => void;
|
|
4376
|
-
};
|
|
4377
|
-
lastResult: () => WebMap | undefined;
|
|
4378
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
4379
|
-
recomputations: () => number;
|
|
4380
|
-
resetRecomputations: () => void;
|
|
4381
|
-
dependencyRecomputations: () => number;
|
|
4382
|
-
resetDependencyRecomputations: () => void;
|
|
4383
|
-
} & {
|
|
4384
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
4385
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4386
|
-
}];
|
|
2848
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
4387
2849
|
recomputations: () => number;
|
|
4388
2850
|
resetRecomputations: () => void;
|
|
4389
2851
|
dependencyRecomputations: () => number;
|
|
@@ -4403,27 +2865,7 @@ export declare const getAnimationList: ((state: CoreAppStore, mapId: string) =>
|
|
|
4403
2865
|
resetResultsCount: () => void;
|
|
4404
2866
|
};
|
|
4405
2867
|
lastResult: () => number;
|
|
4406
|
-
dependencies: [(
|
|
4407
|
-
clearCache: () => void;
|
|
4408
|
-
resultsCount: () => number;
|
|
4409
|
-
resetResultsCount: () => void;
|
|
4410
|
-
} & {
|
|
4411
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
4412
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
4413
|
-
clearCache: () => void;
|
|
4414
|
-
resultsCount: () => number;
|
|
4415
|
-
resetResultsCount: () => void;
|
|
4416
|
-
};
|
|
4417
|
-
lastResult: () => WebMap | undefined;
|
|
4418
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
4419
|
-
recomputations: () => number;
|
|
4420
|
-
resetRecomputations: () => void;
|
|
4421
|
-
dependencyRecomputations: () => number;
|
|
4422
|
-
resetDependencyRecomputations: () => void;
|
|
4423
|
-
} & {
|
|
4424
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
4425
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4426
|
-
}];
|
|
2868
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
4427
2869
|
recomputations: () => number;
|
|
4428
2870
|
resetRecomputations: () => void;
|
|
4429
2871
|
dependencyRecomputations: () => number;
|
|
@@ -4501,27 +2943,7 @@ export declare const getAnimationRange: ((state: CoreAppStore, mapId: string) =>
|
|
|
4501
2943
|
resetResultsCount: () => void;
|
|
4502
2944
|
};
|
|
4503
2945
|
lastResult: () => string | undefined;
|
|
4504
|
-
dependencies: [(
|
|
4505
|
-
clearCache: () => void;
|
|
4506
|
-
resultsCount: () => number;
|
|
4507
|
-
resetResultsCount: () => void;
|
|
4508
|
-
} & {
|
|
4509
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
4510
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
4511
|
-
clearCache: () => void;
|
|
4512
|
-
resultsCount: () => number;
|
|
4513
|
-
resetResultsCount: () => void;
|
|
4514
|
-
};
|
|
4515
|
-
lastResult: () => WebMap | undefined;
|
|
4516
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
4517
|
-
recomputations: () => number;
|
|
4518
|
-
resetRecomputations: () => void;
|
|
4519
|
-
dependencyRecomputations: () => number;
|
|
4520
|
-
resetDependencyRecomputations: () => void;
|
|
4521
|
-
} & {
|
|
4522
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
4523
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4524
|
-
}];
|
|
2946
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
4525
2947
|
recomputations: () => number;
|
|
4526
2948
|
resetRecomputations: () => void;
|
|
4527
2949
|
dependencyRecomputations: () => number;
|
|
@@ -4541,27 +2963,7 @@ export declare const getAnimationRange: ((state: CoreAppStore, mapId: string) =>
|
|
|
4541
2963
|
resetResultsCount: () => void;
|
|
4542
2964
|
};
|
|
4543
2965
|
lastResult: () => string | undefined;
|
|
4544
|
-
dependencies: [(
|
|
4545
|
-
clearCache: () => void;
|
|
4546
|
-
resultsCount: () => number;
|
|
4547
|
-
resetResultsCount: () => void;
|
|
4548
|
-
} & {
|
|
4549
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
4550
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
4551
|
-
clearCache: () => void;
|
|
4552
|
-
resultsCount: () => number;
|
|
4553
|
-
resetResultsCount: () => void;
|
|
4554
|
-
};
|
|
4555
|
-
lastResult: () => WebMap | undefined;
|
|
4556
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
4557
|
-
recomputations: () => number;
|
|
4558
|
-
resetRecomputations: () => void;
|
|
4559
|
-
dependencyRecomputations: () => number;
|
|
4560
|
-
resetDependencyRecomputations: () => void;
|
|
4561
|
-
} & {
|
|
4562
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
4563
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4564
|
-
}];
|
|
2966
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
4565
2967
|
recomputations: () => number;
|
|
4566
2968
|
resetRecomputations: () => void;
|
|
4567
2969
|
dependencyRecomputations: () => number;
|
|
@@ -4581,27 +2983,7 @@ export declare const getAnimationRange: ((state: CoreAppStore, mapId: string) =>
|
|
|
4581
2983
|
resetResultsCount: () => void;
|
|
4582
2984
|
};
|
|
4583
2985
|
lastResult: () => string | undefined;
|
|
4584
|
-
dependencies: [(
|
|
4585
|
-
clearCache: () => void;
|
|
4586
|
-
resultsCount: () => number;
|
|
4587
|
-
resetResultsCount: () => void;
|
|
4588
|
-
} & {
|
|
4589
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
4590
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
4591
|
-
clearCache: () => void;
|
|
4592
|
-
resultsCount: () => number;
|
|
4593
|
-
resetResultsCount: () => void;
|
|
4594
|
-
};
|
|
4595
|
-
lastResult: () => WebMap | undefined;
|
|
4596
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
4597
|
-
recomputations: () => number;
|
|
4598
|
-
resetRecomputations: () => void;
|
|
4599
|
-
dependencyRecomputations: () => number;
|
|
4600
|
-
resetDependencyRecomputations: () => void;
|
|
4601
|
-
} & {
|
|
4602
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
4603
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4604
|
-
}];
|
|
2986
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
4605
2987
|
recomputations: () => number;
|
|
4606
2988
|
resetRecomputations: () => void;
|
|
4607
2989
|
dependencyRecomputations: () => number;
|
|
@@ -4621,27 +3003,7 @@ export declare const getAnimationRange: ((state: CoreAppStore, mapId: string) =>
|
|
|
4621
3003
|
resetResultsCount: () => void;
|
|
4622
3004
|
};
|
|
4623
3005
|
lastResult: () => boolean;
|
|
4624
|
-
dependencies: [(
|
|
4625
|
-
clearCache: () => void;
|
|
4626
|
-
resultsCount: () => number;
|
|
4627
|
-
resetResultsCount: () => void;
|
|
4628
|
-
} & {
|
|
4629
|
-
resultFunc: (resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined;
|
|
4630
|
-
memoizedResultFunc: ((resultFuncArgs_0: WebMapState | undefined, resultFuncArgs_1: string) => WebMap | undefined) & {
|
|
4631
|
-
clearCache: () => void;
|
|
4632
|
-
resultsCount: () => number;
|
|
4633
|
-
resetResultsCount: () => void;
|
|
4634
|
-
};
|
|
4635
|
-
lastResult: () => WebMap | undefined;
|
|
4636
|
-
dependencies: [(store: CoreAppStore) => WebMapState | undefined, (getMapStore: CoreAppStore | undefined, mapId: string) => string];
|
|
4637
|
-
recomputations: () => number;
|
|
4638
|
-
resetRecomputations: () => void;
|
|
4639
|
-
dependencyRecomputations: () => number;
|
|
4640
|
-
resetDependencyRecomputations: () => void;
|
|
4641
|
-
} & {
|
|
4642
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
4643
|
-
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
4644
|
-
}];
|
|
3006
|
+
dependencies: [(store: CoreAppStore, mapId: string) => WebMap | undefined];
|
|
4645
3007
|
recomputations: () => number;
|
|
4646
3008
|
resetRecomputations: () => void;
|
|
4647
3009
|
dependencyRecomputations: () => number;
|