我对MKCoordinateRegionMakeWithDistance
有疑问。
我尝试通过我的iPad App首选项中的滑块指定距离值。
当我将更多的963作为int或float放入时,mapView不会应用该值并获取它自己的值。
是否有任何最大值,或者我可以编辑MKMapView,它将采用大约10.000米的值吗?
谢谢,亲切的问候,朱利安
修改 的
以下是一些请求代码:
// PreferencesView
- (IBAction)changeZoomDidEnd:(UISlider *)sender
{
[[NSUserDefaults standardUserDefaults] setInteger:[sender value] forKey:@"defaultZoom"];
}
// MapView
- (IBAction)zoomToLocation:(id)sender
{
defaultZoom = [[[NSUserDefaults standardUserDefaults] valueForKey:@"defaultZoom"] intValue];
[mapView setRegion:MKCoordinateRegionMakeWithDistance(mapView.userLocation.coordinate, defaultZoom, defaultZoom) animated:YES];
}