GeoPoints
GPX ファイルにエクスポートする方法はありますか?
@Override
public void onLocationChanged(android.location.Location location) {
lat = location.getLatitude();
lon = location.getLongitude();
currGeo = new GeoPoint((int)(lat*1e6),(int)(lon*1e6));
//Store GeoPoint to GPX file
}
How to parse and plot gpx file has an android MapView を読みましたが、より簡単な解決策を探しています。