您的位置:首页 > 移动开发 > Android开发

根据两点经纬度计算两点距离...工具类

2016-07-08 19:31 309 查看
/**
 * 根据两点经纬度计算距离

 * 直接调用使用即可

 * @author tarena

 *

 */

public class DistanceUtil {

    public static final double EARTH_RADIUS = 6378.137;//地球半径

    private static double rad(double d)

    {

       return d * Math.PI / 180.0;

    }

    public static double getDistance(double lat1, double lng1, double lat2, double lng2)

    {

       double radLat1 = rad(lat1);

       double radLat2 = rad(lat2);

       double a = radLat1 - radLat2;

       double b = rad(lng1) - rad(lng2);

       double s = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a/2),2) +

        Math.cos(radLat1)*Math.cos(radLat2)*Math.pow(Math.sin(b/2),2)));

       s = s * EARTH_RADIUS;

       s = Math.round(s * 10000) / 10000;

       return s*1000;

    }

    

    public static double getDistance(LatLng ll1, LatLng ll2){

        

        return getDistance(ll1.latitude, ll1.longitude, ll2.latitude, ll2.longitude);

    }

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android 地图