Package org.geotools.geopkg
Class TileMatrix
- Object
-
- TileMatrix
-
public class TileMatrix extends Object
A TileMatrix inside a Geopackage. Corresponds to the gpkg_tile_matrix table.- Author:
- Justin Deoliveira, Niels Charlier
-
-
Constructor Summary
Constructors Constructor Description TileMatrix()TileMatrix(Integer zoomLevel, Integer matrixWidth, Integer matrixHeight, Integer tileWidth, Integer tileHeight, Double xPixelSize, Double yPixelSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetMatrixHeight()IntegergetMatrixWidth()IntegergetTileHeight()IntegergetTileWidth()DoublegetXPixelSize()DoublegetYPixelSize()IntegergetZoomLevel()booleanhasTiles()voidsetMatrixHeight(Integer matrixHeight)voidsetMatrixWidth(Integer matrixWidth)voidsetTileHeight(Integer tileHeight)voidsetTiles(boolean tiles)voidsetTileWidth(Integer tileWidth)voidsetXPixelSize(Double xPixelSize)voidsetYPixelSize(Double yPixelSize)voidsetZoomLevel(Integer zoomLevel)StringtoString()
-
-
-
Method Detail
-
getZoomLevel
public Integer getZoomLevel()
-
setZoomLevel
public void setZoomLevel(Integer zoomLevel)
-
getMatrixWidth
public Integer getMatrixWidth()
-
setMatrixWidth
public void setMatrixWidth(Integer matrixWidth)
-
getMatrixHeight
public Integer getMatrixHeight()
-
setMatrixHeight
public void setMatrixHeight(Integer matrixHeight)
-
getTileWidth
public Integer getTileWidth()
-
setTileWidth
public void setTileWidth(Integer tileWidth)
-
getTileHeight
public Integer getTileHeight()
-
setTileHeight
public void setTileHeight(Integer tileHeight)
-
getXPixelSize
public Double getXPixelSize()
-
setXPixelSize
public void setXPixelSize(Double xPixelSize)
-
getYPixelSize
public Double getYPixelSize()
-
setYPixelSize
public void setYPixelSize(Double yPixelSize)
-
hasTiles
public boolean hasTiles()
-
setTiles
public void setTiles(boolean tiles)
-
-