QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
Public Slots | Signals | Public Member Functions | Protected Member Functions | Properties | List of all members
QgsQuickMapCanvasMap Class Reference

This class implements a visual Qt Quick Item that does map rendering according to the current map settings. More...

#include <qgsquickmapcanvasmap.h>

Inheritance diagram for QgsQuickMapCanvasMap:
Inheritance graph
[legend]

Public Slots

void clearCache ()
 Clears rendering cache. More...
 
void pan (QPointF oldPos, QPointF newPos)
 Set map setting's extent (pan the map) based on the difference of positions. More...
 
void refresh ()
 Refresh the map canvas. More...
 
void stopRendering ()
 Stop map rendering. More...
 
void zoom (QPointF center, qreal scale)
 Set map setting's extent (zoom the map) on the center by given scale. More...
 

Signals

void freezeChanged ()
 When freeze property is set to true, the map canvas does not refresh. More...
 
void incrementalRenderingChanged ()
 When the incrementalRendering property is set to true, the automatic refresh of map canvas during rendering is allowed. More...
 
void isRenderingChanged ()
 The isRendering property is set to true while a rendering job is pending for this map canvas map. More...
 
void mapCanvasRefreshed ()
 Signal is emitted when a canvas is refreshed. More...
 
void mapUpdateIntervalChanged ()
 Interval in milliseconds after which the map canvas will be updated while a rendering job is ongoing. More...
 
void renderStarting ()
 Signal is emitted when a rendering is starting. More...
 

Public Member Functions

 QgsQuickMapCanvasMap (QQuickItem *parent=nullptr)
 Create map canvas map. More...
 
 ~QgsQuickMapCanvasMap ()
 
bool freeze () const
 When freeze property is set to true, the map canvas does not refresh. More...
 
bool incrementalRendering () const
 When the incrementalRendering property is set to true, the automatic refresh of map canvas during rendering is allowed. More...
 
bool isRendering () const
 The isRendering property is set to true while a rendering job is pending for this map canvas map. More...
 
QgsQuickMapSettingsmapSettings () const
 The mapSettings property contains configuration for rendering of the map. More...
 
int mapUpdateInterval () const
 Interval in milliseconds after which the map canvas will be updated while a rendering job is ongoing. More...
 
void setFreeze (bool freeze)
 When freeze property is set to true, the map canvas does not refresh. More...
 
void setIncrementalRendering (bool incrementalRendering)
 When the incrementalRendering property is set to true, the automatic refresh of map canvas during rendering is allowed. More...
 
void setMapUpdateInterval (int mapUpdateInterval)
 Interval in milliseconds after which the map canvas will be updated while a rendering job is ongoing. More...
 
QSGNode * updatePaintNode (QSGNode *oldNode, QQuickItem::UpdatePaintNodeData *) override
 

Protected Member Functions

void geometryChange (const QRectF &newGeometry, const QRectF &oldGeometry) override
 

Properties

bool freeze
 When freeze property is set to true, the map canvas does not refresh. More...
 
bool incrementalRendering
 When the incrementalRendering property is set to true, the automatic refresh of map canvas during rendering is allowed. More...
 
bool isRendering
 The isRendering property is set to true while a rendering job is pending for this map canvas map. More...
 
QgsQuickMapSettingsmapSettings
 The mapSettings property contains configuration for rendering of the map. More...
 
int mapUpdateInterval
 Interval in milliseconds after which the map canvas will be updated while a rendering job is ongoing. More...
 

Detailed Description

This class implements a visual Qt Quick Item that does map rendering according to the current map settings.

Client code is expected to use MapCanvas item rather than using this class directly.

QgsQuickMapCanvasMap instance internally creates QgsQuickMapSettings in constructor. The QgsProject should be attached to the QgsQuickMapSettings. The map settings for other QgsQuick components should be initialized from QgsQuickMapCanvasMap's mapSettings

Note
QML Type: MapCanvasMap
See also
QgsQuickMapCanvas
Since
QGIS 3.2

Definition at line 52 of file qgsquickmapcanvasmap.h.

Constructor & Destructor Documentation

◆ QgsQuickMapCanvasMap()

QgsQuickMapCanvasMap::QgsQuickMapCanvasMap ( QQuickItem *  parent = nullptr)
explicit

Create map canvas map.

Definition at line 39 of file qgsquickmapcanvasmap.cpp.

◆ ~QgsQuickMapCanvasMap()

QgsQuickMapCanvasMap::~QgsQuickMapCanvasMap ( )
default

Member Function Documentation

◆ clearCache

void QgsQuickMapCanvasMap::clearCache ( )
slot

Clears rendering cache.

Definition at line 503 of file qgsquickmapcanvasmap.cpp.

◆ freeze()

bool QgsQuickMapCanvasMap::freeze ( ) const

When freeze property is set to true, the map canvas does not refresh.

The value temporary changes during the rendering process.

Definition at line 341 of file qgsquickmapcanvasmap.cpp.

◆ freezeChanged

void QgsQuickMapCanvasMap::freezeChanged ( )
signal

When freeze property is set to true, the map canvas does not refresh.

The value temporary changes during the rendering process.

◆ geometryChange()

void QgsQuickMapCanvasMap::geometryChange ( const QRectF &  newGeometry,
const QRectF &  oldGeometry 
)
overrideprotected

Definition at line 417 of file qgsquickmapcanvasmap.cpp.

◆ incrementalRendering()

bool QgsQuickMapCanvasMap::incrementalRendering ( ) const

When the incrementalRendering property is set to true, the automatic refresh of map canvas during rendering is allowed.

Definition at line 327 of file qgsquickmapcanvasmap.cpp.

◆ incrementalRenderingChanged

void QgsQuickMapCanvasMap::incrementalRenderingChanged ( )
signal

When the incrementalRendering property is set to true, the automatic refresh of map canvas during rendering is allowed.

◆ isRendering()

bool QgsQuickMapCanvasMap::isRendering ( ) const

The isRendering property is set to true while a rendering job is pending for this map canvas map.

It can be used to show a notification icon about an ongoing rendering job. This is a readonly property.

Definition at line 361 of file qgsquickmapcanvasmap.cpp.

◆ isRenderingChanged

void QgsQuickMapCanvasMap::isRenderingChanged ( )
signal

The isRendering property is set to true while a rendering job is pending for this map canvas map.

It can be used to show a notification icon about an ongoing rendering job. This is a readonly property.

◆ mapCanvasRefreshed

void QgsQuickMapCanvasMap::mapCanvasRefreshed ( )
signal

Signal is emitted when a canvas is refreshed.

◆ mapSettings()

QgsQuickMapSettings * QgsQuickMapCanvasMap::mapSettings ( ) const

The mapSettings property contains configuration for rendering of the map.

It should be used as a primary source of map settings (and project) for all other components in the application.

This is a readonly property.

Definition at line 65 of file qgsquickmapcanvasmap.cpp.

◆ mapUpdateInterval()

int QgsQuickMapCanvasMap::mapUpdateInterval ( ) const

Interval in milliseconds after which the map canvas will be updated while a rendering job is ongoing.

This only has an effect if incrementalRendering is activated. Default is 250 [ms].

Definition at line 312 of file qgsquickmapcanvasmap.cpp.

◆ mapUpdateIntervalChanged

void QgsQuickMapCanvasMap::mapUpdateIntervalChanged ( )
signal

Interval in milliseconds after which the map canvas will be updated while a rendering job is ongoing.

This only has an effect if incrementalRendering is activated. Default is 250 [ms].

◆ pan

void QgsQuickMapCanvasMap::pan ( QPointF  oldPos,
QPointF  newPos 
)
slot

Set map setting's extent (pan the map) based on the difference of positions.

Definition at line 84 of file qgsquickmapcanvasmap.cpp.

◆ refresh

void QgsQuickMapCanvasMap::refresh ( )
slot

Refresh the map canvas.

Does nothing when output size of map settings is not set

Definition at line 494 of file qgsquickmapcanvasmap.cpp.

◆ renderStarting

void QgsQuickMapCanvasMap::renderStarting ( )
signal

Signal is emitted when a rendering is starting.

◆ setFreeze()

void QgsQuickMapCanvasMap::setFreeze ( bool  freeze)

When freeze property is set to true, the map canvas does not refresh.

The value temporary changes during the rendering process.

Definition at line 346 of file qgsquickmapcanvasmap.cpp.

◆ setIncrementalRendering()

void QgsQuickMapCanvasMap::setIncrementalRendering ( bool  incrementalRendering)

When the incrementalRendering property is set to true, the automatic refresh of map canvas during rendering is allowed.

Definition at line 332 of file qgsquickmapcanvasmap.cpp.

◆ setMapUpdateInterval()

void QgsQuickMapCanvasMap::setMapUpdateInterval ( int  mapUpdateInterval)

Interval in milliseconds after which the map canvas will be updated while a rendering job is ongoing.

This only has an effect if incrementalRendering is activated. Default is 250 [ms].

Definition at line 317 of file qgsquickmapcanvasmap.cpp.

◆ stopRendering

void QgsQuickMapCanvasMap::stopRendering ( )
slot

Stop map rendering.

Definition at line 454 of file qgsquickmapcanvasmap.cpp.

◆ updatePaintNode()

QSGNode * QgsQuickMapCanvasMap::updatePaintNode ( QSGNode *  oldNode,
QQuickItem::UpdatePaintNodeData *   
)
override

Definition at line 366 of file qgsquickmapcanvasmap.cpp.

◆ zoom

void QgsQuickMapCanvasMap::zoom ( QPointF  center,
qreal  scale 
)
slot

Set map setting's extent (zoom the map) on the center by given scale.

Definition at line 70 of file qgsquickmapcanvasmap.cpp.

Property Documentation

◆ freeze

bool QgsQuickMapCanvasMap::freeze
readwrite

When freeze property is set to true, the map canvas does not refresh.

The value temporary changes during the rendering process.

Definition at line 52 of file qgsquickmapcanvasmap.h.

◆ incrementalRendering

bool QgsQuickMapCanvasMap::incrementalRendering
readwrite

When the incrementalRendering property is set to true, the automatic refresh of map canvas during rendering is allowed.

Definition at line 52 of file qgsquickmapcanvasmap.h.

◆ isRendering

bool QgsQuickMapCanvasMap::isRendering
read

The isRendering property is set to true while a rendering job is pending for this map canvas map.

It can be used to show a notification icon about an ongoing rendering job. This is a readonly property.

Definition at line 52 of file qgsquickmapcanvasmap.h.

◆ mapSettings

QgsQuickMapSettings * QgsQuickMapCanvasMap::mapSettings
read

The mapSettings property contains configuration for rendering of the map.

It should be used as a primary source of map settings (and project) for all other components in the application.

This is a readonly property.

Definition at line 52 of file qgsquickmapcanvasmap.h.

◆ mapUpdateInterval

int QgsQuickMapCanvasMap::mapUpdateInterval
readwrite

Interval in milliseconds after which the map canvas will be updated while a rendering job is ongoing.

This only has an effect if incrementalRendering is activated. Default is 250 [ms].

Definition at line 52 of file qgsquickmapcanvasmap.h.


The documentation for this class was generated from the following files: