planning
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s

This commit is contained in:
2024-10-14 09:15:30 +02:00
parent bcba00a730
commit 6e64e138e2
21059 changed files with 2317811 additions and 1 deletions

25
node_modules/ol/loadingstrategy.d.ts generated vendored Normal file
View File

@@ -0,0 +1,25 @@
/**
* Strategy function for loading all features with a single request.
* @param {import("./extent.js").Extent} extent Extent.
* @param {number} resolution Resolution.
* @return {Array<import("./extent.js").Extent>} Extents.
* @api
*/
export function all(extent: import("./extent.js").Extent, resolution: number): Array<import("./extent.js").Extent>;
/**
* Strategy function for loading features based on the view's extent and
* resolution.
* @param {import("./extent.js").Extent} extent Extent.
* @param {number} resolution Resolution.
* @return {Array<import("./extent.js").Extent>} Extents.
* @api
*/
export function bbox(extent: import("./extent.js").Extent, resolution: number): Array<import("./extent.js").Extent>;
/**
* Creates a strategy function for loading features based on a tile grid.
* @param {import("./tilegrid/TileGrid.js").default} tileGrid Tile grid.
* @return {function(import("./extent.js").Extent, number, import("./proj.js").Projection): Array<import("./extent.js").Extent>} Loading strategy.
* @api
*/
export function tile(tileGrid: import("./tilegrid/TileGrid.js").default): (arg0: import("./extent.js").Extent, arg1: number, arg2: import("./proj.js").Projection) => Array<import("./extent.js").Extent>;
//# sourceMappingURL=loadingstrategy.d.ts.map