diff options
Diffstat (limited to 'client/simple/src/js/pkg/ol.ts')
| -rw-r--r-- | client/simple/src/js/pkg/ol.ts | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/client/simple/src/js/pkg/ol.ts b/client/simple/src/js/pkg/ol.ts deleted file mode 100644 index 28eed3c03..000000000 --- a/client/simple/src/js/pkg/ol.ts +++ /dev/null @@ -1,28 +0,0 @@ -// SPDX-License-Identifier: AGPL-3.0-or-later - -import { Feature, Map as OlMap, View } from "ol"; -import { createEmpty } from "ol/extent"; -import { GeoJSON } from "ol/format"; -import { Point } from "ol/geom"; -import { Tile as TileLayer, Vector as VectorLayer } from "ol/layer"; -import { fromLonLat } from "ol/proj"; -import { OSM, Vector as VectorSource } from "ol/source"; -import { Circle, Fill, Stroke, Style } from "ol/style"; - -export { - View, - OlMap, - TileLayer, - VectorLayer, - OSM, - createEmpty, - VectorSource, - Style, - Stroke, - Fill, - Circle, - fromLonLat, - GeoJSON, - Feature, - Point -}; |