Skip to content

Commit

Permalink
Add JS docs for mapboxgl.workerUrl (#10829)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arindam Bose authored Jul 8, 2021
1 parent 50cd794 commit 0ea6b42
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,23 @@ const exported = {
clearStorage(callback?: (err: ?Error) => void) {
clearTileCache(callback);
},

/**
* Provides an interface for loading mapbox-gl's WebWorker bundle from a self-hosted URL.
* This needs to be set only once, and before any call to `new mapboxgl.Map(..)` takes place.
* This is useful if your site needs to operate in a strict CSP (Content Security Policy) environment
* wherein you are not allowed to load JavaScript code from a [`Blob` URL](https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL), which is default behavior.
*
* See our documentation on [CSP Directives](https://docs.mapbox.com/mapbox-gl-js/api/#csp-directives) for more details.
*
* @var {string} workerUrl
* @returns {string} A URL hosting a JavaScript bundle for mapbox-gl's WebWorker.
* @example
* <script src='https://api.mapbox.com/mapbox-gl-js/v2.3.1/mapbox-gl-csp.js'></script>
* <script>
* mapboxgl.workerUrl = "https://api.mapbox.com/mapbox-gl-js/v2.3.1/mapbox-gl-csp-worker.js";
* ...
* </script>
*/
workerUrl: '',

/**
Expand Down

0 comments on commit 0ea6b42

Please sign in to comment.