Package com.esri.arcgisruntime.data
Class TileKey
- java.lang.Object
-
- com.esri.arcgisruntime.data.TileKey
-
public final class TileKey extends Object
Represents a key that uniquely identifies a tile. For example, a tile in aServiceImageTiledLayer
.- Since:
- 100.1.0
-
-
Constructor Summary
Constructors Constructor Description TileKey(int level, int column, int row)
Creates a new TileKey.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getColumn()
Gets the column of this tile key.int
getLevel()
Gets the level of this tile key.int
getRow()
Gets the row of this tile key.
-
-
-
Constructor Detail
-
TileKey
public TileKey(int level, int column, int row)
Creates a new TileKey.- Parameters:
level
- tile levelcolumn
- tile columnrow
- tile row- Throws:
ArcGISRuntimeException
- if level, column, or row is negative- Since:
- 100.1.0
-
-
Method Detail
-
getLevel
public int getLevel()
Gets the level of this tile key.- Returns:
- the level of this tile key
- Since:
- 100.1.0
-
getColumn
public int getColumn()
Gets the column of this tile key.- Returns:
- the column of this tile key
- Since:
- 100.1.0
-
getRow
public int getRow()
Gets the row of this tile key.- Returns:
- the row of this tile key
- Since:
- 100.1.0
-
-