我设计了一个GPS应用程序,它很好地说明了我的位置。但是现在我想要包含更多功能。我将如何在那里制作一个半径?周边地区为5或6公里!我怎么能提到那个地方和我的地方之间的距离?
答案 0 :(得分:2)
如果您只是拥有不同的坐标并希望使用它们进行计算,请查看已有的Android功能: http://developer.android.com/reference/android/location/Location.html
您可以创建Location对象,将lat / long坐标与set-functions放在一起,然后只需使用
float distanceInMeters=location1.distanceTo(location2);
获得结果。
答案 1 :(得分:0)
我觉得这个问题开始变成很多问题。我决定通过将其引向您的问题标题“GPS应用距离”来解决这个问题。
在我的应用程序中,我没有使用Google的API,而是通过执行以下操作来请求用户与GPS坐标列表的距离:
在我的JJMath
班级中:
获得距离(Haversine Formula,以英里为单位):
/**
* @param lat1
* Latitude which was given by the device's internal GPS or Network location provider of the users location
* @param lng1
* Longitude which was given by the device's internal GPS or Network location provider of the users location
* @param lat2
* Latitude of the object in which the user wants to know the distance they are from
* @param lng2
* Longitude of the object in which the user wants to know the distance they are from
* @return
* Distance from which the user is located from the specified target
*/
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 sindLat = Math.sin(dLat / 2);
double sindLng = Math.sin(dLng / 2);
double a = Math.pow(sindLat, 2) + Math.pow(sindLng, 2) * Math.cos(lat1) * Math.cos(lat2);
double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
double dist = earthRadius * c;
return dist;
}
然后我通过以下方式对该数字进行舍入:
/** This gives me numeric value to the tenth (i.e. 6.1) */
public static double round(double unrounded) {
BigDecimal bd = new BigDecimal(unrounded);
BigDecimal rounded = bd.setScale(1, BigDecimal.ROUND_CEILING);
return rounded.doubleValue();
}
我不使用地图叠加层,但我确信会有很棒的教程或答案。