@obliczeniowo/elementary
Version:
Library made in Angular version 19
15 lines (14 loc) • 530 B
TypeScript
import { ColorRGB } from '@obliczeniowo/elementary/classes';
import { DrawingSvgInterface } from '@obliczeniowo/elementary/drawing';
import { MapboxLike } from './mapbox-like';
export interface ToOverrideLayer {
layerId: string;
fillOpacity?: string | number;
fill?: ColorRGB;
textColor?: string;
haloColor?: string;
draw?: {
after: ((feature: any, map: MapboxLike, dc: DrawingSvgInterface) => void)[];
before: ((feature: any, map: MapboxLike, dc: DrawingSvgInterface) => void)[];
};
}