Class TileKey


  • public final class TileKey
    extends java.lang.Object
    Represents a key that uniquely identifies a tile. For example, a tile in a ServiceImageTiledLayer.
    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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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