TileKey (API Reference)
Package com.here.sdk.mapview.datasource
Class TileKey
java.lang.Object
com.here.sdk.mapview.datasource.TileKey
Key of a data source tile. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behavior. Related APIs may change for new releases without a deprecation process.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
x
public int xX coordinate of the tile. This ranges from 0 to 2^level − 1.
-
y
public int yY coordinate of the tile. This ranges from 0 to 2^level − 1.
-
level
public int levelLevel of the tile. Supported range [0, 31].
-
-
Constructor Details
-
TileKey
public TileKey(int x, int y, int level) Creates a new instance.
- Parameters:
x-X coordinate of the tile. This ranges from 0 to 2^level − 1.
y-Y coordinate of the tile. This ranges from 0 to 2^level − 1.
level-Level of the tile. Supported range [0, 31].
-
-
Method Details