mirror of
https://github.com/searxng/searxng.git
synced 2025-12-24 04:30:02 +00:00
SPDX short-form identifiers to communicate license information in a simple, efficient, portable and machine-readable manner [1] [1] https://spdx.dev/learn/handling-license-info/
29 lines
605 B
TypeScript
29 lines
605 B
TypeScript
// 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
|
|
};
|