使用horizo​​ntalAccuracy设置MapView的regionThatFits

发布于 2024-11-04 11:11:50 字数 278 浏览 0 评论 0原文

我正在寻找一种将米转换为地图视图区域的方法。

CLLocationhorizo​​ntalAccuracy 是一个双精度值,表示以米为单位的精度。 regionThatFits:采用一个MKCooperativeRegion,它有一个带有longitudeDeltalatitudeDeltaspan。如何将米转换为经度/纬度跨度?

I'm looking for a method to convert meters to a mapview region.

CLLocation's horizontalAccuracy is a double, representing the accuracy in meters. regionThatFits: takes an MKCoordinateRegion which has a span with longitudeDelta and latitudeDelta. How can I convert meters to a longitude/latitude span?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

燕归巢 2024-11-11 11:11:50

找到了答案。看起来 1 纬度大约等于 111 公里,即 111120 米

- (MKCoordinateRegion)regionForAccuracyOfLocation:(CLLocation *)location
{
    CLLocationDegrees spanInDegrees = (CLLocationDegrees) (location.horizontalAccuracy / 222240);

    MKCoordinateSpan span = MKCoordinateSpanMake(spanInDegrees, spanInDegrees) ;
    CLLocationCoordinate2D coordinate = location.coordinate;
    MKCoordinateRegion region = MKCoordinateRegionMake(coordinate, span);

    return region;
}

Found an answer. It seems that 1 degree of latitude is equal to around 111 kilometers, or 111120 meters

- (MKCoordinateRegion)regionForAccuracyOfLocation:(CLLocation *)location
{
    CLLocationDegrees spanInDegrees = (CLLocationDegrees) (location.horizontalAccuracy / 222240);

    MKCoordinateSpan span = MKCoordinateSpanMake(spanInDegrees, spanInDegrees) ;
    CLLocationCoordinate2D coordinate = location.coordinate;
    MKCoordinateRegion region = MKCoordinateRegionMake(coordinate, span);

    return region;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文