GMSGroundOverlayanimation – 我应该使用CATiledLayer吗?

我正在试验Google Maps for iOS SDK最新版本1.2.1.2944来animationGMSGroundOverlay 。 用户可以控制图像序列,所以使用animationUIImage是不可能的,所以我正在UIImage加载。 GMSGroundOverlay.icon被设置为正在更新的UIImage

除了高内存的使用,我似乎已经GMSGroundOverlay.icon了一个限制,因为每当我尝试使用超过1000像素×1000像素的GMSGroundOverlay.icon覆盖UIImage ,它崩溃。 引用一个1000px x 1000像素的UIImage会导致崩溃。

这让我觉得可能是我应该利用CATiledLayer来处理图像,以便只加载到内存中,然后加载到GMSGroundOverlay的图标属性中,但是任何人都有使用CATiledLayer和Google Maps for iOS SDK的经验,并将图像sorting为animationGMSGroundOverlay

我从pressanswer.com得到了这个答案,我认为它可以帮助你。

由于目前我不能使用“位置”键path进行animation制作,因此我最终使用“纬度”和“经度”键path分别进行了animation处理。

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

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

 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]];