FarmMapsLib/projects/common-map/src/fm-map/models/style.cache.ts

7 lines
194 B
TypeScript
Raw Normal View History

2021-10-05 11:46:10 +00:00
import {Feature} from 'ol';
import { Style } from 'ol/style';
import {Geometry } from 'ol/geom';
2020-02-12 19:38:14 +00:00
2020-02-12 20:33:28 +00:00
export interface IStyles{
2021-10-05 12:08:55 +00:00
[id: string]: Style | ((featue:Feature<Geometry>) => Style);
2023-03-06 13:04:14 +00:00
}