How to get Distance Kilometer in android?

前端 未结 5 1237
太阳男子
太阳男子 2020-12-19 07:32

I am very new to Google maps I want calculate the distance between two places in android.

For that I get the two places lat and lag positions for that I write the fo

5条回答
  •  孤城傲影
    2020-12-19 08:18

    Using following this code you find distance but you want to convert in kilometer.

    double distance;
    Location locationA = new Location("point A");
    locationA.setLatitude(latA);
    locationA.setLongitude(lngA);
    
    Location locationB = new Location("point B");
    locationB.setLatitude(latB);
    locationB.setLongitude(lngB);
    
    distance = locationA.distanceTo(locationB);
    

提交回复
热议问题