UNPKG

maplibre-gl

Version:

BSD licensed community fork of mapbox-gl, a WebGL interactive maps library

10 lines (7 loc) 317 B
let supportsOffscreenCanvas: boolean; export function offscreenCanvasSupported(): boolean { supportsOffscreenCanvas ??= typeof OffscreenCanvas !== 'undefined' && new OffscreenCanvas(1, 1).getContext('2d') && typeof createImageBitmap === 'function'; return supportsOffscreenCanvas; }