diff --git a/src/Map.java b/src/Map.java index 4d07aba..6c91085 100644 --- a/src/Map.java +++ b/src/Map.java @@ -9,7 +9,7 @@ this.longitude = new Longitude(mapLongitude); this.mapLatitude = new MapLatitude(); this.latitude = new Latitude(mapLatitude); - this.presenter = new Presenter(mapLongitude, mapLatitude); // Presenter�������� + this.presenter = new Presenter(mapLongitude, mapLatitude, longitude, latitude); } public double getMapLongitude() { return mapLongitude.getValue(); @@ -18,8 +18,6 @@ return longitude.getValue(); } public void updateGPS(double lat2, double long2) { - this.longitude.updateGPS(lat2, long2); - this.latitude.updateGPS(lat2, long2); this.presenter.updateGPS(lat2, long2); } public double getMapLatitude() { @@ -34,7 +32,7 @@ } // �蓮�X�V�̂��߂̃��\�b�h - public void manualUpdate(double lat, double lon) { - presenter.manualUpdate(lat, lon); + public void manualUpdate() { + presenter.manualUpdate(); } } \ No newline at end of file