2013-04-09 43 views

Trả lời

2

Lấy khoảng cách giữa vị trí hiện tại và địa điểm đã chọn bằng Android.

public static double distFrom(
    double lat1, double lng1, double lat2, double lng2) 
{ 
    double earthRadius = 3958.75; 
    double dLat = Math.toRadians(lat2-lat1); 
    double dLng = Math.toRadians(lng2-lng1); 
    double a = Math.sin(dLat/2) * Math.sin(dLat/2) + 
     Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2)) * 
     Math.sin(dLng/2) * Math.sin(dLng/2); 
    double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)); 
    double dist = earthRadius * c; 

    return dist; 
} 
+1

hoặc https://developer.android.com/reference/android/ location/Location.html # distanceTo% 28android.location.Location% 29 –

+0

@ankitmakwana Bạn có thể cho tôi biết cách đặt kinh độ và vĩ độ trên WebView không? –

+0

@PratikButani bạn có thể hiển thị Sử dụng GeoPoint –

0

Chỉ có một vài dòng mã:

Location l1=new Location("One"); 
l1.setLatitude(location.getLatitude()); 
l1.setLongitude(location.getLongitude()); 

Location l2=new Location("Two"); 
l2.setLatitude(Double.parseDouble(frnd_lat)); 
l2.setLongitude(Double.parseDouble(frnd_longi)); 

float distance_bw_one_and_two=l1.distanceTo(l2); 
Các vấn đề liên quan