如何通过给出位置来缩放距离?

时间:2010-02-23 09:32:26

标签: iphone

我正在尝试通过给出位置来缩放MKMapView。它也将在距离该位置约X米处。

如何制作?

我尝试了以下代码:

MKCoordinateRegion region;
region.center.latitude     = longitude;
region.center.longitude    = latitude;
region.span.latitudeDelta  = 0.1;
region.span.longitudeDelta = 0.1;
[mapView setRegion:region];

但没有运气。

提前致谢。

1 个答案:

答案 0 :(得分:2)

您可能对这篇文章感兴趣:Set the Zoom Level of an MKMapView

完整说明:MKMapView and Zoom Levels: A Visual Guide