android – 地理点之间的距离

前端之家收集整理的这篇文章主要介绍了android – 地理点之间的距离前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在计算两个地理点之间的距离时遇到问题.

地理位置是:

  1. position1 = mapView.getProjection().fromPixels(
  2. (int) e.getX(),(int) e.getY());

而另一个

  1. double lat = 35.1064;
  2. double lng = 22.556412;
  3. GeoPoint position2 = new GeoPoint((int)(lat * 1E6),(int)(lng * 1E6));

然后我创建了两个位置:

  1. Location loc = new Location("");
  2.  
  3. loc.setLatitude(position1.getLatitudeE6());
  4.  
  5. loc.setLongitude(position1.getLongitudeE6());
  6.  
  7. Location loc2 = new Location("");
  8.  
  9. loc.setLatitude(position2.getLatitudeE6());
  10.  
  11. loc.setLongitude(position2.getLongitudeE6());

然后我计算距离:

  1. float distance = loc.distanceTo(loc2);

我围绕它:

  1. Math.round(distance);

但我得到的结果如下:

1.4331783E7

我究竟做错了什么?

解决方法

尝试按照我的方法,
  1. /**
  2. *
  3. * @param lat1 Latitude of the First Location
  4. * @param lng1 Logitude of the First Location
  5. * @param lat2 Latitude of the Second Location
  6. * @param lng2 Longitude of the Second Location
  7. * @return distance between two lat-lon in float format
  8. */
  9.  
  10. public static float distFrom (float lat1,float lng1,float lat2,float lng2 )
  11. {
  12. double earthRadius = 3958.75;
  13. double dLat = Math.toRadians(lat2-lat1);
  14. double dLng = Math.toRadians(lng2-lng1);
  15. double a = Math.sin(dLat/2) * Math.sin(dLat/2) +
  16. Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2)) *
  17. Math.sin(dLng/2) * Math.sin(dLng/2);
  18. double c = 2 * Math.atan2(Math.sqrt(a),Math.sqrt(1-a));
  19. double dist = earthRadius * c;
  20.  
  21. int meterConversion = 1609;
  22.  
  23. return new Float(dist * meterConversion).floatValue();
  24. }

猜你在找的Android相关文章