package.src.util.browser.web_worker.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapbox-gl Show documentation
Show all versions of mapbox-gl Show documentation
A WebGL interactive maps library
The newest version!
// @flow
import window from '../window';
import mapboxgl from '../../';
import type {WorkerInterface} from '../web_worker';
export default function (): WorkerInterface {
return (new window.Worker(mapboxgl.workerUrl): any);
}