Create lightning nodes world heat map (clearnet)

This commit is contained in:
nymkappa
2022-07-20 11:39:51 +02:00
parent 88febf6262
commit 59f84e82b4
9 changed files with 234 additions and 2 deletions

View File

@@ -14,6 +14,7 @@ export class AssetsService {
getAssetsJson$: Observable<{ array: AssetExtended[]; objects: any}>;
getAssetsMinimalJson$: Observable<any>;
getWorldMapJson$: Observable<any>;
constructor(
private httpClient: HttpClient,
@@ -65,5 +66,7 @@ export class AssetsService {
}),
shareReplay(1),
);
this.getWorldMapJson$ = this.httpClient.get(apiBaseUrl + '/resources/worldmap.json').pipe(shareReplay());
}
}