我正在使用地图。我有个问题。我使用以下代码来缩放this link in stackOverFlow
的引用轻松缩放地图。
但现在,
我无法放大和缩小地图。这意味着我无法改变或找到另一个地方。它只关注当前的位置。它的行为就像一个图像修复。我不明白该怎么办?
请帮忙。
我的守则如下。
- (void) viewDidLoad
{
[self.mapView.userLocation addObserver:self
forKeyPath:@"location"
options:(NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld)
context:nil];
}
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
MKCoordinateRegion region;
region.center = self.mapView.userLocation.coordinate;
MKCoordinateSpan span;
span.latitudeDelta = 1; // Change these values to change the zoom
span.longitudeDelta = 1;
region.span = span;
[self.mapView setRegion:region animated:YES];
}
答案 0 :(得分:2)
我认为问题在于您正在收听用户位置更改(最有可能每秒发生多次)并且您正在将地图区域设置为该区域。
您需要做的是在地图上添加一个按钮(例如Apple地图的左上角),它会将地图模式切换为自由外观或固定到用户位置。
当用户按下按钮时,您可以删除/添加KVO。或者在代码中切换布尔标志。如果标志为true,则不更改地图区域。类似的东西:
@implementation YourController{
BOOL _followUserLocation;
}
- (IBAction) toggleMapMode:(id)sender{
_followUserLocation = !_followUserLocation;
}
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context{
if(_followUserLocation){
MKCoordinateRegion region;
region.center = self.mapView.userLocation.coordinate;
MKCoordinateSpan span;
// retain the span so when the map is locked into user location they can still zoom
span.latitudeDelta = self.mapView.region.span.latitudeDelta;
span.longitudeDelta = self.mapView.region.span.longitudeDelta;
region.span = span;
[self.mapView setRegion:region animated:YES];
}
}
@end
也许你不想要所有这一切,你只需要:
// retain the span so when the map is locked into user location they can still zoom
span.latitudeDelta = self.mapView.region.span.latitudeDelta;
span.longitudeDelta = self.mapView.region.span.longitudeDelta;