美文网首页iOS开发经验收集ios实用开发技巧iOS收藏
【IOS】根据地图经纬度计算两点间的距离

【IOS】根据地图经纬度计算两点间的距离

作者: 雨影 | 来源:发表于2017-07-17 16:14 被阅读37次

    采用系统自带的方法实现

    //第一个坐标
     CLLocation *current=[[CLLocation alloc] initWithLatitude:32.178722 longitude:119.508619]; 
    //第二个坐标
     CLLocation *before=[[CLLocation alloc] initWithLatitude:32.206340 longitude:119.425600]; 
    // 计算距离 
    CLLocationDistance meters=[current distanceFromLocation:before];
    

    相关文章

      网友评论

        本文标题:【IOS】根据地图经纬度计算两点间的距离

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