Move TileRange to seperate file

This commit is contained in:
Pieter Vander Vennet 2021-07-10 21:03:41 +02:00
parent e594511e22
commit 2dbdcaa2ba
3 changed files with 4 additions and 12 deletions

View file

@ -1,7 +1,7 @@
/**
* Generates a collection of geojson files based on an overpass query for a given theme
*/
import {TileRange, Utils} from "../Utils";
import {Utils} from "../Utils";
Utils.runningFromConsole = true
import {Overpass} from "../Logic/Osm/Overpass";
@ -17,6 +17,7 @@ import MetaTagging from "../Logic/MetaTagging";
import LayerConfig from "../Customizations/JSON/LayerConfig";
import {GeoOperations} from "../Logic/GeoOperations";
import {UIEventSource} from "../Logic/UIEventSource";
import {TileRange} from "../Models/TileRange";
function createOverpassObject(theme: LayoutConfig) {