作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要知道从中心 map 到屏幕另一侧的距离(以公里为单位)(如果缩放改变,距离也会改变)。
我需要在这个函数中实现这个功能
- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated{
}
我有什么想法可以做到这一点吗?
谢谢
最佳答案
MkMapView 具有名为 centerCooperative(CLLocationCooperative2D) 和 Region (MKCooperativeRegion) 的属性。 Region 是一个结构体:
typedef struct {
CLLocationDegrees latitudeDelta;
CLLocationDegrees longitudeDelta;
}MKCoordinateSpan
您应该能够基于 centerCoordinate 创建另一个点,比方说,通过将 latitudeDelta 添加到您的 latitude 属性或 centerCoordinate,并使用 CLLocation 的方法计算距离:
- (CLLocationDistance)distanceFromLocation:(const CLLocation *)location
类似这样的事情
MkMapView * mapView; // init somewhere
MKCoordinateRegion region = mapView.region;
CLLocationCoordinate2D centerCoordinate = mapView.centerCoordinate;
CLLocation * newLocation = [[[CLLocation alloc] initWithLatitude:centerCoordinate.latitude+region.span.latitudeDelta longitude:centerCoordinate.longitude] autorelease];
CLLocation * centerLocation = [[[CLLocation alloc] initWithLatitude:centerCoordinate.latitude:longitude:centerCoordinate.longitude] autorelease];
CLLocationDistance distance = [centerLocation distanceFromLocation:newLocation]; // in meters
并且只需计算委托(delegate)每次触发某个方法的时间(决定您需要哪个:MKMapViewDelegate)
关于iphone - 使用mapkit计算半径(以米为单位),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3187932/
我是一名优秀的程序员,十分优秀!