Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/src/com/google/maps/android/geometry/Bounds.java
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public Bounds(double minX, double maxX, double minY, double maxY) {
}

public boolean contains(double x, double y) {
return minX <= x && x < maxX && minY <= y && y < maxY;
return minX <= x && x <= maxX && minY <= y && y <= maxY;
}

public boolean contains(Point point) {
Expand Down