case class TileLayout(layoutCols: Int, layoutRows: Int, tileCols: Int, tileRows: Int) extends Product with Serializable
- layoutCols
number of columns in the layout, East to West
- layoutRows
number of rows in the layout grid, North to South
- tileCols
number of pixel columns in each tile, East to West
- tileRows
number of pixel rows in each tile, North to South
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TileLayout
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
TileLayout(layoutCols: Int, layoutRows: Int, tileCols: Int, tileRows: Int)
- layoutCols
number of columns in the layout, East to West
- layoutRows
number of rows in the layout grid, North to South
- tileCols
number of pixel columns in each tile, East to West
- tileRows
number of pixel rows in each tile, North to South
Value Members
-
def
cellSize(extent: Extent): CellSize
Compute the size of the cells, the CellSize, in the given Extent.
-
def
combine(other: TileLayout): TileLayout
Combine the present TileLayout with another one and return then result.
- def isTiled: Boolean
- val layoutCols: Int
- def layoutDimensions: Dimensions[Int]
- val layoutRows: Int
- val tileCols: Int
- def tileDimensions: Dimensions[Int]
- val tileRows: Int
- def tileSize: Int
-
def
totalCols: Long
Return the total number of columns across all the tiles.
-
def
totalRows: Long
Return the total number of rows across all the tiles.