首页 > 移动平台 > 详细

iOS-根据两个经纬度计算相距距离

时间:2016-08-19 12:37:01      阅读:147      评论:0      收藏:0      [点我收藏+]
CLLocation *orig=[[[CLLocation alloc] initWithLatitude:[mainDelegate.latitude_self doubleValue]  longitude:[mainDelegate.longitude_self doubleValue]] autorelease];  
CLLocation* dist=[[[CLLocation alloc] initWithLatitude:[tmpNewsModel.latitude doubleValue] longitude:[tmpNewsModel.longitude doubleValue] ] autorelease];  
CLLocationDistance kilometers=[orig distanceFromLocation:dist]/1000;  
NSLog(
@"距离:",kilometers);

 

iOS-根据两个经纬度计算相距距离

原文:http://www.cnblogs.com/WJJ-Dream/p/5786975.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!