美文网首页
iOS 百度地图计算两个点之间的距离

iOS 百度地图计算两个点之间的距离

作者: 星河紫 | 来源:发表于2019-11-04 16:42 被阅读0次

记录一下

百度地图提供了一个方法:

BMKMapPointForCoordinate(CLLocationCoordinate2D coordinate);

这个方法可以将经纬度转换为 直角地理坐标

然后再通过另一个方法来计算距离:

CLLocationDistance BMKMetersBetweenMapPoints(BMKMapPoint a,BMKMapPoint b);

返回的距离单位是米。

CLLocationCoordinate2D startCoor;

 startCoor.latitude=self.mapHelp.startlatitude;  startCoor.longitude=self.mapHelp.startlongitude;

CLLocationCoordinate2D endCoor;

endCoor.latitude=self.detaiModel.reportlatitude;

endCoor.longitude=self.detaiModel.reportlongitude;

            CLLocationDistance dis;

            dis =BMKMetersBetweenMapPoints(BMKMapPointForCoordinate(startCoor),BMKMapPointForCoordinate(endCoor)) ;

这是我计算的当前位置点和目的地位置的距离。

相关文章

网友评论

      本文标题:iOS 百度地图计算两个点之间的距离

      本文链接:https://www.haomeiwen.com/subject/hopdbctx.html