adb-shared 6.2.23 → 6.2.25
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/package.json
CHANGED
|
@@ -16,6 +16,7 @@ interface AdbMapConfig {
|
|
|
16
16
|
api: string;
|
|
17
17
|
artfaktaTaxonLists: string;
|
|
18
18
|
observationPage?: string;
|
|
19
|
+
dynamic?: boolean;
|
|
19
20
|
filters?: AdbMapFilterType[];
|
|
20
21
|
log?: boolean;
|
|
21
22
|
}
|
|
@@ -45,6 +46,7 @@ declare class AdbMapConfigService {
|
|
|
45
46
|
readonly taxaListsApi: string;
|
|
46
47
|
readonly filters: VisibleFilters;
|
|
47
48
|
readonly observationPage: string;
|
|
49
|
+
readonly dynamic: boolean;
|
|
48
50
|
constructor(config: AdbMapConfig);
|
|
49
51
|
private hasFilter;
|
|
50
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdbMapConfigService, never>;
|
|
@@ -73,6 +75,8 @@ declare class AdbObsMapComponent implements AfterViewInit, OnInit, OnDestroy {
|
|
|
73
75
|
ngAfterViewInit(): void;
|
|
74
76
|
private tryLoad;
|
|
75
77
|
ngOnInit(): void;
|
|
78
|
+
private attachUserListeners;
|
|
79
|
+
private onUserInputRoute;
|
|
76
80
|
private loadFeature;
|
|
77
81
|
private buildMap;
|
|
78
82
|
private getPolygonClassName;
|