added .increaseByScale(1.15f) -> see #64

master
y20k 2019-08-14 13:17:06 +02:00
parent 7402f872be
commit 488153f616
No known key found for this signature in database
GPG Key ID: 824D4259F41FAFF6
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ public final class MapHelper implements TrackbookKeys {
final GeoPoint aGeoPoint = new GeoPoint(aWayPoint.getLocation()); final GeoPoint aGeoPoint = new GeoPoint(aWayPoint.getLocation());
geoPoints.add(aGeoPoint); geoPoints.add(aGeoPoint);
} }
return BoundingBox.fromGeoPoints(geoPoints); return BoundingBox.fromGeoPoints(geoPoints).increaseByScale(1.15f);
} }