Skip to content

Commit

Permalink
Merge pull request #38002 from mhugent/wfs_bbox_exact_intersect
Browse files Browse the repository at this point in the history
WFS server: use exact intersection if there is a bbox parameter
  • Loading branch information
mhugent committed Jul 28, 2020
2 parents ff38315 + aee09d5 commit 74838df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/services/wfs/qgswfsgetfeature.cpp
Expand Up @@ -767,7 +767,7 @@ namespace QgsWfs
for ( ; qIt != request.queries.end(); ++qIt )
{
getFeatureQuery &query = *qIt;
query.featureRequest.setFilterRect( extent );
query.featureRequest.setFilterRect( extent ).setFlags( query.featureRequest.flags() | QgsFeatureRequest::ExactIntersect );
}
return request;
}
Expand Down

0 comments on commit 74838df

Please sign in to comment.