iOS6 提供的新地图不允许跨度低于大约 0.001。有没有其他人看到这个问题?
CLLocationCoordinate2D coord = {.latitude= 37.980600, .longitude= -87.593932};
MKCoordinateSpan span = {.latitudeDelta= 0.0, .longitudeDelta = 0.0}; //smaller the number = greater zoom
MKCoordinateRegion region = {coord, span};
[mapView setRegion:region animated:YES];
即使使用 0.0 作为缩放范围,我也可以在模拟器中打开地图并通过手势进一步缩放。另外值得注意的是,与我自己的应用程序相比,我可以使用手势进一步放大实际的“地图”应用程序。