Interface TileRetriever
-
- All Known Implementing Classes:
GeoPackageTileRetriever,XYZGeoPackageTileRetriever
public interface TileRetrieverInterface defining the get tile retrieval method- Since:
- 1.2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GeoPackageTilegetTile(int x, int y, int zoom)Get a tile from the x, y, and zoombooleanhasTile(int x, int y, int zoom)Check if there is a tile for the x, y, and zoom
-
-
-
Method Detail
-
hasTile
boolean hasTile(int x, int y, int zoom)Check if there is a tile for the x, y, and zoom- Parameters:
x- x coordinatey- y coordinatezoom- zoom level- Returns:
- true if a tile exists
- Since:
- 1.2.6
-
getTile
GeoPackageTile getTile(int x, int y, int zoom)
Get a tile from the x, y, and zoom- Parameters:
x- x coordinatey- y coordinatezoom- zoom level- Returns:
- tile with dimensions and bytes
-
-