UNPKG

c8y-openlayer

Version:

This module is designed to help integrate Openlayer with Cumulocity IoT

60 lines (53 loc) 1.74 kB
var _ol_loadingstrategy_ = {}; /** * Strategy function for loading all features with a single request. * @param {ol.Extent} extent Extent. * @param {number} resolution Resolution. * @return {Array.<ol.Extent>} Extents. * @api */ _ol_loadingstrategy_.all = function(extent, resolution) { return [[-Infinity, -Infinity, Infinity, Infinity]]; }; /** * Strategy function for loading features based on the view's extent and * resolution. * @param {ol.Extent} extent Extent. * @param {number} resolution Resolution. * @return {Array.<ol.Extent>} Extents. * @api */ _ol_loadingstrategy_.bbox = function(extent, resolution) { return [extent]; }; /** * Creates a strategy function for loading features based on a tile grid. * @param {ol.tilegrid.TileGrid} tileGrid Tile grid. * @return {function(ol.Extent, number): Array.<ol.Extent>} Loading strategy. * @api */ _ol_loadingstrategy_.tile = function(tileGrid) { return ( /** * @param {ol.Extent} extent Extent. * @param {number} resolution Resolution. * @return {Array.<ol.Extent>} Extents. */ function(extent, resolution) { var z = tileGrid.getZForResolution(resolution); var tileRange = tileGrid.getTileRangeForExtentAndZ(extent, z); /** @type {Array.<ol.Extent>} */ var extents = []; /** @type {ol.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(tileGrid.getTileCoordExtent(tileCoord)); } } return extents; }); }; export default _ol_loadingstrategy_;