Added distance from current location to opend location

This commit is contained in:
RemoMeijer
2021-01-12 12:18:21 +01:00
parent d4abd7a566
commit 0f17e8d1e5
5 changed files with 75 additions and 44 deletions

View File

@@ -11,6 +11,7 @@ public enum Data {
private int locationsVisited = 0;
private long totalTime = 0;
private double zoom = 0;
private android.location.Location location;
public double getZoom() {
return zoom;
@@ -51,4 +52,11 @@ public enum Data {
}
public android.location.Location getLocation() {
return location;
}
public void setLocation(android.location.Location location) {
this.location = location;
}
}