ios获取地图画面中东北和西南的坐标

Posted

技术标签:

【中文标题】ios获取地图画面中东北和西南的坐标【英文标题】:ios get the coordinate of northeast and southwest in map screen 【发布时间】:2011-11-03 15:35:31 【问题描述】:

我是 iPhone 应用程序的初学者。我将使用谷歌地图开发应用程序。 当用户在地图屏幕中拖动并更改地图屏幕的内容时,我想获取当前地图屏幕中东北和西南的坐标。用户缩小/放大后,用户可以更改地图屏幕的内容。在这种情况下,我必须得到东北和西南的坐标。我没有找到这个方法。

【问题讨论】:

【参考方案1】:

你可以这样做(See that question):

MKMapRect mapRect = self.mapView.visibleMapRect;

MKMapPoint cornerPointNE = MKMapPointMake(mapRect.origin.x + mapRect.size.width, mapRect.origin.y);
CLLocationCoordinate2D cornerCoordinateNE = MKCoordinateForMapPoint(cornerPointNE);

MKMapPoint cornerPointSW = MKMapPointMake(mapRect.origin.x, mapRect.origin.y + mapRect.size.height);
CLLocationCoordinate2D cornerCoordinateSW = MKCoordinateForMapPoint(cornerPointSW);

【讨论】:

以上是关于ios获取地图画面中东北和西南的坐标的主要内容,如果未能解决你的问题,请参考以下文章

IOS中使用百度地图定位后获取城市坐标,城市名称,城市编号信息

高德地图获取当前经纬度周边范围几公里的最大最小经纬度?

iOS 使用 CLLocation 和 MapView 一起获取坐标和更新地图

OpenLayers 4获得西南坐标

安卓 百度地图API怎么点击地图获取坐标

记录腾讯地图点击地图获取标注坐标