summaryrefslogtreecommitdiff
path: root/client/simple/src/js/pkg/ol.ts
blob: 28eed3c0393a243eb637dc25f1bf60ab8dbf04c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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
};