Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WFS server: use exact instersection if there is a bbox parameter
  • Loading branch information
mhugent committed Jul 28, 2020
1 parent bc96ffd commit aee09d5
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 aee09d5

Please sign in to comment.