You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
2.8 KiB
43 lines
2.8 KiB
/**
|
|
* Creates a sources function from a tile grid. This function can be used as value for the
|
|
* `sources` property of the {@link module:ol/layer/Layer~Layer} subclasses that support it.
|
|
* @param {import("./tilegrid/TileGrid.js").default} tileGrid Tile grid.
|
|
* @param {function(import("./tilecoord.js").TileCoord): import("./source/Source.js").default} factory Source factory.
|
|
* This function takes a {@link module:ol/tilecoord~TileCoord} as argument and is expected to return a
|
|
* {@link module:ol/source/Source~Source}. **Note**: The returned sources should have a tile grid with
|
|
* a limited set of resolutions, matching the resolution range of a single zoom level of the pyramid
|
|
* `tileGrid` that `sourcesFromTileGrid` was called with.
|
|
* @return {function(import("./extent.js").Extent, number): Array<import("./source/Source.js").default>} Sources function.
|
|
* @api
|
|
*/
|
|
export function sourcesFromTileGrid(tileGrid: import("./tilegrid/TileGrid.js").default, factory: (arg0: import("./tilecoord.js").TileCoord) => import("./source/Source.js").default): (arg0: import("./extent.js").Extent, arg1: number) => Array<import("./source/Source.js").default>;
|
|
export { default as BingMaps } from "./source/BingMaps.js";
|
|
export { default as CartoDB } from "./source/CartoDB.js";
|
|
export { default as Cluster } from "./source/Cluster.js";
|
|
export { default as DataTile } from "./source/DataTile.js";
|
|
export { default as GeoTIFF } from "./source/GeoTIFF.js";
|
|
export { default as IIIF } from "./source/IIIF.js";
|
|
export { default as Image } from "./source/Image.js";
|
|
export { default as ImageArcGISRest } from "./source/ImageArcGISRest.js";
|
|
export { default as ImageCanvas } from "./source/ImageCanvas.js";
|
|
export { default as ImageMapGuide } from "./source/ImageMapGuide.js";
|
|
export { default as ImageStatic } from "./source/ImageStatic.js";
|
|
export { default as ImageWMS } from "./source/ImageWMS.js";
|
|
export { default as OSM } from "./source/OSM.js";
|
|
export { default as Raster } from "./source/Raster.js";
|
|
export { default as Source } from "./source/Source.js";
|
|
export { default as Stamen } from "./source/Stamen.js";
|
|
export { default as Tile } from "./source/Tile.js";
|
|
export { default as TileArcGISRest } from "./source/TileArcGISRest.js";
|
|
export { default as TileDebug } from "./source/TileDebug.js";
|
|
export { default as TileImage } from "./source/TileImage.js";
|
|
export { default as TileJSON } from "./source/TileJSON.js";
|
|
export { default as TileWMS } from "./source/TileWMS.js";
|
|
export { default as UrlTile } from "./source/UrlTile.js";
|
|
export { default as UTFGrid } from "./source/UTFGrid.js";
|
|
export { default as Vector } from "./source/Vector.js";
|
|
export { default as VectorTile } from "./source/VectorTile.js";
|
|
export { default as WMTS } from "./source/WMTS.js";
|
|
export { default as XYZ } from "./source/XYZ.js";
|
|
export { default as Zoomify } from "./source/Zoomify.js";
|
|
//# sourceMappingURL=source.d.ts.map
|