QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
This class provides map rendering functionality for vector tile layers. More...
#include <qgsvectortilelayerrenderer.h>
Public Member Functions | |
QgsVectorTileLayerRenderer (QgsVectorTileLayer *layer, QgsRenderContext &context) | |
Creates the renderer. Always called from main thread, should copy whatever necessary from the layer. More... | |
virtual QgsFeedback * | feedback () const override |
Access to feedback object of the layer renderer (may be nullptr ) More... | |
bool | forceRasterRender () const override |
Returns true if the renderer must be rendered to a raster paint device (e.g. More... | |
virtual bool | render () override |
Do the rendering (based on data stored in the class). More... | |
Public Member Functions inherited from QgsMapLayerRenderer | |
QgsMapLayerRenderer (const QString &layerID, QgsRenderContext *context=nullptr) | |
Constructor for QgsMapLayerRenderer, with the associated layerID and render context. More... | |
virtual | ~QgsMapLayerRenderer ()=default |
QStringList | errors () const |
Returns list of errors (problems) that happened during the rendering. More... | |
bool | isReadyToCompose () const |
Returns whether the renderer has already drawn (at least partially) some data. More... | |
QString | layerId () const |
Gets access to the ID of the layer rendered by this class. More... | |
QgsRenderContext * | renderContext () |
Returns the render context associated with the renderer. More... | |
const QgsRenderContext * | renderContext () const |
Returns the render context associated with the renderer. More... | |
virtual void | setLayerRenderingTimeHint (int time) |
Sets approximate render time (in ms) for the layer to render. More... | |
Additional Inherited Members | |
Protected Attributes inherited from QgsMapLayerRenderer | |
QStringList | mErrors |
QString | mLayerID |
bool | mReadyToCompose = true |
The flag must be set to false in renderer's constructor if wants to use the smarter map redraws functionality https://github.com/qgis/QGIS-Enhancement-Proposals/issues/181. More... | |
Static Protected Attributes inherited from QgsMapLayerRenderer | |
static constexpr int | MAX_TIME_TO_USE_CACHED_PREVIEW_IMAGE = 3000 |
Maximum time (in ms) to allow display of a previously cached preview image while rendering layers, before switching to a progressive rendering display. More... | |
This class provides map rendering functionality for vector tile layers.
In render() function (assumed to be run in a worker thread) it will:
Definition at line 41 of file qgsvectortilelayerrenderer.h.
QgsVectorTileLayerRenderer::QgsVectorTileLayerRenderer | ( | QgsVectorTileLayer * | layer, |
QgsRenderContext & | context | ||
) |
Creates the renderer. Always called from main thread, should copy whatever necessary from the layer.
Definition at line 33 of file qgsvectortilelayerrenderer.cpp.
|
inlineoverridevirtual |
Access to feedback object of the layer renderer (may be nullptr
)
Reimplemented from QgsMapLayerRenderer.
Definition at line 48 of file qgsvectortilelayerrenderer.h.
|
overridevirtual |
Returns true
if the renderer must be rendered to a raster paint device (e.g.
QImage).
Some layer settings require layers to be effectively "flattened" while rendering maps, which is achieved by first rendering the layer onto a raster paint device and then compositing the resultant image onto the final map render.
E.g. if a layer contains features with transparency or alternative blending modes, and the effects of these opacity or blending modes should be restricted to only affect other features within the SAME layer, then a flattened raster based render is required.
Subclasses should return true
whenever their corresponding layer settings require the layer to always be rendered using a raster paint device.
Reimplemented from QgsMapLayerRenderer.
Definition at line 196 of file qgsvectortilelayerrenderer.cpp.
|
overridevirtual |
Do the rendering (based on data stored in the class).
Returns true
if the layer was completely rendered successfully (i.e. the render was not canceled early).
Implements QgsMapLayerRenderer.
Definition at line 65 of file qgsvectortilelayerrenderer.cpp.