UNPKG

hmpps-open-layers-map

Version:

A native Web Component for displaying maps using OpenLayers or MapLibre.

13 lines (12 loc) 387 B
import Overlay from 'ol/Overlay'; import { Coordinate } from 'ol/coordinate'; export default class FeatureOverlay extends Overlay { private container; private title; private content; private closeButton; constructor(container: HTMLElement); private replacer; showAtCoordinate(coordinate: Coordinate, data: Record<string, unknown>): void; close(): void; }