ios – 使用标题转换用户位置注释

我正在尝试更改我的应用程序中的用户注释,以便它显示通常的蓝点,但是有一个三角形从它上面显示用户面向的方向(我宁愿旋转用户注释而不是整个地图,这就是MKUserTrackingModeFollowWithHeading所做的事情.我有一个基本的版本工作,但它有一些奇怪的行为.

首先,一些代码:

-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation {
     if ([annotation isKindOfClass:[MKUserLocation class]]) {
          _userLocationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"userLocationIdentifier"];
          //use a custom image for the user annotation
          _userLocationView.image = [UIImage imageNamed:@"userLocationCompass.png"];

          return _userLocationView;

     } else {
          return nil;
     }

}

-(void)locationManager:(CLLocationManager *)manager didUpdateHeading:(CLHeading *)newHeading {

     //rotate user location annotation based on heading from location manager.
     if (!_locatorButton.hidden) {
          CLLocationDirection direction = newHeading.magneticHeading;

          CGAffineTransform transform = CGAffineTransformMakeRotation(degreesToRadians(direction));
          _userLocationView.transform = transform;
     }

}

-(void)GPSButtonPressed:(id)sender {
    if (self.GPSEnabled) {
        //if GPS is already on, disable it.
        _mapview.showsUserLocation = NO;
        [_mapview removeAnnotation:_mapview.userLocation];
        self.GPSEnabled = NO;

        [_locationManager stopUpdatingHeading];

    } else {
        //enable GPS.
        _mapview.showsUserLocation = YES;
        self.GPSEnabled = YES;

        if ([CLLocationManager headingAvailable]) {
            [_locationManager startUpdatingHeading];
        }


    }
}

用户位置注释图像显示正常,并根据标题旋转,但这里是有趣的行为:

1-注释不遵循我的位置 – 它只停留在一个地方,但是以正确的标题旋转.如果我使用“GPS按钮”关闭GPS,然后将其重新打开,注释会显示在正确的位置,但在我走路时仍然不会跟随.

2-如果我滚动地图,注释会弹回到正北方,然后快速旋转到正确的标题,从而产生恼人的闪烁效果.

3-如果我关闭GPS并删除用户位置,则会按预期删除注释,但如果我滚动地图,则注释会弹回屏幕而不是隐藏.

我究竟做错了什么?感谢任何有用的提示!

最佳答案 即使您可能已经修复了2.问题,我仍然希望分享解决方案,这有助于解决类似的问题.

我遇到了同样的问题:当用户滚动或平移地图时,我的自定义用户位置箭头旋转总是弹回北方.我在这里找到了修复:https://stackoverflow.com/a/12753320/2030629

根据作者,它是一个但在ios6中,可以通过添加来修复

if(is6orMore) {
        [annView setTransform:CGAffineTransformMakeRotation(.001)]; //iOS6 BUG WORKAROUND !!!!!!!
 }

to mapView:viewForAnnotation.

我还在 – mapView:regionDidChangeAnimated:中再次设置了变换.
希望这会让别人感到高兴,因为它让我:)

点赞