QGIS API Documentation
2.18.21-Las Palmas (9fba24a)
|
This class reads the snapping properties from the current project and configures a QgsSnapper to perform the snapping. More...
#include <qgsmapcanvassnapper.h>
Public Member Functions | |
QgsMapCanvasSnapper (QgsMapCanvas *canvas) | |
Constructor. More... | |
QgsMapCanvasSnapper () | |
~QgsMapCanvasSnapper () | |
void | setMapCanvas (QgsMapCanvas *canvas) |
int | snapToBackgroundLayers (QPoint p, QList< QgsSnappingResult > &results, const QList< QgsPoint > &excludePoints=QList< QgsPoint >()) |
Snaps to the background layers. More... | |
int | snapToBackgroundLayers (const QgsPoint &point, QList< QgsSnappingResult > &results, const QList< QgsPoint > &excludePoints=QList< QgsPoint >()) |
int | snapToCurrentLayer (QPoint p, QList< QgsSnappingResult > &results, QgsSnapper::SnappingType snap_to, double snappingTol=-1, const QList< QgsPoint > &excludePoints=QList< QgsPoint >(), bool allResutInTolerance=false) |
Does a snap to the current layer. More... | |
This class reads the snapping properties from the current project and configures a QgsSnapper to perform the snapping.
Snapping can be done to the active layer (useful for selecting a vertex to manipulate) or to background layers
Definition at line 33 of file qgsmapcanvassnapper.h.
QgsMapCanvasSnapper::QgsMapCanvasSnapper | ( | QgsMapCanvas * | canvas | ) |
Constructor.
canvas | the map canvas to snap to |
Definition at line 29 of file qgsmapcanvassnapper.cpp.
QgsMapCanvasSnapper::QgsMapCanvasSnapper | ( | ) |
Definition at line 39 of file qgsmapcanvassnapper.cpp.
QgsMapCanvasSnapper::~QgsMapCanvasSnapper | ( | ) |
Definition at line 43 of file qgsmapcanvassnapper.cpp.
void QgsMapCanvasSnapper::setMapCanvas | ( | QgsMapCanvas * | canvas | ) |
Definition at line 48 of file qgsmapcanvassnapper.cpp.
int QgsMapCanvasSnapper::snapToBackgroundLayers | ( | QPoint | p, |
QList< QgsSnappingResult > & | results, | ||
const QList< QgsPoint > & | excludePoints = QList<QgsPoint>() |
||
) |
Snaps to the background layers.
This method is useful to align the features of the edited layers to those of other layers (as described in the project properties). Uses snap mode QgsSnapper::SnapWithOneResult. Therefore, only the closest result is returned.
p | start point of the snap (in pixel coordinates) |
results | snapped points |
excludePoints | a list with (map coordinate) points that should be excluded in the snapping result. Useful e.g. for vertex moves where a vertex should not be snapped to its original position |
Definition at line 123 of file qgsmapcanvassnapper.cpp.
int QgsMapCanvasSnapper::snapToBackgroundLayers | ( | const QgsPoint & | point, |
QList< QgsSnappingResult > & | results, | ||
const QList< QgsPoint > & | excludePoints = QList<QgsPoint>() |
||
) |
Definition at line 129 of file qgsmapcanvassnapper.cpp.
int QgsMapCanvasSnapper::snapToCurrentLayer | ( | QPoint | p, |
QList< QgsSnappingResult > & | results, | ||
QgsSnapper::SnappingType | snap_to, | ||
double | snappingTol = -1 , |
||
const QList< QgsPoint > & | excludePoints = QList<QgsPoint>() , |
||
bool | allResutInTolerance = false |
||
) |
Does a snap to the current layer.
Uses snap mode QgsSnapper::SnapWithResultsForSamePosition if topological editing is enabled and QgsSnapper::SnapWithOneResult_BY_SEGMENT if not. As this method is usually used to find vertices/segments for editing operations, it uses the search radius for vertex editing from the qgis options.
p | start point of the snap (in pixel coordinates) |
results | list to which the results are appended |
snap_to | snap to vertex or to segment |
snappingTol | snapping tolerance. -1 means that the search radius for vertex edits is taken |
excludePoints | a list with (map coordinate) points that should be excluded in the snapping result. Useful e.g. for vertex moves where a vertex should not be snapped to its original position |
allResutInTolerance | return all thew results in the tolerance |
Definition at line 62 of file qgsmapcanvassnapper.cpp.