• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 在固定点和我在 iOS 中的当前位置之间行走时计算距离

[复制链接]
菜鸟教程小白 发表于 2022-12-11 20:19:29 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我必须计算 iOS 和 objective-c 中两个位置之间的距离。我的一个位置固定在一个点上,当我走路时,我必须计算我当前位置和固定点之间的距离。我使用了 distanceFromLocation 方法,但我没有得到更近的距离值。我浏览了几篇文章和一些 StackOverflow 解决方案,但没有一个给出正确的结果。

下面是我使用的代码,代码中的 currentLocation 和 destinationLocation 是保存位置纬度和经度的属性。 destinationLocation 始终是一个固定位置,并且当我走路时 currentLocation 不断变化。很少有 UILabel 可以打印当前和固定的纬度和经度值。我必须每次计算这两点之间的距离。当我移动半米或更少米时,它会显示很长的距离,这也是不一致的。你能帮我看看我在这里犯了什么错误吗?有没有其他方法可以实现这一目标?谢谢!

- (void)locationManagerCLLocationManager *)manager didUpdateLocationsNSArray<CLLocation *> *)locations{
    CLLocation *newLocation = locations.lastObject;
    self.currentLocation = [[CLLocation alloc] initWithLatitude:newLocation.coordinate.latitude longitude:newLocation.coordinate.longitude];

    if(self.destinationLocation == nil){
        self.destinationLocation = [[CLLocation alloc] initWithLatitude:newLocation.coordinate.latitude longitude:newLocation.coordinate.longitude];
        self.destinationLatitude.text = [NSString stringWithFormat"%.8f", self.destinationLocation.coordinate.latitude];
        self.destinationLongitude.text = [NSString stringWithFormat"%.8f", self.destinationLocation.coordinate.longitude];
    }

    self.currentLatitude.text = [NSString stringWithFormat"%.8f", self.currentLocation.coordinate.latitude];
    self.currentLongitude.text = [NSString stringWithFormat"%.8f", self.currentLocation.coordinate.longitude];

    CLLocationDistance distance = [self.currentLocation distanceFromLocation:self.destinationLocation];
    self.gpsDistanceMeasurement.text = [NSString stringWithFormat"%.2f m", distance];
}



Best Answer-推荐答案


你可以使用haversine公式计算两点之间的距离

swift 3.x

let Source = CLLocationCoordinate2D.init(latitude: lat, longitude: long)
let Destination = CLLocationCoordinate2D.init(latitude: lat, longitude: long)

func DistanceCalculator(Source:CLLocationCoordinate2D,Destination:CLLocationCoordinate2D) -> Double
{
    // HaverSine Formula to calculate Diastance On Sphere Refrences//https://www.movable-type.co.uk/scripts/latlong.html
    // Angle = sin2(∆Ø/2) + cosØ1 * cosØ2 * sin2(∆ø/2)
    // constant = 2 * atan2(√angle,√1-angle)
    // distance = R * c
    let Earth_Radiusouble = 6371 * 1000
    let LatDelta = self.DegreeToRad(Degree: (Destination.latitude - Source.latitude))
    let LongDelta = self.DegreeToRad(Degree: (Destination.longitude - Source.longitude))
    let latRad = self.DegreeToRad(Degree: Source.latitude)
    let longRad = self.DegreeToRad(Degree: Destination.latitude)

    let Angle = (sin(LatDelta/2) * sin(LatDelta/2)) + (cos(latRad) * cos(longRad) * sin(LongDelta/2) * sin(LongDelta/2))
    let constant = 2 * atan2(sqrt(Angle),sqrt(1-Angle))
    let Distance = Earth_Radius * constant
    return Distance
}


func DegreeToRad(Degreeouble) -> Double
{
    return Degree * (Double.pi / 180)
}

关于ios - 在固定点和我在 iOS 中的当前位置之间行走时计算距离,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51136210/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap