All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
120 lines
4.1 KiB
JavaScript
120 lines
4.1 KiB
JavaScript
/**
|
|
* @module ol/tileurlfunction
|
|
*/
|
|
import { assert } from './asserts.js';
|
|
import { modulo } from './math.js';
|
|
import { hash as tileCoordHash } from './tilecoord.js';
|
|
/**
|
|
* @param {string} template Template.
|
|
* @param {import("./tilegrid/TileGrid.js").default} tileGrid Tile grid.
|
|
* @return {import("./Tile.js").UrlFunction} Tile URL function.
|
|
*/
|
|
export function createFromTemplate(template, tileGrid) {
|
|
var zRegEx = /\{z\}/g;
|
|
var xRegEx = /\{x\}/g;
|
|
var yRegEx = /\{y\}/g;
|
|
var dashYRegEx = /\{-y\}/g;
|
|
return (
|
|
/**
|
|
* @param {import("./tilecoord.js").TileCoord} tileCoord Tile Coordinate.
|
|
* @param {number} pixelRatio Pixel ratio.
|
|
* @param {import("./proj/Projection.js").default} projection Projection.
|
|
* @return {string|undefined} Tile URL.
|
|
*/
|
|
function (tileCoord, pixelRatio, projection) {
|
|
if (!tileCoord) {
|
|
return undefined;
|
|
}
|
|
else {
|
|
return template
|
|
.replace(zRegEx, tileCoord[0].toString())
|
|
.replace(xRegEx, tileCoord[1].toString())
|
|
.replace(yRegEx, tileCoord[2].toString())
|
|
.replace(dashYRegEx, function () {
|
|
var z = tileCoord[0];
|
|
var range = tileGrid.getFullTileRange(z);
|
|
assert(range, 55); // The {-y} placeholder requires a tile grid with extent
|
|
var y = range.getHeight() - tileCoord[2] - 1;
|
|
return y.toString();
|
|
});
|
|
}
|
|
});
|
|
}
|
|
/**
|
|
* @param {Array<string>} templates Templates.
|
|
* @param {import("./tilegrid/TileGrid.js").default} tileGrid Tile grid.
|
|
* @return {import("./Tile.js").UrlFunction} Tile URL function.
|
|
*/
|
|
export function createFromTemplates(templates, tileGrid) {
|
|
var len = templates.length;
|
|
var tileUrlFunctions = new Array(len);
|
|
for (var i = 0; i < len; ++i) {
|
|
tileUrlFunctions[i] = createFromTemplate(templates[i], tileGrid);
|
|
}
|
|
return createFromTileUrlFunctions(tileUrlFunctions);
|
|
}
|
|
/**
|
|
* @param {Array<import("./Tile.js").UrlFunction>} tileUrlFunctions Tile URL Functions.
|
|
* @return {import("./Tile.js").UrlFunction} Tile URL function.
|
|
*/
|
|
export function createFromTileUrlFunctions(tileUrlFunctions) {
|
|
if (tileUrlFunctions.length === 1) {
|
|
return tileUrlFunctions[0];
|
|
}
|
|
return (
|
|
/**
|
|
* @param {import("./tilecoord.js").TileCoord} tileCoord Tile Coordinate.
|
|
* @param {number} pixelRatio Pixel ratio.
|
|
* @param {import("./proj/Projection.js").default} projection Projection.
|
|
* @return {string|undefined} Tile URL.
|
|
*/
|
|
function (tileCoord, pixelRatio, projection) {
|
|
if (!tileCoord) {
|
|
return undefined;
|
|
}
|
|
else {
|
|
var h = tileCoordHash(tileCoord);
|
|
var index = modulo(h, tileUrlFunctions.length);
|
|
return tileUrlFunctions[index](tileCoord, pixelRatio, projection);
|
|
}
|
|
});
|
|
}
|
|
/**
|
|
* @param {import("./tilecoord.js").TileCoord} tileCoord Tile coordinate.
|
|
* @param {number} pixelRatio Pixel ratio.
|
|
* @param {import("./proj/Projection.js").default} projection Projection.
|
|
* @return {string|undefined} Tile URL.
|
|
*/
|
|
export function nullTileUrlFunction(tileCoord, pixelRatio, projection) {
|
|
return undefined;
|
|
}
|
|
/**
|
|
* @param {string} url URL.
|
|
* @return {Array<string>} Array of urls.
|
|
*/
|
|
export function expandUrl(url) {
|
|
var urls = [];
|
|
var match = /\{([a-z])-([a-z])\}/.exec(url);
|
|
if (match) {
|
|
// char range
|
|
var startCharCode = match[1].charCodeAt(0);
|
|
var stopCharCode = match[2].charCodeAt(0);
|
|
var charCode = void 0;
|
|
for (charCode = startCharCode; charCode <= stopCharCode; ++charCode) {
|
|
urls.push(url.replace(match[0], String.fromCharCode(charCode)));
|
|
}
|
|
return urls;
|
|
}
|
|
match = /\{(\d+)-(\d+)\}/.exec(url);
|
|
if (match) {
|
|
// number range
|
|
var stop_1 = parseInt(match[2], 10);
|
|
for (var i = parseInt(match[1], 10); i <= stop_1; i++) {
|
|
urls.push(url.replace(match[0], i.toString()));
|
|
}
|
|
return urls;
|
|
}
|
|
urls.push(url);
|
|
return urls;
|
|
}
|
|
//# sourceMappingURL=tileurlfunction.js.map
|