Class WMTSTileSource.TileMatrixSet
- java.lang.Object
-
- org.openstreetmap.josm.data.imagery.WMTSTileSource.TileMatrixSet
-
- Enclosing class:
- WMTSTileSource
public static class WMTSTileSource.TileMatrixSet extends java.lang.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 java.lang.Stringcrsprivate java.lang.Stringidentifierprivate java.util.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 java.lang.StringgetCrs()Returns projection of this tileMatrix.java.lang.StringgetIdentifier()Returns identifier of this TileMatrixSet.intgetMaxZoom()Returns tile matrix max zoom.java.lang.StringtoString()
-
-
-
Field Detail
-
tileMatrix
private final java.util.List<WMTSTileSource.TileMatrix> tileMatrix
-
crs
private final java.lang.String crs
-
identifier
private final java.lang.String identifier
-
-
Constructor Detail
-
TileMatrixSet
TileMatrixSet(WMTSTileSource.TileMatrixSet tileMatrixSet)
-
TileMatrixSet
TileMatrixSet(WMTSTileSource.TileMatrixSetBuilder builder)
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getIdentifier
public java.lang.String getIdentifier()
Returns identifier of this TileMatrixSet.- Returns:
- identifier of this TileMatrixSet
-
getCrs
public java.lang.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
-
-