3

我了解如何根据这个 SO 问题在圆形路径中正常动画其他 CALayers: iPhone - How to make a circle path for a CAKeyframeAnimation?

但是,GMSMarkerLayer 是 CALayers 的一个特殊子类,它似乎不响应“位置”键路径(按照该链接中的说明,我没有明显看到),而是会响应“纬度”和“经度”键路径反而。

这是我尝试过的代码:

CAKeyframeAnimation *circlePathAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];
CGMutablePathRef circularPath = CGPathCreateMutable();
CGRect pathRect = CGRectMake(marker.position.latitude, marker.position.longitude, 0.001, 0.001);
CGPathAddEllipseInRect(circularPath, NULL, pathRect);
circlePathAnimation.path = circularPath;
circlePathAnimation.duration = 1.0f;
circlePathAnimation.repeatCount = HUGE_VALF;

[marker.layer addAnimation:circlePathAnimation forKey:[NSString stringWithFormat:@"circular-%@", marker.description]];
CGPathRelease(circularPath);

由于关键帧动画将使用“位置”关键路径,我如何将其转换为 2 个单独的关键路径(纬度和经度),以便我可以在地图上的圆圈中为标记设置动画?

任何帮助是极大的赞赏。

4

1 回答 1

4

由于目前我无法使用“位置”键路径进行动画制作,因此我最终分别使用“纬度”和“经度”键路径对其进行了动画处理。

首先计算点并将它们添加到 2 个单独的数组中,一个用于纬度值 (y),一个用于经度 (x),然后使用 CAKeyFrameAnimation 中的 values 属性进行动画处理。创建 2 个 CAKeyFrameAnimation 对象(每个轴 1 个)并使用 CAAnimationGroup 将它们组合在一起,并将它们动画在一起形成一个圆圈。

在我的等式中,我改变了每个轴上的半径长度,这样我也可以生成椭圆路径。

    NSMutableArray *latitudes = [NSMutableArray arrayWithCapacity:21];
    NSMutableArray *longitudes = [NSMutableArray arrayWithCapacity:21];
    for (int i = 0; i <= 20; i++) {
        CGFloat radians = (float)i * ((2.0f * M_PI) / 20.0f);

        // Calculate the x,y coordinate using the angle
        CGFloat x = hDist * cosf(radians);
        CGFloat y = vDist * sinf(radians);

        // Calculate the real lat and lon using the
        // current lat and lon as center points.
        y = marker.position.latitude + y;
        x = marker.position.longitude + x;


        [longitudes addObject:[NSNumber numberWithFloat:x]];
        [latitudes addObject:[NSNumber numberWithFloat:y]];
    }

    CAKeyframeAnimation *horizontalAnimation = [CAKeyframeAnimation animationWithKeyPath:@"longitude"];
    horizontalAnimation.values = longitudes;
    horizontalAnimation.duration = duration;

    CAKeyframeAnimation *verticleAnimation = [CAKeyframeAnimation animationWithKeyPath:@"latitude"];
    verticleAnimation.values = latitudes;
    verticleAnimation.duration = duration;

    CAAnimationGroup *group = [[CAAnimationGroup alloc] init];
    group.animations = @[horizontalAnimation, verticleAnimation];
    group.duration = duration;
    group.repeatCount = HUGE_VALF;
    [marker.layer addAnimation:group forKey:[NSString stringWithFormat:@"circular-%@",marker.description]];
于 2013-10-11T10:57:15.770 回答