Mapkit iOS6地图工具包

Mapkit iOS6地图工具包,mapkit,zooming,html,ios6,ios6-maps,Mapkit,Zooming,Html,Ios6,Ios6 Maps,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 regio

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作为缩放范围,我也可以在模拟器中打开地图,用手势进一步缩放。
另外值得注意的是,与我自己的应用程序相比,我可以使用手势在实际的“地图”应用程序中进一步放大

是的,它的工作原理与您描述的完全一样,我向苹果公司发送了一些示例代码,看看他们是否对此有什么要说的。还没有答案。这一定是故意的,pe