QGIS API Documentation 3.40.0-Bratislava (b56115d8743)
|
3 More...
#include <qgstilingscheme.h>
Public Member Functions | |
QgsTilingScheme ()=default | |
Creates invalid tiling scheme. | |
QgsTilingScheme (const QgsRectangle &fullExtent, const QgsCoordinateReferenceSystem &crs) | |
Creates tiling scheme where level 0 tile is centered at the full extent and the full extent completely fits into the level 0 tile. | |
QgsCoordinateReferenceSystem | crs () const |
Returns CRS of the tiling scheme. | |
void | extentToTile (const QgsRectangle &extent, int &x, int &y, int &z) const |
Returns coordinates of a tile that most tightly fits the whole extent. | |
QgsRectangle | fullExtent () const |
Returns the full extent used in the constructor, which might not be square. | |
void | mapToTile (const QgsPointXY &pt, int z, float &x, float &y) const |
Returns tile coordinates for given map coordinates and Z level. | |
QgsRectangle | tileToExtent (const QgsChunkNodeId &nodeId) const |
Returns map coordinates of the extent of a tile. | |
QgsRectangle | tileToExtent (int x, int y, int z) const |
Returns map coordinates of the extent of a tile. | |
QgsPointXY | tileToMap (int x, int y, int z) const |
Returns map coordinates at tile coordinates (for lower-left corner of the tile) | |
3
The class encapsulates tiling scheme (just like with WMTS / TMS / XYZ layers).
The origin (tile [0,0]) is in bottom-left corner.
Definition at line 36 of file qgstilingscheme.h.
|
default |
Creates invalid tiling scheme.
QgsTilingScheme::QgsTilingScheme | ( | const QgsRectangle & | fullExtent, |
const QgsCoordinateReferenceSystem & | crs | ||
) |
Creates tiling scheme where level 0 tile is centered at the full extent and the full extent completely fits into the level 0 tile.
Definition at line 21 of file qgstilingscheme.cpp.
|
inline |
Returns CRS of the tiling scheme.
Definition at line 60 of file qgstilingscheme.h.
void QgsTilingScheme::extentToTile | ( | const QgsRectangle & | extent, |
int & | x, | ||
int & | y, | ||
int & | z | ||
) | const |
Returns coordinates of a tile that most tightly fits the whole extent.
Definition at line 56 of file qgstilingscheme.cpp.
|
inline |
Returns the full extent used in the constructor, which might not be square.
Level 0 tile is centered at the full extent and the full extent completely fits into the level 0 tile
Definition at line 67 of file qgstilingscheme.h.
void QgsTilingScheme::mapToTile | ( | const QgsPointXY & | pt, |
int | z, | ||
float & | x, | ||
float & | y | ||
) | const |
Returns tile coordinates for given map coordinates and Z level.
Definition at line 37 of file qgstilingscheme.cpp.
QgsRectangle QgsTilingScheme::tileToExtent | ( | const QgsChunkNodeId & | nodeId | ) | const |
Returns map coordinates of the extent of a tile.
Definition at line 51 of file qgstilingscheme.cpp.
QgsRectangle QgsTilingScheme::tileToExtent | ( | int | x, |
int | y, | ||
int | z | ||
) | const |
Returns map coordinates of the extent of a tile.
Definition at line 44 of file qgstilingscheme.cpp.
QgsPointXY QgsTilingScheme::tileToMap | ( | int | x, |
int | y, | ||
int | z | ||
) | const |
Returns map coordinates at tile coordinates (for lower-left corner of the tile)
Definition at line 29 of file qgstilingscheme.cpp.