Package com.esri.arcgisruntime.ogc.wmts
Class WmtsLayerInfo
- java.lang.Object
-
- com.esri.arcgisruntime.ogc.wmts.WmtsLayerInfo
-
public final class WmtsLayerInfo extends Object
Represents metadata about an individual layer in a Web Map Tile Service (WMTS).- Since:
- 100.1.0
- See Also:
WmtsServiceInfo
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Gets the description of this layer.StringgetId()Gets the ID of this layer.List<TileInfo.ImageFormat>getImageFormats()Gets the supported image formats of the tiles.List<String>getKeywords()Gets the list of zero or more commonly used or formalized words or phrases used to describe this layer.List<String>getStyles()Gets the styles applied to this layer.List<WmtsTileMatrixSet>getTileMatrixSets()Gets the tile matrix sets.StringgetTitle()Gets the title.
-
-
-
Method Detail
-
getDescription
public String getDescription()
Gets the description of this layer.- Returns:
- the description of this layer
- Since:
- 100.1.0
-
getImageFormats
public List<TileInfo.ImageFormat> getImageFormats()
Gets the supported image formats of the tiles.The returned collection of image formats supported by the WMTS service is of type
TileInfo.ImageFormat.- Returns:
- an unmodifiable list of supported image formats of the tiles
- Since:
- 100.1.0
-
getId
public String getId()
Gets the ID of this layer.- Returns:
- the ID of this layer
- Since:
- 100.1.0
-
getKeywords
public List<String> getKeywords()
Gets the list of zero or more commonly used or formalized words or phrases used to describe this layer.- Returns:
- an unmodifiable list of keywords
- Since:
- 100.1.0
-
getStyles
public List<String> getStyles()
Gets the styles applied to this layer.- Returns:
- an unmodifiable list of styles
- Since:
- 100.1.0
-
getTileMatrixSets
public List<WmtsTileMatrixSet> getTileMatrixSets()
Gets the tile matrix sets. Every set represents a series of tile matrices and some common parameters. This controls the tiles that are available for this layer.- Returns:
- an unmodifiable list of tile matrix sets
- Since:
- 100.1.0
-
getTitle
public String getTitle()
Gets the title.- Returns:
- the title
- Since:
- 100.1.0
-
-