0

現在地と残りのポイントに基づいて、マップ上のさまざまなポイント間の距離を返すように関数を作成しようとしています。

ただし、データベースの最初のポイントで取得された距離を取得できます。

私たちを手伝ってくれますか?

if (cursor.getCount() > 0) {
    if (cursor != null && cursor.moveToFirst()) {       
        lat_s = >cursor.getString(cursor.getColumnIndex("latitude"));
        lng_s = >cursor.getString(cursor.getColumnIndex("longitude"));          
        lat_p = Double.parseDouble(lat_s);
        lng_p = Double.parseDouble(lng_s);          
        double dist = getDistancia(lat, lng, lat_p, lng_p);         
    }       
    @SuppressWarnings("deprecation")        
    SimpleCursorAdapter mAdapter = new SimpleCursorAdapter(this,
        R.layout.list_row, cursor, from, to);       
    listView.setAdapter(mAdapter);  
}

距離を返す関数は次のとおりです。

public double getDistancia(double latitude, double longitude, 
        double latitudePto, double longitudePto){  
    double dlon, dlat, a, distancia;  
    dlon = longitudePto - longitude;  
    dlat = latitudePto - latitude;  
    a = Math.pow(Math.sin(dlat/2),2) + Math.cos(latitude) * 
            Math.cos(latitudePto) * Math.pow(Math.sin(dlon/2),2);  
    distancia = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));  
    return 6378140 * distancia; /* 6378140 is the radius of the Earth in meters*/  
}
4

3 に答える 3

0

このコードをチェックしてください。これに役立つユーティリティがいくつかあります:)

https://github.com/BeyondAR/beyondar/blob/master/android/BeyondAR_Framework/src/com/beyondAR/android/util/math/Distance.java

于 2013-10-14T09:01:39.730 に答える