Refactor style cache

This commit is contained in:
Willem Dantuma
2020-02-12 20:38:14 +01:00
parent b83aca7969
commit 6379b64351
9 changed files with 258 additions and 224 deletions

View File

@@ -0,0 +1,5 @@
import {Style} from 'ol';
export interface IStyleCache{
[id: string]: Style;
};