Refactoring: allow to export the map as PNG

This commit is contained in:
Pieter Vander Vennet 2023-04-19 03:20:49 +02:00
parent e36e9123f3
commit 7f8969146a
16 changed files with 207 additions and 66 deletions

View file

@ -15,3 +15,7 @@ export interface MapProperties {
readonly allowZooming: UIEventSource<true | boolean>
}
export interface ExportableMap {
exportAsPng(): Promise<Blob>
}