获取MapKit视图边界坐标

发布于 2024-11-09 16:19:25 字数 59 浏览 0 评论 0原文

如何获取 MapKit 视图边界坐标,例如我需要获取东北边界坐标和西南边界坐标。

谢谢。

how can I get the MapKit view bounds coordinates for example I need to get the north-east bound coords and the south-west bound coords.

Thanks.

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

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

发布评论

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

评论(1

挥剑断情 2024-11-16 16:19:25
MKCoordinateRegion region = mapView.region;

minLat = region.center.latitude - (region.span.latitudeDelta / 2.0);
maxLat = region.center.latitude + (region.span.latitudeDelta / 2.0);

minLong = region.center.longitude - (region.span.longitudeDelta / 2.0);
maxLong = region.center.longitude + (region.span.longitudeDelta / 2.0);

东北坐标为 (maxLat, maxLong),西南坐标为 (minLat, minLong)。

MKCoordinateRegion region = mapView.region;

minLat = region.center.latitude - (region.span.latitudeDelta / 2.0);
maxLat = region.center.latitude + (region.span.latitudeDelta / 2.0);

minLong = region.center.longitude - (region.span.longitudeDelta / 2.0);
maxLong = region.center.longitude + (region.span.longitudeDelta / 2.0);

Northeast coords are (maxLat, maxLong) and southwest coords are (minLat, minLong).

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