56 QList<QgsVectorLayer *>
layers()
const {
return mLayers; }
58 void setLayers(
const QList<QgsVectorLayer *> &layers );
87 double offset()
const {
return mOffset; }
93 void setOffset(
double offset );
100 void offsetParameters(
int &quadSegments
SIP_OUT,
int &joinStyle
SIP_OUT,
double &miterLimit
SIP_OUT );
107 void setOffsetParameters(
int quadSegments,
int joinStyle,
double miterLimit );
156 void setAddPointsOnIntersectionsEnabled(
bool enable );
175 void invalidateGraph();
184 void onAttributeValueChanged(
QgsFeatureId fid,
int idx,
const QVariant &value );
185 void onDataChanged( );
186 void onStyleChanged( );
187 void onLayerDestroyed( QObject *obj );
191 std::unique_ptr< QgsTracerGraph > mGraph;
193 QList<QgsVectorLayer *> mLayers;
199 std::unique_ptr<QgsRenderContext> mRenderContext;
203 bool mAddPointsOnIntersections =
true;
210 int mOffsetSegments = 8;
214 double mOffsetMiterLimit = 5.;
220 int mMaxFeatureCount = 0;
226 bool mHasTopologyProblem =
false;
JoinStyle
Join styles for buffers.
@ Miter
Use mitered joins.
Represents a coordinate reference system (CRS).
Contains information about the context in which a coordinate transform is executed.
Abstract base class for all 2D vector feature renderers.
A geometry is the spatial representation of a feature.
A rectangle specified with double values.
Contains information about the context of a rendering operation.
void setMaxFeatureCount(int count)
Gets maximum possible number of features in graph. If the number is exceeded, graph is not created.
bool hasTopologyProblem() const
Whether there was an error during graph creation due to noding exception, indicating some input data ...
PathError
Possible errors that may happen when calling findShortestPath().
@ ErrNoPath
Points are not connected in the graph.
@ ErrPoint2
End point cannot be joined to the graph.
@ ErrPoint1
Start point cannot be joined to the graph.
@ ErrTooManyFeatures
Max feature count threshold was reached while reading features.
QgsTracer()
Constructor for QgsTracer.
QgsRectangle extent() const
Gets extent to which graph's features will be limited (empty extent means no limit).
int maxFeatureCount() const
Gets maximum possible number of features in graph. If the number is exceeded, graph is not created.
bool addPointsOnIntersectionsEnabled() const
Returns whether the shortest path's straight segments will include vertices where the input layers in...
double offset() const
Gets offset in map units that should be applied to the traced paths returned from findShortestPath().
QgsCoordinateReferenceSystem destinationCrs() const
Returns the CRS used for tracing.
QList< QgsVectorLayer * > layers() const
Gets layers used for tracing.
virtual void configure()
Allows derived classes to setup the settings just before the tracer is initialized.
bool isInitialized() const
Whether the internal data structures have been initialized.
Represents a vector layer which manages a vector based dataset.
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features
Simple graph structure for shortest path search.