Skip to content

Commit

Permalink
continue to catch 404s
Browse files Browse the repository at this point in the history
  • Loading branch information
jgravois committed Jun 29, 2018
1 parent dd951a9 commit 50c371f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/renderer/background_source.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,11 @@ rendererBackgroundSource.Bing = function(data, dispatch) {


rendererBackgroundSource.Esri = function(data) {
// in addition to using the tilemap at zoom level 20, overzoom real tiles - #4327 (deprecated technique, but it works)
if (data.template.match(/blankTile/) === null) {
data.template = data.template + '?blankTile=false';
}

var esri = rendererBackgroundSource(data);
var cache = {};
var inflight = {};
Expand Down

0 comments on commit 50c371f

Please sign in to comment.