I have a function that return the distance between 2 locations
This is my function
public static float GetDistance(Location locationA, Location locationB ){
float distance = locationA.distanceTo(locationB);
return distance;
}
The float result what does it mean? air distance in kilometers?
I get 1.1 or 1.9 what does this result mean
Thanks