diff --git a/src/Map.java b/src/Map.java index 82489d5..a2a1995 100644 --- a/src/Map.java +++ b/src/Map.java @@ -1,31 +1,37 @@ import java.util.*; public class Map { - private MapLatitude mapLatitude; - private Latitude latitude; - private MapLongitude mapLongitude; private Longitude longitude; + private Latitude latitude; + private MapLatitude mapLatitude; + private MapLongitude mapLongitude; private Presenter presenter; public Map() { - this.mapLatitude = new MapLatitude(); - this.latitude = new Latitude(); - this.mapLongitude = new MapLongitude(); this.longitude = new Longitude(); - this.presenter = new Presenter(longitude, latitude, mapLongitude, mapLatitude); - } - public double getMapLatitude() { - return mapLatitude.getValue(); - } - public double getLatitude() { - return latitude.getValue(); - } - public double getMapLongitude() { - return mapLongitude.getValue(); + this.latitude = new Latitude(); + this.mapLatitude = new MapLatitude(); + this.mapLongitude = new MapLongitude(); + this.presenter = new Presenter(longitude, mapLongitude, latitude, mapLatitude); } public double getLongitude() { return longitude.getValue(); } + public double getLatitude() { + return latitude.getValue(); + } + public double getMapLatitude() { + return mapLatitude.getValue(); + } + public double getMapLongitude() { + return mapLongitude.getValue(); + } public void updateGPS(double lat2, double long2) { this.presenter.updateGPS(lat2, long2); } + public void setAutoUpdate(boolean isAutoUpdate) { + this.presenter.setAutoUpdate(isAutoUpdate); + } + public void updateManually() { + this.presenter.updateManually(); + } } \ No newline at end of file