的結果要計算兩個地點之間的距離後得到兩個值;使用這個鏈接也 Calculate distance in meters when you know longitude and latitude in java如何小數的距離
我得到了我的結果一樣2.4737676E-儀具有兩個緯度和隆基5,它也是一個浮點值。
我只想在decimal.But使用十進制格式和字符串格式,我也不能得到我的預期結果,如(2.47)..它來僅爲0.00。
> float meanwhiledist=distFrom(latti,longii,curlat,curlongi);
> DecimalFormat df2 = new DecimalFormat("#.00");
> double dd2dec = new Double(df2.format(meanwhiledist));
or
Double dd = Double.valueOf(meanwhiledist);
String angleFormated = String.format("%.2f", dd);
if i print angleformated and dd2dec my result coming as 0.00
你可能想看一下@ map utils庫,它可以幫助計算距離RS。轉換不應該是一個問題https://developers.google.com/maps/documentation/android/utility/#spherical – Raghunandan