itowns
Version:
A JS/WebGL framework for 3D geospatial data visualization
29 lines (28 loc) • 628 B
TypeScript
declare namespace _default {
export { subDomains };
export function xyz(coords: {
row: number;
col: number;
zoom: number;
}, source: {
url: string;
tileMatrixCallback: Function;
}): string;
export function bbox(bbox: {
west: number;
south: number;
east: number;
north: number;
}, source: {
crs: string;
bboxDigits: number;
url: string;
axisOrder: string;
}): string;
}
export default _default;
/**
* @param {string} url
* @returns {string}
*/
declare function subDomains(url: string): string;