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

记录一下

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

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 百度地图计算两个点之间的距离)