UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

12 lines (11 loc) 527 B
import TileLayer from 'ol/layer/Tile'; import WMTS from 'ol/source/WMTS'; import VectorLayer from 'ol/layer/Vector'; import VectorSource from 'ol/source/Vector'; import Feature from 'ol/Feature'; import { Point } from 'ol/geom'; import { StyleLike } from 'ol/style/Style'; export declare const createPointFeature: () => Feature<Point>; export declare const styleFn: StyleLike; export declare const createOlVectorLayer: () => VectorLayer<VectorSource>; export declare const createOlWmtsLayer: (url?: string) => TileLayer<WMTS>;