This commit is contained in:
55
node_modules/ol/loadingstrategy.js
generated
vendored
Normal file
55
node_modules/ol/loadingstrategy.js
generated
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
/**
|
||||
* @module ol/loadingstrategy
|
||||
*/
|
||||
import { fromUserExtent, fromUserResolution, toUserExtent } from './proj.js';
|
||||
/**
|
||||
* 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, resolution) {
|
||||
return [[-Infinity, -Infinity, Infinity, Infinity]];
|
||||
}
|
||||
/**
|
||||
* 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, resolution) {
|
||||
return [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) {
|
||||
return (
|
||||
/**
|
||||
* @param {import("./extent.js").Extent} extent Extent.
|
||||
* @param {number} resolution Resolution.
|
||||
* @param {import("./proj.js").Projection} projection Projection.
|
||||
* @return {Array<import("./extent.js").Extent>} Extents.
|
||||
*/
|
||||
function (extent, resolution, projection) {
|
||||
var z = tileGrid.getZForResolution(fromUserResolution(resolution, projection));
|
||||
var tileRange = tileGrid.getTileRangeForExtentAndZ(fromUserExtent(extent, projection), z);
|
||||
/** @type {Array<import("./extent.js").Extent>} */
|
||||
var extents = [];
|
||||
/** @type {import("./tilecoord.js").TileCoord} */
|
||||
var tileCoord = [z, 0, 0];
|
||||
for (tileCoord[1] = tileRange.minX; tileCoord[1] <= tileRange.maxX; ++tileCoord[1]) {
|
||||
for (tileCoord[2] = tileRange.minY; tileCoord[2] <= tileRange.maxY; ++tileCoord[2]) {
|
||||
extents.push(toUserExtent(tileGrid.getTileCoordExtent(tileCoord), projection));
|
||||
}
|
||||
}
|
||||
return extents;
|
||||
});
|
||||
}
|
||||
//# sourceMappingURL=loadingstrategy.js.map
|
||||
Reference in New Issue
Block a user