Skip to content

Commit

Permalink
v0.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bcamper committed Feb 6, 2019
1 parent 6babc9c commit ff9f51e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions dist/tangram.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -1818,7 +1818,7 @@ function _wrapNativeSuper(Class) {
return _wrapNativeSuper(Class);
}

var version = "0.17.2";
var version = "0.17.3";

var version$1 = 'v' + version;

Expand Down Expand Up @@ -24342,7 +24342,7 @@ var SceneWorker = Object.assign(self, {
for (var t in this.tiles) {
var ref = this.tiles[t];

if (ref.loaded && ref.coords.key === tile.coords.key) {
if (ref.source === tile.source && ref.coords.key === tile.coords.key && ref.loaded) {
return Promise.resolve(source.copyTileData(ref, tile));
}
} // Load new tile data (no existing data found)
Expand Down Expand Up @@ -48577,7 +48577,7 @@ return index;
// Script modules can't expose exports
try {
Tangram.debug.ESM = false; // mark build as ES module
Tangram.debug.SHA = '50f587b2f6892e815d0719a61f71314abe5386b2';
Tangram.debug.SHA = '6babc9c3d1b1db21af9b99cefa46b7ea500a3920';
if (false === true && typeof window === 'object') {
window.Tangram = Tangram;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/tangram.debug.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/tangram.debug.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function _extends() {
return _extends.apply(this, arguments);
}

var version = "0.17.2";
var version = "0.17.3";

var version$1 = 'v' + version;

Expand Down Expand Up @@ -20348,7 +20348,7 @@ const SceneWorker = Object.assign(self, {
for (const t in this.tiles) {
const ref = this.tiles[t];

if (ref.loaded && ref.coords.key === tile.coords.key) {
if (ref.source === tile.source && ref.coords.key === tile.coords.key && ref.loaded) {
return Promise.resolve(source.copyTileData(ref, tile));
}
} // Load new tile data (no existing data found)
Expand Down Expand Up @@ -44267,7 +44267,7 @@ return index;
// Script modules can't expose exports
try {
Tangram.debug.ESM = true; // mark build as ES module
Tangram.debug.SHA = '50f587b2f6892e815d0719a61f71314abe5386b2';
Tangram.debug.SHA = '6babc9c3d1b1db21af9b99cefa46b7ea500a3920';
if (true === true && typeof window === 'object') {
window.Tangram = Tangram;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/tangram.debug.mjs.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/tangram.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/tangram.min.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tangram",
"version": "0.17.2",
"version": "0.17.3",
"description": "WebGL Maps for Vector Tiles",
"repository": {
"type": "git",
Expand Down

0 comments on commit ff9f51e

Please sign in to comment.