如何在gmsmap视图上显示闪烁的gms标记?

时间:2013-12-10 06:22:18

标签: ios google-maps

我正在使用谷歌地图,我使用了 GMS地图视图。在地图视图中,我为当前位置创建了一个 GMS标记它使用当前纬度和经度值每秒更新一次。我使用了这段代码:

mMapView = [[GMSMapView alloc]init];
mMapView.delegate = self;
mMapView.myLocationEnabled = YES;
mMapView.frame = CGRectMake(0, 95, self.view.frame.size.width,self.view.frame.size.height -205);

GMSMarker *disMarker = [GMSMarker markerWithPosition:coordinateEndLocation];
disMarker.snippet = @"current Location";
disMarker.animated = YES;
disMarker.map = mMapView;

但是我希望这个标记应该在每秒都闪烁,并且这个标记不闪烁。任何建议?

1 个答案:

答案 0 :(得分:0)

GMSMarker默认不提供闪烁标记..您必须自己创建1 ..您可以尝试使用计时器闪烁标记并将标记的不透明度属性更改为0到1之间。{{1看看你的GMSMarker的这个属性