我在应用程序中添加了谷歌地图。它显示了从源到目标的路径。

我还想显示该路径的估计时间,其长度如下:

ios - 在iOS的Google map 中获取中心-LMLPHP

如何使用Google Map计算路径中心?

感谢您的宝贵时间!

提前致谢...

最佳答案

试试这个...

让坐标A = CLLocation(纬度:55.0,经度:35.0)

让坐标B = CLLocation(纬度:65.0,经度:73.0)

让distanceInMeters =坐标A.distance(from:坐标B)

一旦计算出距离,就可以使用此公式计算速度。

即速度=距离/时间

尝试此代表以获取速度或时间

函数位置管理器(_管理器:CLLocationManager,didUpdateLocations位置:[CLLocation])

关于ios - 在iOS的Google map 中获取中心,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44899665/

10-12 01:45