A key used to identify specific tiles in a tile cache or service. More...
Header: | #include <TileKey.h> |
Since: | Esri::ArcGISRuntime 100.0 |
This class was introduced in Esri::ArcGISRuntime 100.0.
Public Functions
TileKey(Esri::ArcGISRuntime::TileKey &&other) | |
TileKey(const Esri::ArcGISRuntime::TileKey &other) | |
TileKey(int level, int column, int row) | |
TileKey() | |
Esri::ArcGISRuntime::TileKey & | operator=(Esri::ArcGISRuntime::TileKey &&other) |
Esri::ArcGISRuntime::TileKey & | operator=(const Esri::ArcGISRuntime::TileKey &other) |
~TileKey() | |
int | column() const |
int | level() const |
int | row() const |
Detailed Description
Contains tile row, column, and level.
Member Function Documentation
TileKey::TileKey (Esri::ArcGISRuntime::TileKey &&other)
Move constructor from other TileKey.
TileKey::TileKey (const Esri::ArcGISRuntime::TileKey &other)
Copy constructor from other TileKey.
TileKey::TileKey (int level, int column, int row)
Constructor that accepts all properties.
- level - The tile level.
- column - The column.
- row - The row.
TileKey::TileKey ()
Default constructor.
Esri::ArcGISRuntime::TileKey &TileKey::operator=(Esri::ArcGISRuntime::TileKey &&other)
Move operator from other TileKey.
Esri::ArcGISRuntime::TileKey &TileKey::operator=(const Esri::ArcGISRuntime::TileKey &other)
Assignment operator from other TileKey.
TileKey::~TileKey ()
Destructor.
int TileKey::column() const
Returns the tile's column.
int TileKey::level() const
Returns the tile's level.
int TileKey::row() const
Returns the tile's row.