How to get Distance Kilometer in android?
- by user1787493
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 following code:
private double getDistance(double lat1, double lat2, double lon1, double lon2) {
double dLat = Math.toRadians(lat2 - lat1);
double dLon =…