Class TileKey


  • public final class TileKey
    extends Object
    Represents a key that uniquely identifies a tile. For example, a tile in a ServiceImageTiledLayer.
    Since:
    100.1.0
    • Constructor Detail

      • TileKey

        public TileKey​(int level,
                       int column,
                       int row)
        Creates a new TileKey.
        Parameters:
        level - tile level
        column - tile column
        row - 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