22 , mDisplayName( displayName )
24 , mGeocoder( geocoder )
25 , mBoundingBox( boundingBox )
51 const QList< QgsGeocoderResult > results = mGeocoder->
geocodeString(
string, geocodeContext, feedback );
54 if ( result.isValid() )
57 emit resultFetched( locatorRes );
65 handleGeocodeResult( geocodeResult );
75 const QVariantMap attrs = result.
userData.toMap();
76 QgsGeocoderResult geocodeResult( attrs.value( QStringLiteral(
"identifier" ) ).toString(),
77 attrs.value( QStringLiteral(
"geom" ) ).value< QgsGeometry >(),
78 attrs.value( QStringLiteral(
"crs" ) ).value< QgsCoordinateReferenceSystem >() );
80 geocodeResult.
setViewport( attrs.value( QStringLiteral(
"viewport" ) ).value< QgsRectangle >() );
89 attrs.insert( QStringLiteral(
"identifier" ), result.
identifier() );
90 attrs.insert( QStringLiteral(
"geom" ), result.
geometry() );
91 attrs.insert( QStringLiteral(
"viewport" ), result.
viewport() );
92 attrs.insert( QStringLiteral(
"crs" ), result.
crs() );
void fetchResults(const QString &string, const QgsLocatorContext &context, QgsFeedback *feedback) override
QgsAbstractGeocoderLocatorFilter(const QString &name, const QString &displayName, const QString &prefix, QgsGeocoderInterface *geocoder, const QgsRectangle &boundingBox=QgsRectangle())
Constructor for QgsAbstractGeocoderLocatorFilter.
void triggerResult(const QgsLocatorResult &result) override
QString displayName() const override
QgsGeocoderInterface * geocoder() const
Returns the geocoder attached to the filter.
QString prefix() const override
QString name() const override
QgsGeocoderResult locatorResultToGeocoderResult(const QgsLocatorResult &result) const
Converts a locator result to a geocoder result.
QgsLocatorResult geocoderResultToLocatorResult(const QgsGeocoderResult &result)
Converts a geocoder result to a locator result.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Encapsulates the context of a geocoding operation.
void setAreaOfInterestCrs(const QgsCoordinateReferenceSystem &crs)
Sets the crs for the area of interest, which can be used to indicate the desired geographic area wher...
void setAreaOfInterest(const QgsGeometry &area)
Sets the optional area of interest, which can be used to indicate the desired geographic area where g...
virtual QList< QgsGeocoderResult > geocodeString(const QString &string, const QgsGeocoderContext &context, QgsFeedback *feedback=nullptr) const
Geocodes a string.
Represents a matching result from a geocoder search.
QString description() const
Returns the optional description for the result.
void setAdditionalAttributes(const QVariantMap &attributes)
Setss additional attributes generated during the geocode, which may be added to features being geocod...
QString group() const
Returns the optional group value for the result.
QString identifier() const
Returns the identifier string for the result.
QgsRectangle viewport() const
Returns the suggested viewport for the result, which reflects a recommended map extent for displaying...
void setDescription(const QString &description)
Sets an optional description for the result.
QgsCoordinateReferenceSystem crs() const
Returns the coordinate reference system for the calculated geometry().
void setGroup(const QString &group)
Sets the optional group value for the result.
void setViewport(const QgsRectangle &viewport)
Sets the suggested viewport for the result, which reflects a recommended map extent for displaying th...
QgsGeometry geometry() const
Returns the resultant geometry resulting from the geocoding operation.
QVariantMap additionalAttributes() const
Contains additional attributes generated during the geocode, which may be added to features being geo...
static QgsGeometry fromRect(const QgsRectangle &rect) SIP_HOLDGIL
Creates a new geometry from a QgsRectangle.
Encapsulates the properties relating to the context of a locator search.
QgsCoordinateTransformContext transformContext
Coordinate transform context, to use whenever performing coordinate transformations inside a locator.
QgsCoordinateReferenceSystem targetExtentCrs
Coordinate reference system for the map extent variable.
QgsRectangle targetExtent
Map extent to target in results.
Encapsulates properties of an individual matching result found by a QgsLocatorFilter.
QVariant userData
Custom reference or other data set by the filter.
QString description
Descriptive text for result.
QString group
Group the results by categories If left as empty string, this means that results are all shown withou...
A rectangle specified with double values.