Package gov.nasa.worldwind.util
Interface TileFactory
-
- All Known Implementing Classes:
BasicTessellator
,BlueMarbleLandsatLayer
,GpkgTileFactory
,MercatorTiledImageLayer
,WmsTileFactory
,WmtsTileFactory
public interface TileFactory
Factory for delegating construction ofTile
instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tile
createTile(Sector sector, Level level, int row, int column)
Returns a tile for a specified sector, level within aLevelSet
, and row and column within that level.
-
-
-
Method Detail
-
createTile
Tile createTile(Sector sector, Level level, int row, int column)
Returns a tile for a specified sector, level within aLevelSet
, and row and column within that level.- Parameters:
sector
- the sector spanned by the tilelevel
- the level at which the tile lies within a LevelSetrow
- the row within the specified levelcolumn
- the column within the specified level- Returns:
- a tile constructed with the specified arguments
- Throws:
java.lang.IllegalArgumentException
- if either the sector or the level is null
-
-