Skip to content

Commit

Permalink
pixel bounds fine filter area check
Browse files Browse the repository at this point in the history
  • Loading branch information
bosborn committed Apr 15, 2022
1 parent fe35dd8 commit 90060f5
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,9 @@ private Boolean fineFilterStyle(FeatureRow featureRow, Geometry geometry, Google
} else if (point.getY() > clickLocation.latitude) {
pixelBounds.setDown(0);
}
if (pixelBounds.getArea() == 0) {
pixelBounds = null;
}
}

// Get the map click distance tolerance
Expand Down

0 comments on commit 90060f5

Please sign in to comment.