gpt4 book ai didi

core-animation - 在圆形路径中为 GMSMarker 设置动画

转载 作者:行者123 更新时间:2023-12-04 02:44:08 31 4
gpt4 key购买 nike

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

但是,GMSMarkerLayer 是 CALayers 的一个特殊子类,它似乎不响应“位置”键路径(按照该链接中的说明执行我看不到的任何操作)而是响应“纬度”和“longitude”键路径。

这是我试过的代码:

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 个单独的键路径(纬度和经度)以便我可以在 map 上为圆圈中的标记设置动画?

非常感谢任何帮助。

最佳答案

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

首先计算点并将它们添加到 2 个单独的数组,一个用于纬度值 (y),一个用于经度 (x),然后使用 CAKeyFrameAnimation 中的值属性进行动画处理。创建 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]];

关于core-animation - 在圆形路径中为 GMSMarker 设置动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19227017/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com