Google Maps计算两个坐标的距离

private const double EARTH_RADIUS = 6378137.0;
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;
}

在线经纬距离计算小工具

![](http://www.forkosh.com/mathtex.cgi? \Large S={2\times\arcsin{\sqrt{{\sin}{2}(\frac{a}{2})+\cos(Lat1)\times\cos(Lat2)\times{\sin}{2}(\frac{b}{2})}}\times6378.137})

公式解释如下:
Lat1 Lng1 表示A点纬度和经度,Lat2 Lng2 表示B点纬度和经度
a = Lat1 – Lat2 为两点纬度之差 b = Lng1 -Lng2 为两点经度之差
6378.137为地球半径,单位为KM
计算出来的结果单位为KM

引自:明明的博客

你可能感兴趣的:(Google Maps计算两个坐标的距离)