我在我的应用中添加了谷歌地图。它显示了从源到目的地的路径。
我还想显示估计时间,该路径的长度如下:
如何使用谷歌地图计算路径中心?
感谢您宝贵的时间!
提前谢谢...
Best Answer-推荐答案 strong>
试试这个...
设坐标A = CLLocation(纬度:55.0,经度:35.0)
设坐标B = CLLocation(纬度:65.0,经度:73.0)
让 distanceInMeters =坐标A.距离(来自:坐标B)
计算完距离后,使用此公式计算速度。
即速度=距离/时间
试试这个委托(delegate)以获得速度或时间
func locationManager(_ manager: CLLocationManager, didUpdateLocations 位置: [CLLocation])
关于ios - 在 iOS 的谷歌地图中获取中心,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/44899665/
|