Arno Kaimbacher
f403c3109f
All checks were successful
CI Pipeline / japa-tests (push) Successful in 54s
- npm updates - side menu with child items - flash messages via HttpContext response (extended via macro)
14 lines
361 B
TypeScript
14 lines
361 B
TypeScript
import type { Layer } from 'leaflet/src/layer/Layer';
|
|
|
|
// https://github.com/52North/helgoland-toolbox/blob/develop/libs/map/src/lib/base/map-options.ts
|
|
|
|
export interface LayerOptions {
|
|
label: string;
|
|
visible: boolean;
|
|
layer: Layer;
|
|
}
|
|
|
|
// export type LayerMap = Map<string, LayerOptions>;
|
|
|
|
export class LayerMap extends Map<string, LayerOptions> {}
|