8
GeoPoints
をGPXファイルに書き出す方法はありますか?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を読んだことがありますが、もっと簡単な解決策を探しています。
ありがとうございました。私はすでにこのメソッドを実装しています.. :) – JiTHiN