【发布时间】:2013-08-30 09:18:09
【问题描述】:
使用谷歌地图 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
谁能帮我实现这个目标
【问题讨论】:
标签: ios objective-c google-maps mapkit google-maps-sdk-ios