Class DataFetchStrategy
Inheritance
DataFetchStrategy
Assembly: Mapsui.Tiling.dll
Syntax
public class DataFetchStrategy : IDataFetchStrategy
Constructors
|
Edit this page
View Source
DataFetchStrategy(int)
Declaration
public DataFetchStrategy(int maxLevelsUp = 2147483647)
Parameters
Type |
Name |
Description |
int |
maxLevelsUp |
|
Methods
|
Edit this page
View Source
Get(ITileSchema, Extent, int)
Fetches the tiles from the data source to put them into the cache. A strategy could pre-fetch
certain tiles to anticipate future use.
Declaration
public IList<TileInfo> Get(ITileSchema schema, Extent extent, int level)
Parameters
Type |
Name |
Description |
ITileSchema |
schema |
|
Extent |
extent |
|
int |
level |
|
Returns
Type |
Description |
IList<TileInfo> |
|
Implements