poi search: use bounding box when available

This commit is contained in:
Hannes Janetzek 2012-12-30 21:25:41 +01:00
parent df7c7200e5
commit 6c28a63cc1

View File

@ -169,13 +169,13 @@ public class BoundingBox implements Parcelable {
@Override
public String toString() {
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("BoundingBox [minLatitudeE6=");
stringBuilder.append("BoundingBox [minLat=");
stringBuilder.append(this.minLatitudeE6);
stringBuilder.append(", minLongitudeE6=");
stringBuilder.append(", minLon=");
stringBuilder.append(this.minLongitudeE6);
stringBuilder.append(", maxLatitudeE6=");
stringBuilder.append(", maxLat=");
stringBuilder.append(this.maxLatitudeE6);
stringBuilder.append(", maxLongitudeE6=");
stringBuilder.append(", maxLon=");
stringBuilder.append(this.maxLongitudeE6);
stringBuilder.append("]");
return stringBuilder.toString();