码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2016-08-19 12:39:21      阅读:163      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!