按两点之间的距离设置区域
Posted
技术标签:
【中文标题】按两点之间的距离设置区域【英文标题】:Set region by distance between two points 【发布时间】:2012-02-09 00:54:42 【问题描述】:我的第一个点位于MKMapView
的中心,距离地图左边界的距离(以米为单位)应该是该中心。
如何为此设置区域?
【问题讨论】:
【参考方案1】:给定中心坐标和从中心到边界的距离(以米为单位),您可以使用MKCoordinateRegionMakeWithDistance
函数创建区域:
CLLocationCoordinate2D centerCoord = CLLocationCoordinate2DMake(lat, lng);
CLLocationDistance centerToBorderMeters = 5000;
MKCoordinateRegion rgn = MKCoordinateRegionMakeWithDistance
(centerCoord,
centerToBorderMeters * 2, //vertical span
centerToBorderMeters * 2); //horizontal span
[mapView setRegion:rgn animated:YES];
【讨论】:
以上是关于按两点之间的距离设置区域的主要内容,如果未能解决你的问题,请参考以下文章