Skip to content

Commit

Permalink
Update default Mapbox endpoint URL
Browse files Browse the repository at this point in the history
Improved MapboxImageryProvider performance by 300% via `tiles.mapbox.com`
subdomain switching.
  • Loading branch information
mramato committed Apr 5, 2018
1 parent dca9817 commit 2a24a4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Change Log
* Fixed glTF support to handle skinned meshes when no skin is supplied. [#6061](https://github.com/AnalyticalGraphicsInc/cesium/issues/6061)
* Allow loadWithXhr to work with string URLs in a web worker.

##### Additions :tada:
* Improved `MapboxImageryProvider` performance by 300% via `tiles.mapbox.com` subdomain switching. [#6426](https://github.com/AnalyticalGraphicsInc/cesium/issues/6426)

### 1.44 - 2018-04-02

##### Highlights :sparkler:
Expand Down
2 changes: 1 addition & 1 deletion Source/Scene/MapboxImageryProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ define([

var url = options.url;
if (!defined(url)) {
url = 'https://api.mapbox.com/v4/';
url = 'https://{s}.tiles.mapbox.com/v4/';
}
this._url = url;

Expand Down

0 comments on commit 2a24a4c

Please sign in to comment.