我正在尝试使用Google Maps for iOS SDK最新版本1.2.1.2944来动画GMSGroundOverlay
。用户可以控制图像序列,因此使用动画UIImage
不可能遗憾,因此我正在加载UIImage
。 GMSGroundOverlay.icon
设置为正在更新的UIImage
。
除了高内存使用率之外,我似乎已经遇到了限制,每当我尝试使用超过1000px x 1000px的UIImage
覆盖GMSGroundOverlay.icon
时,它就会崩溃。引用UIImage
1000px x 1000px可以解决崩溃问题。
虽然我可能会利用CATiledLayer
处理图片来加载到内存中,然后加载到GMSGroundOverlay
的icon属性中,但是有任何人都有使用{{1使用Google Maps for iOS SDK并将图像排序为动画CATiledLayer
?
答案 0 :(得分:1)
我从pressedanswer.com得到了这个答案,我认为这可能对你有帮助。
目前我不能使用“位置”键路径进行动画制作,我最后分别使用“纬度”和“经度”键路径为其设置动画。
首先计算点并将它们添加到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]];