QGIS API Documentation
3.16.0-Hannover (43b64b13f3)
|
Go to the documentation of this file.
31 QgsPointXY ptMapCenterRightMU( ptMapCenterMU.
x() + distMU, ptMapCenterMU.
y() );
34 double distLU = std::sqrt( ptMapCenterLU.
sqrDist( ptMapCenterRightLU ) );
35 double ratio = distMU / distLU;
44 else if ( units ==
Pixels )
49 return tolerance *
_ratioMU2LU( mapSettings, layer );
61 else if ( units ==
Pixels )
63 double layerUnitsPerPixel = computeMapUnitPerPixel( layer, mapSettings );
64 return tolerance * layerUnitsPerPixel;
69 return tolerance /
_ratioMU2LU( mapSettings, layer );
76 double tolerance = settings.
value( QStringLiteral(
"qgis/digitizing/search_radius_vertex_edit" ), 10 ).toDouble();
86 double tolerance = settings.
value( QStringLiteral(
"qgis/digitizing/search_radius_vertex_edit" ), 10 ).toDouble();
105 QgsPointXY p1 = toLayerCoordinates( layer, mapSettings, QPoint( 0, 1 ) );
106 QgsPointXY p2 = toLayerCoordinates( layer, mapSettings, QPoint( 0, 2 ) );
107 QgsPointXY p3 = toLayerCoordinates( layer, mapSettings, QPoint( 1, 0 ) );
108 QgsPointXY p4 = toLayerCoordinates( layer, mapSettings, QPoint( 2, 0 ) );
113 return std::sqrt( x );
117 return std::sqrt( y );
static double defaultTolerance(QgsMapLayer *layer, const QgsMapSettings &mapSettings)
Static function to get default tolerance value for a layer.
QgsPointXY mapToLayerCoordinates(const QgsMapLayer *layer, QgsPointXY point) const
transform point coordinates from output CRS to layer's CRS
QVariant value(const QString &key, const QVariant &defaultValue=QVariant(), Section section=NoSection) const
Returns the value for setting key.
static const double DEFAULT_SNAP_TOLERANCE
Default snapping distance tolerance.
QgsPointXY center() const SIP_HOLDGIL
Returns the center point of the rectangle.
double mapUnitsPerPixel() const
Returns the distance in geographical coordinates that equals to one pixel in the map.
@ ProjectUnits
Map (project) units. Added in 2.8.
This class is a composition of two QSettings instances:
QgsPointXY toMapCoordinates(int x, int y) const
Transform device coordinates to map (world) coordinates.
double sqrDist(double x, double y) const SIP_HOLDGIL
Returns the squared distance between this point a specified x, y coordinate.
double _ratioMU2LU(const QgsMapSettings &mapSettings, QgsMapLayer *layer)
UnitType
Type of unit of tolerance value from settings.
@ Pixels
Pixels unit of tolerance.
static double vertexSearchRadius(const QgsMapSettings &mapSettings)
Static function to get vertex tolerance value.
@ LayerUnits
Layer unit value.
A class to represent a 2D point.
static double toleranceInMapUnits(double tolerance, QgsMapLayer *layer, const QgsMapSettings &mapSettings, UnitType units=LayerUnits)
Static function to translate tolerance value into layer units.
Base class for all map layer types.
T enumValue(const QString &key, const T &defaultValue, const Section section=NoSection)
Returns the setting value for a setting based on an enum.
static double toleranceInProjectUnits(double tolerance, QgsMapLayer *layer, const QgsMapSettings &mapSettings, QgsTolerance::UnitType units)
Static function to translate tolerance value into map units.
The QgsMapSettings class contains configuration for rendering of the map.
QgsRectangle visibleExtent() const
Returns the actual extent derived from requested extent that takes takes output image size into accou...
static const QgsTolerance::UnitType DEFAULT_SNAP_UNITS
Default snapping distance units.
const QgsMapToPixel & mapToPixel() const