Skip to content

Commit 2caa325

Browse files
committed
Website updates
1 parent 33d6444 commit 2caa325

File tree

11 files changed

+16
-7
lines changed

11 files changed

+16
-7
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/OGCMapTile.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/OGCMapTile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ class OGCMapTile extends TileImage {
8383
*/
8484
handleTileSetInfo_(tileSetInfo) {
8585
this.tileGrid = tileSetInfo.grid;
86+
this.projection = tileSetInfo.projection;
8687
this.setTileUrlFunction(tileSetInfo.urlFunction, tileSetInfo.urlTemplate);
8788
this.setState('ready');
8889
}

dist/en/main/ol/source/OGCVectorTile.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/OGCVectorTile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ class OGCVectorTile extends VectorTileSource {
9292
*/
9393
handleTileSetInfo_(tileSetInfo) {
9494
this.tileGrid = tileSetInfo.grid;
95+
this.projection = tileSetInfo.projection;
9596
this.setTileUrlFunction(tileSetInfo.urlFunction, tileSetInfo.urlTemplate);
9697
this.setState('ready');
9798
}

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/**
22
* @typedef {Object} TileSetInfo
33
* @property {string} urlTemplate The tile URL template.
4+
* @property {import("../proj/Projection.js").default} projection The source projection.
45
* @property {import("../tilegrid/TileGrid.js").default} grid The tile grid.
56
* @property {import("../Tile.js").UrlFunction} urlFunction The tile URL function.
67
*/
@@ -44,6 +45,10 @@ export type TileSetInfo = {
4445
* The tile URL template.
4546
*/
4647
urlTemplate: string;
48+
/**
49+
* The source projection.
50+
*/
51+
projection: import("../proj/Projection.js").default;
4752
/**
4853
* The tile grid.
4954
*/

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.

0 commit comments

Comments
 (0)