本文介绍了在iOS上计算地图上2点之间的距离的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以使用Apple Map框架或Google框架计算iOS上两个封闭点之间的距离?
例如,我想以最高的准确度获得这2个蓝点之间的距离。
Is it possible to calculate the distance between 2 close points on iOS using Apple map framework or Google framework?For example, i want to get the distance between this 2 blu point with the highest accuracy possible.
使用Google地图或苹果地图能否获得很多数字的2坐标?我如何计算以厘米或毫米为单位的距离?
Using google maps or apple maps can i get the 2 coordinate with a lot of digit? how can i calculate the distance in centimeters or millimeters?
推荐答案
尝试一下-
let coordinate0 = CLLocation(latitude: 5.0, longitude: 5.0)
let coordinate1 = CLLocation(latitude: 5.0, longitude: 3.0)
let distanceInMeters = coordinate0.distance(from: coordinate1)
这篇关于在iOS上计算地图上2点之间的距离的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!