added keeping zoom level

This commit is contained in:
Sem van der Hoeven
2021-01-06 16:56:57 +01:00
parent fb2f7e8a66
commit 7c9dc07c3d
2 changed files with 21 additions and 2 deletions

View File

@@ -12,6 +12,15 @@ public enum StaticData {
private double distanceTraveled = 0;
private int locationsVisited = 0;
private long timeWalkedRoute = 0;
private double zoom = 0;
public double getZoom() {
return zoom;
}
public void setZoom(double zoom) {
this.zoom = zoom;
}
private ArrayList<String> visitedNames = new ArrayList<>();