How set Custom Annotation markers ( animated rings around a point) on GMSMapView
使用谷歌地图 iOS SDK 我已经实现了一个 mapView
因为我创建了如下标记
1
2 3 4 5 6 7 8 9 |
// 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
谁能帮我实现这个
从 google map sdk / 看来,此时 v1.9 是唯一支持使用基于框架的图像的动画。如果您使用的是 mapkit – > 您可以简单地使用 https://github.com/TransitApp/SVPulsingAnnotationView
来自 google 的 sdk -> ios 示例
AnimatedCurrentLocationViewController.m
1
2 3 4 5 6 |
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 中进一步减小这些文件大小。当然这并不理想,并且会导致您的二进制文件大小膨胀但可以通过。
在
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
– (RMMapLayer *)mapView:(RMMapView *)mpView layerForAnnotation:(RMAnnotation *)annotation { UIImageView *pulseRingImg = [[UIImageView alloc] initWithFrame: CGRectMake(–30, –30, 78, 78)]; CABasicAnimation *theAnimation; [mapView addSubview:pulseRingImg]; return marker; } |
PulseRing.png in
获取参考来源:
ios – 如何在 UIButton
上制作原生”脉冲效果”动画
1
2 3 4 5 6 7 8 9 |
CABasicAnimation *theAnimation;
theAnimation=[CABasicAnimation animationWithKeyPath:@"opacity"]; |
你试过吗?
https://github.com/shu223/Pulsator
启动并添加到您的视图层,然后调用 start!
1
2 3 |
let pulsator = Pulsator()
view.layer.addSublayer(pulsator) pulsator.start() |
对于 SWIFT 3:
您可以使用 UIImage.animatedImage 作为标记的图标,如下所示:
用不同的图像创建一个 UIImage 数组
1
2 3 4 5 |
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] |
设置标记的图标:
1
2 |
marker.icon = UIImage.animatedImage(with: imagesArray as! [UIImage], duration: 1.2)
marker.map = mapView |
你可以改变动画的持续时间
运行您的应用程序,您将看到带有不同图像的标记动画
您可以通过更改标记图标属性来自定义标记。
例如:
london.icon = [UIImage imageNamed:@”house”];
您可以在此处提供自己的图像或一些经过编辑的图像。
如果您想自定义单击标记后将显示的信息窗口。
参考那个链接
https://developers.google.com/live/shows/864758637
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/268592.html