8

使用 Google 地图 iOS SDK 我已经实现了一个 mapView,其中我创建了如下标记

// Creates a marker in the center of the map.
GMSMarker *marker = [[GMSMarker alloc] init];
marker.position = CLLocationCoordinate2DMake(-33.86, 151.20);
marker.title = @"Sydney";
marker.snippet = @"Australia";

marker.icon = [UIImage imageNamed:@"point1.png"]; 

marker.map = mapView_;

但我需要显示动画图像,即要显示的一些图像序列,围绕一个点的动画环,而不是原始 GMSMarker

图像序列是 point1.png point2.png point3.png point4.png point5.png

任何人都可以帮助我实现这一目标

4

5 回答 5

3

- (RMMapLayer *)mapView:(RMMapView *)mpView layerForAnnotation:(RMAnnotation *)annotation
{

  UIImageView *pulseRingImg = [[UIImageView alloc] initWithFrame: CGRectMake(-30, -30, 78, 78)];
    pulseRingImg.image = [UIImage imageNamed:@"PulseRing.png"];
     pulseRingImg.userInteractionEnabled = NO;

    CABasicAnimation *theAnimation;
    theAnimation=[CABasicAnimation animationWithKeyPath:@"transform.scale.xy"];
    theAnimation.duration=2.0;
    theAnimation.repeatCount=HUGE_VALF;
    theAnimation.autoreverses=NO;
    pulseRingImg.alpha=0;
    theAnimation.fromValue=[NSNumber numberWithFloat:0.0];
    theAnimation.toValue=[NSNumber numberWithFloat:1.0];
    pulseRingImg.alpha = 1;
    [pulseRingImg.layer addAnimation:theAnimation forKey:@"pulse"]; 
     pulseRingImg.userInteractionEnabled = NO;

    [mapView addSubview:pulseRingImg];
    [marker addSublayer:pulseRingImg.layer];

 return marker;

}

PulseRing.png[UIImage imageNamed:@"PulseRing.png"]是_

脉冲环.png

获取参考:

ios - 如何在 UIButton 上制作原生“脉冲效果”动画

CABasicAnimation *theAnimation;

theAnimation=[CABasicAnimation animationWithKeyPath:@"opacity"];
theAnimation.duration=1.0;
theAnimation.repeatCount=HUGE_VALF;
theAnimation.autoreverses=YES;
theAnimation.fromValue=[NSNumber numberWithFloat:1.0];
theAnimation.toValue=[NSNumber numberWithFloat:0.0];
[myButton.layer addAnimation:theAnimation forKey:@"animateOpacity"]; 
于 2013-09-05T09:18:08.700 回答
3

从 google map sdk / 看来,此时 v1.9 是唯一支持使用基于框架的图像的动画。如果您使用的是 mapkit - > 您可以简单地使用https://github.com/TransitApp/SVPulsingAnnotationView

来自谷歌的 sdk -> ios 示例

AnimatedCurrentLocationViewController.m

            NSMutableArray *frames = [NSMutableArray array];
            for (int i =0; i<146; i++) {
                NSString *img = [NSString stringWithFormat:@"pulse-%d",i];
                [frames addObject:[UIImage imageNamed:img]];
            }
           marker.icon = [UIImage animatedImageWithImages:frames duration:3];

在我的动画书分支https://github.com/johndpope/Flipbook上,我已经将视网膜中的脉冲动画渲染成一堆透明的 png 图像。也许可以在 Photoshop 中进一步减小这些文件大小。当然这并不理想,并且会导致您的二进制文件大小膨胀但可以通过。

于 2015-04-28T07:27:48.857 回答
2

你试过这个吗? https://github.com/shu223/Pulsator

启动并添加到您的视图层,然后调用 start!

let pulsator = Pulsator()
view.layer.addSublayer(pulsator)
pulsator.start()
于 2016-05-24T17:14:46.853 回答
0

对于 SWIFT 3:

您可以使用 UIImage.animatedImage 作为标记的图标,如下所示:

  1. 使用不同的图像创建一个 UIImage 数组

    let image1 = UIImage(named: "marker-image-1")
    let image2 = UIImage(named: "marker-image-2")
    let image3 = UIImage(named: "marker-image-3")
    
    let imagesArray = [image1,image2,image3]
    
  2. 设置标记的图标:

    marker.icon = UIImage.animatedImage(with: imagesArray as! [UIImage], duration: 1.2)
    marker.map = mapView
    
  3. 您可以更改动画的持续时间

  4. 运行您的应用程序,您将看到带有不同图像的标记动画

于 2017-04-25T20:40:05.810 回答
-1

您可以通过更改标记图标属性来自定义标记。

例如:london.icon = [UIImage imageNamed:@"house"]; 你可以在那里给出你自己的图像或一些编辑过的图像。

如果要自定义单击标记后将显示的信息窗口。

参考那个链接

https://developers.google.com/live/shows/864758637

于 2013-08-30T09:50:08.833 回答