Skip to content

Commit 71341e3

Browse files
committed
Website updates
1 parent cddcc7a commit 71341e3

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

dist/en/main/examples/common.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/examples/common.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/dist/ol.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/dist/ol.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/source/ogcTileUtil.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/en/main/ol/source/ogcTileUtil.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,15 @@ function parseTileMatrixSet(
399399
}
400400
}
401401

402-
Object.assign(localContext, context);
402+
Object.assign(
403+
localContext,
404+
{
405+
z: localContext.tileMatrix,
406+
x: localContext.tileCol,
407+
y: localContext.tileRow,
408+
},
409+
context,
410+
);
403411

404412
const url = tileUrlTemplate.replace(/\{(\w+?)\}/g, function (m, p) {
405413
return localContext[p];

0 commit comments

Comments
 (0)