Class WMTSTileSource.TileMatrixSet
- java.lang.Object
-
- org.openstreetmap.josm.data.imagery.WMTSTileSource.TileMatrixSet
-
- Enclosing class:
- WMTSTileSource
public static class WMTSTileSource.TileMatrixSet extends Object
class representing WMTS TileMatrixSet This connects projection and TileMatrix (how the map is divided in tiles)- Since:
- 13733
-
-
Field Summary
Fields Modifier and Type Field Description private String
crs
private String
identifier
private List<WMTSTileSource.TileMatrix>
tileMatrix
-
Constructor Summary
Constructors Constructor Description TileMatrixSet(WMTSTileSource.TileMatrixSet tileMatrixSet)
TileMatrixSet(WMTSTileSource.TileMatrixSetBuilder builder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCrs()
Returns projection of this tileMatrix.String
getIdentifier()
Returns identifier of this TileMatrixSet.int
getMaxZoom()
Returns tile matrix max zoom.String
toString()
-
-
-
Field Detail
-
tileMatrix
private final List<WMTSTileSource.TileMatrix> tileMatrix
-
identifier
private final String identifier
-
-
Constructor Detail
-
TileMatrixSet
TileMatrixSet(WMTSTileSource.TileMatrixSet tileMatrixSet)
-
TileMatrixSet
TileMatrixSet(WMTSTileSource.TileMatrixSetBuilder builder)
-
-
Method Detail
-
getIdentifier
public String getIdentifier()
Returns identifier of this TileMatrixSet.- Returns:
- identifier of this TileMatrixSet
-
getCrs
public String getCrs()
Returns projection of this tileMatrix.- Returns:
- projection of this tileMatrix
-
getMaxZoom
public int getMaxZoom()
Returns tile matrix max zoom. Assumes first zoom starts at 0, with continuous zoom levels.- Returns:
- tile matrix max zoom
- Since:
- 15409
-
-