UNPKG

hmpps-open-layers-map

Version:

A native Web Component for displaying maps using OpenLayers.

12 lines (11 loc) 288 B
import maplibregl from 'maplibre-gl'; export class MapLibreMapInstance extends maplibregl.Map { constructor(options) { super({ container: options.target, style: options.styleUrl, antialias: true, ...options, }); } }