Skip to content

Commit

Permalink
Merge branch 'publisher-production' into docs-redesign
Browse files Browse the repository at this point in the history
* publisher-production:
  add docs for workerCount and maxParallelImageRequests (#7812)
  • Loading branch information
Katy DeCorah committed Jan 25, 2019
2 parents c6e0d56 + 80c4725 commit a6c69f5
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,11 @@ const exported = {
set accessToken(token: string) {
config.ACCESS_TOKEN = token;
},

/**
* Gets and sets the map's default API URL for requesting tiles, styles, sprites, and glyphs
*
* @var {string} url
* @var {string} baseApiUrl
* @example
* mapboxgl.baseApiUrl = 'https://api.mapbox.com';
*/
Expand All @@ -72,6 +73,15 @@ const exported = {
config.API_URL = url;
},

/**
* Gets and sets the number of web workers instantiated on a page with GL JS maps.
* By default, it is set to half the number of CPU cores (capped at 6).
* Make sure to set this property before creating any map instances for it to have effect.
*
* @var {string} workerCount
* @example
* mapboxgl.workerCount = 2;
*/
get workerCount(): number {
return WorkerPool.workerCount;
},
Expand All @@ -80,6 +90,14 @@ const exported = {
WorkerPool.workerCount = count;
},

/**
* Gets and sets the maximum number of images (raster tiles, sprites, icons) to load in parallel,
* which affects performance in raster-heavy maps. 16 by default.
*
* @var {string} maxParallelImageRequests
* @example
* mapboxgl.maxParallelImageRequests = 10;
*/
get maxParallelImageRequests(): number {
return config.MAX_PARALLEL_IMAGE_REQUESTS;
},
Expand Down

0 comments on commit a6c69f5

Please sign in to comment.