I want to make it so that it will show the amount of distance between two CLLocation coordinates. Is there someway to do this without a complex math formula? If there isn\'t
For swift 4
let locationOne = CLLocation(latitude: lat, longitude: long) let locationTwo = CLLocation(latitude: lat,longitude: long) let distance = locationOne.distance(from: locationTwo) * 0.000621371 distanceLabel.text = "\(Int(round(distance))) mi"