public class TileMatrixSet
extends java.lang.Object
implements java.io.Serializable
The tile matrix set, which contains multiple tile matrix (TileMatrix
) information.
WMTS uses the tile matrix set (Tile matrix set) to represent the cached map.
Modifier and Type | Field and Description |
---|---|
java.lang.Double |
dpi
The dpi specified in the WMTS standard is 90.7142857142857, that is, 1 pixel represents 0.28 mm.
|
java.lang.String |
identifier
The name of the tile matrix set.
|
java.util.List<TileMatrix> |
matrixList
The tile matrix is used to avoid the incorrect number of tiles.
|
java.lang.String |
scales
The scale information of the scale set.
|
java.lang.String |
supportedCRS
Supported coordinate system.
|
java.lang.Integer |
tileHeight
The height of the tile, the default value is 256.
|
java.util.List<TileMatrix> |
tileMatrixs
The tile matrix list contained in the collection.
|
java.lang.Integer |
tileWidth
The width of the tile, the default value is 256.
|
java.lang.String |
wellKnownScaleSet
General scale set.
|
Constructor and Description |
---|
TileMatrixSet()
The Constructor.
|
TileMatrixSet(java.lang.String wellKnownScaleSet)
The Constructor.
|
TileMatrixSet(java.lang.String identifier, java.lang.String wellKnownScaleSet, java.util.List<TileMatrix> tileMatrixs, java.lang.String scales, java.lang.Double dpi, java.lang.Integer tileWidth, java.lang.Integer tileHeight, java.util.List<TileMatrix> matrixList)
The Constructor.
|
TileMatrixSet(TileMatrixSet tileMatrixSet)
The Constructor.
|
public java.lang.String identifier
The name of the tile matrix set.
public java.lang.String supportedCRS
Supported coordinate system. Each tile matrix corresponds to 1 supported coordinate system.
public java.util.List<TileMatrix> tileMatrixs
The tile matrix list contained in the collection.
public java.lang.String wellKnownScaleSet
General scale set. Each tile matrix corresponds to 1 or 0 general scale sets.
public java.lang.String scales
The scale information of the scale set.
public java.lang.Double dpi
The dpi specified in the WMTS standard is 90.7142857142857, that is, 1 pixel represents 0.28 mm.
public java.lang.Integer tileWidth
The width of the tile, the default value is 256.
public java.lang.Integer tileHeight
The height of the tile, the default value is 256.
public java.util.List<TileMatrix> matrixList
The tile matrix is used to avoid the incorrect number of tiles.
public TileMatrixSet()
The Constructor.
public TileMatrixSet(java.lang.String identifier, java.lang.String wellKnownScaleSet, java.util.List<TileMatrix> tileMatrixs, java.lang.String scales, java.lang.Double dpi, java.lang.Integer tileWidth, java.lang.Integer tileHeight, java.util.List<TileMatrix> matrixList)
The Constructor.
name
-scales
-customEntireBounds
-dpi
-tileWidth
-tileHeight
-matrixList
-public TileMatrixSet(java.lang.String wellKnownScaleSet)
The Constructor.
wellKnownScaleSet
-public TileMatrixSet(TileMatrixSet tileMatrixSet)
The Constructor.
tileMatrixSet
-public final boolean equals(java.lang.Object obj)
Compare whether the specified TileMatrixSet object is the same with the object.
equals
in class java.lang.Object
obj
- the TileMatrixSet object to comparepublic final int hashCode()
Gets the hash value of the object instance
hashCode
in class java.lang.Object