Class TileReprojectionZoom
- java.lang.Object
-
- mil.nga.geopackage.tiles.reproject.TileReprojectionZoom
-
public class TileReprojectionZoom extends Object
Optional Tile Reprojection configuration for a zoom level- Since:
- 5.0.0
- Author:
- osbornb
-
-
Constructor Summary
Constructors Constructor Description TileReprojectionZoom(long zoom)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
getMatrixHeight()
Get the matrix heightLong
getMatrixWidth()
Get the matrix widthLong
getTileHeight()
Get the tile heightLong
getTileWidth()
Get the tile widthLong
getToZoom()
Get the reprojected new zoom levellong
getZoom()
Get the zoom levelboolean
hasMatrixHeight()
Has matrix height valueboolean
hasMatrixWidth()
Has matrix width valueboolean
hasTileHeight()
Has tile height valueboolean
hasTileWidth()
Has tile width valueboolean
hasToZoom()
Has to zoom level valuevoid
setMatrixHeight(Long matrixHeight)
Set the matrix heightvoid
setMatrixWidth(Long matrixWidth)
Set the matrix widthvoid
setTileHeight(Long tileHeight)
Set the tile heightvoid
setTileWidth(Long tileWidth)
Set the tile widthvoid
setToZoom(Long toZoom)
Set the reprojected new zoom level
-
-
-
Method Detail
-
getZoom
public long getZoom()
Get the zoom level- Returns:
- zoom level
-
getToZoom
public Long getToZoom()
Get the reprojected new zoom level- Returns:
- to zoom
-
hasToZoom
public boolean hasToZoom()
Has to zoom level value- Returns:
- true if has value
-
setToZoom
public void setToZoom(Long toZoom)
Set the reprojected new zoom level- Parameters:
toZoom
- to zoom
-
getMatrixWidth
public Long getMatrixWidth()
Get the matrix width- Returns:
- matrix width
-
hasMatrixWidth
public boolean hasMatrixWidth()
Has matrix width value- Returns:
- true if has value
-
setMatrixWidth
public void setMatrixWidth(Long matrixWidth)
Set the matrix width- Parameters:
matrixWidth
- matrix width
-
getMatrixHeight
public Long getMatrixHeight()
Get the matrix height- Returns:
- matrix height
-
hasMatrixHeight
public boolean hasMatrixHeight()
Has matrix height value- Returns:
- true if has value
-
setMatrixHeight
public void setMatrixHeight(Long matrixHeight)
Set the matrix height- Parameters:
matrixHeight
- matrix height
-
getTileWidth
public Long getTileWidth()
Get the tile width- Returns:
- tile width
-
hasTileWidth
public boolean hasTileWidth()
Has tile width value- Returns:
- true if has value
-
setTileWidth
public void setTileWidth(Long tileWidth)
Set the tile width- Parameters:
tileWidth
- tile width
-
getTileHeight
public Long getTileHeight()
Get the tile height- Returns:
- tile height
-
hasTileHeight
public boolean hasTileHeight()
Has tile height value- Returns:
- true if has value
-
setTileHeight
public void setTileHeight(Long tileHeight)
Set the tile height- Parameters:
tileHeight
- tile height
-
-