Arno Kaimbacher
cd66f318b6
- add NotificationToast for messages - add leaflet map component and zoom control component - change focus:ring to focus:ring-2 inside BaseButton - `@tailwindcss/line-clamp` plugin is now included by default...remove it from tailwind.config.js - npm updates
14 lines
341 B
TypeScript
14 lines
341 B
TypeScript
import { Layer } from 'leaflet';
|
|
|
|
// 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> {
|
|
} |