Skip to content

Commit

Permalink
Merge pull request #6426 from AnalyticalGraphicsInc/mapbox-tiles
Browse files Browse the repository at this point in the history
Update default Mapbox endpoint URL
  • Loading branch information
Hannah authored Apr 6, 2018
2 parents 9259693 + 2a24a4c commit 8344f83
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 @@ -10,6 +10,9 @@ Change Log
* Allow loadWithXhr to work with string URLs in a web worker.
* Fix Firefox WebGL console warnings. [#5912](https://github.com/AnalyticalGraphicsInc/cesium/issues/5912)

##### 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 8344f83

Please sign in to comment.