Исходный код, чтобы найти расстояние между двумя географическими точками - PullRequest
1 голос
/ 02 ноября 2011

Я работаю над приложением для Android и хочу добавить информацию о локаторе магазина и вид карты. Я много искал, но ничего не получаю. Я напрягся и очень нуждаюсь в вашей помощи.

Проблема в том, что я хочу найти расстояние между двумя координатами, у меня есть одна формула Хаверсайна., Но я не знаю, как запустить программу успешно. Поскольку я новичок в Android, пожалуйста, помогите делать пошаговое кодирование, т.е. код xml также .., пожалуйста., пожалуйста.,

Ответы [ 4 ]

4 голосов
/ 02 ноября 2011

Как указано выше, класс Location - это путь.

Вот код, который я использовал:

Location locationA = new Location("point A");  

locationA.setLatitude(pointA.getLatitudeE6() / 1E6);  
locationA.setLongitude(pointB.getLongitudeE6() / 1E6);  

Location locationB = new Location("point B");  

locationB.setLatitude(pointB.getLatitudeE6() / 1E6);  
locationB.setLongitude(pointB.getLongitudeE6() / 1E6);  

double distance = locationA.distanceTo(locationB);

В этом примере pointA и pointB являются экземплярами класса GeoPoint.

2 голосов
/ 22 декабря 2011

Из фрагментов MotoDev (Расстояние между координатами GPS):

Location originLocation = new Location("gps");
Location destinationLocation = new Location("gps");
originLocation.setLatitude(originLatitude);
originLocation.setLongitude(originLongitude);
destinationLocation.setLatitude(originLatitude);
destinationLocation.setLongitude(originLongitude);
float distance = originLocation.distanceTo(destinationLocation);
0 голосов
/ 19 января 2013

Используйте этот код.Вы получите расстояние между двумя географическими точками.

 private String distance(double lati, double longi, double curlati1,
        double curlongi1) {

    double theta = longi - curlongi1;
    double dist = Math.sin(deg2rad(lati)) * Math.sin(deg2rad(curlati1))
            + Math.cos(deg2rad(lati)) * Math.cos(deg2rad(curlati1))
            * Math.cos(deg2rad(theta));
    dist = Math.acos(dist);
    dist = rad2deg(dist);
    dist = dist * 60 * 1.1515;

    dist = dist * 1.609344;

    result = Double.toString(dist);
    System.out.println("dist_result :" + result);
    return (result);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* :: This function converts decimal degrees to radians : */
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
private double deg2rad(double deg) {
    return (deg * Math.PI / 180.0);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* :: This function converts radians to decimal degrees : */
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
private double rad2deg(double rad) {
    return (rad * 180.0 / Math.PI);
}
0 голосов
/ 02 ноября 2011

http://developer.android.com/reference/android/location/Location.html

Просмотр расстояния до или расстояния между.Вы можете создать объект Location из широты и долготы:

Location location = new Location("");
location.setLatitude(lat);
location.setLongitude(lon);
...