1

当应用程序在 MapKit 中启动时,我想放大用户当前位置。这是我的代码(在 viewDidLoad 函数中):

Locate=[[CLLocationManager alloc]init];
Locate.delegate=self;
Locate.desiredAccuracy=kCLLocationAccuracyBestForNavigation;
Locate.distanceFilter=kCLDistanceFilterNone;
[Locate startUpdatingLocation];
[super viewDidLoad];

//Region
MKCoordinateRegion myRegion;

//Center
CLLocationCoordinate2D center;
center.latitude=Locate.location.coordinate.latitude;
center.longitude=Locate.location.coordinate.longitude;

//Span
MKCoordinateSpan span;
span.latitudeDelta=0.3f;
span.longitudeDelta=0.3f;
//Set Region
myRegion.center=center;
myRegion.span=span;
[_MyMap setRegion:myRegion animated:YES];

didUpdateLocation我还使用与以前相同的代码实现了该功能。问题是当用户位置改变时(当用户移动时)屏幕会放大他但我不能移动屏幕,如果我尝试移动它会立即返回用户位置,所以我不能查看整个地图。

4

2 回答 2

3

对于缩放地图,您必须更改区域值意味着中心和跨度。一旦看到这个Mapview Zoom

在我的情况下,当我单击特定按钮时,我使用这个来移动地图。

MKCoordinateSpan span = MKCoordinateSpanMake(30.5982f,0.0001f);
        CLLocationCoordinate2D coordinate = {36, 90};
        MKCoordinateRegion region = {coordinate, span};
        MKCoordinateRegion regionThatFits = [self.mapView regionThatFits:region];
        [self.mapView setRegion:regionThatFits animated:YES];
于 2013-04-05T12:08:03.613 回答
2

我通过添加 touchesMoved 函数解决了这个问题,并且我停止更新此函数中的位置。解决了。

于 2013-04-05T13:01:13.717 回答