Newer
Older
MapPush / src / Presenter.java
public class Presenter {
    private Longitude longitude;
    private Latitude latitude;
    private MapLongitude mapLongitude;
    private MapLatitude mapLatitude;

    public Presenter(Longitude longitude, Latitude latitude, MapLongitude mapLongitude, MapLatitude mapLatitude) {
        this.longitude = longitude;
        this.latitude = latitude;
        this.mapLongitude = mapLongitude;
        this.mapLatitude = mapLatitude;
    }

    // 地図位置を更新する(新規メソッド)
    public void updateMapLocation(double lat, double lon) {
        this.mapLatitude.updateLatitude(lat);
        this.mapLongitude.updateLongitude(lon);
    }

    // 以下のメソッドは削除
    // public void updateGPS(double lat2, double long2) {
    // }
}