获取当前地图范围

发布于 2024-10-07 00:19:49 字数 575 浏览 1 评论 0原文

我如何获取当前地图范围,即地图视图中当前区域的最小 x,y 和最大 x,y?

好的-下面现在可以工作了。

MKCoordinateRegion region=map.region;
MKCoordinateSpan span=map.region.span;

CLLocationCoordinate2D center=region.center;
float lat=center.latitude;
float lon=center.longitude;

float spanLat=span.latitudeDelta/2;
float spanLon=span.longitudeDelta/2;

NSLog(@"Center Lat: %f",lat);
NSLog(@"Center Lon: %f",lon);
NSLog(@"span Lat: %f",spanLat);
NSLog(@"span Lon: %f",spanLon);

float minLat=lat-spanLat;
float minLon=lon-spanLon;
float maxLat=lat+spanLat;
float maxLon=lon+spanLon;

How can i get the current map extent, I.E the min x,y and max x,y for my current region in my mapview?

Okay- The below works now.

MKCoordinateRegion region=map.region;
MKCoordinateSpan span=map.region.span;

CLLocationCoordinate2D center=region.center;
float lat=center.latitude;
float lon=center.longitude;

float spanLat=span.latitudeDelta/2;
float spanLon=span.longitudeDelta/2;

NSLog(@"Center Lat: %f",lat);
NSLog(@"Center Lon: %f",lon);
NSLog(@"span Lat: %f",spanLat);
NSLog(@"span Lon: %f",spanLon);

float minLat=lat-spanLat;
float minLon=lon-spanLon;
float maxLat=lat+spanLat;
float maxLon=lon+spanLon;

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

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

发布评论

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

评论(1

2024-10-14 00:19:49

[mkMapViewObject region] 返回一个 MKCooperativeRegion,其中包含所显示内容的中心点和纬度/经度跨度。

[mkMapViewObject region] returns an MKCoordinateRegion that contains a center point and a lat/long span for what is being displayed.

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