25

地図上で車を移動するためのデモプロジェクトを1つ作成しました(githubのMoving-MKAnnotationViewデモから)。リンクは次のとおりです

https://github.com/pratikbhiyani/Moving-MKAnnotationView

vinaut からの回答に基づいてコードを編集しますが、それでも問題は、地図の注釈を元の角度にズームまたはスクロールすると、ios 7 および ios 6 で地図のアニメーションをズームまたはスクロールすると気が散ってしまうことです。 .

以下は私のデモプロジェクトのスクリーンショットです

ここに画像の説明を入力

ここに私が変更したいくつかのコードがあります

- (void) setPosition : (id) posValue;
{
    NSLog(@"set position");

    //extract the mapPoint from this dummy (wrapper) CGPoint struct
    MKMapPoint mapPoint = *(MKMapPoint*)[(NSValue*)posValue pointerValue];

    CLLocationCoordinate2D coord = MKCoordinateForMapPoint(mapPoint);
    CGPoint toPos;
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {

        toPos = [self.mapView convertCoordinate:coord toPointToView:self.mapView];
    }
    else
    {
        CGFloat zoomFactor =  self.mapView.visibleMapRect.size.width / self.mapView.bounds.size.width;
        toPos.x = mapPoint.x/zoomFactor;
        toPos.y = mapPoint.y/zoomFactor;
    }



    [self setTransform:CGAffineTransformMakeRotation([self getHeadingForDirectionFromCoordinate:MKCoordinateForMapPoint(previousPoint) toCoordinate: MKCoordinateForMapPoint(mapPoint)])];

    if (MKMapRectContainsPoint(self.mapView.visibleMapRect, mapPoint)) {

        CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position"];

        animation.fromValue = [NSValue valueWithCGPoint:self.center];
        animation.toValue = [NSValue valueWithCGPoint:toPos];
        animation.duration = 1.0;
        animation.delegate = self;
        animation.fillMode = kCAFillModeForwards;
        //[self.layer removeAllAnimations];
        [self.layer addAnimation:animation forKey:POSITIONKEY];

        //NSLog(@"setPosition ANIMATED %x from (%f, %f) to (%f, %f)", self, self.center.x, self.center.y, toPos.x, toPos.y);
    }

    self.center = toPos;

    previousPoint = mapPoint;
}

私の目標は、Uber アプリと同じように車を動かすことです。

4

3 に答える 3

14

CLCoordinate2D/MKMapPoint/CGPoint の変換関数で何かが変わったようです...

MKPolygon 内のポイントの検出が iOS7 で壊れた (CGPathContainsPoint)

MkMapPoints と CGIPoints の間の変換が機能しなくなったため、注釈は消えます。CALayer の「位置」をログに記録すると、ビューの外側にポイントが取得されます。タッチイベントを行うときになぜ機能するのかわかりません。

関数を次のように変更した場合:

    - (void) setPosition : (id) posValue; 
{
    //extract the mapPoint from this dummy (wrapper) CGPoint struct
    MKMapPoint mapPoint = *(MKMapPoint*)[(NSValue*)posValue pointerValue];  
    CLLocationCoordinate2D coord = MKCoordinateForMapPoint(mapPoint);

    CGPoint toPos = [self.mapView convertCoordinate:coord toPointToView:self.mapView];


    if (MKMapRectContainsPoint(self.mapView.visibleMapRect, mapPoint)) {

        CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position"];

        animation.fromValue = [NSValue valueWithCGPoint:self.center];
        animation.toValue = [NSValue valueWithCGPoint:toPos];   
        animation.duration = 0.8;
        animation.delegate = self;
        animation.fillMode = kCAFillModeForwards;
        //[self.layer removeAllAnimations];
        [self.layer addAnimation:animation forKey:POSITIONKEY];

        //NSLog(@"setPosition ANIMATED %x from (%f, %f) to (%f, %f)", self, self.center.x, self.center.y, toPos.x, toPos.y);
    }   

    self.center = toPos;


}

再び機能するはずです。

于 2013-10-11T19:47:15.113 に答える
1

地図のズーム/スクロール中に車の注意が散漫になる問題。実際、アノテーションにアニメーションを追加することでは実現できません。「From」座標と「To」座標の間の位置を取得し、それを注釈に設定できる補間関数(ミリ秒単位で注釈座標を設定する)がアニメーションのように見えることがわかりました。

iOS やマップの問題ではありません。注釈にアニメーションを追加すると、マップ ポイントに関係なく注釈レイヤーに追加されます。

于 2015-05-03T05:32:04.183 に答える