Swift 3和Google地图
我如何在谷歌地图上画一对动画圆圈,如下图:
我已经写了下面的代码,但仍然不是我想要的

        let circleCenter : CLLocationCoordinate2D  = CLLocationCoordinate2DMake(21.728178, 79.1201635);
    let circ = GMSCircle(position: circleCenter, radius: 10 * 1609.34)
    circ.fillColor = UIColor(red: 0.0, green: 0.7, blue: 0, alpha: 0.1)
    circ.strokeColor = UIColor(red: 255/255, green: 153/255, blue: 51/255, alpha: 0.5)
    circ.strokeWidth = 2.5;
    circ.map = self.googleMap;

最佳答案

我在这个答案链接中找到了一些与您所要查找的内容相近的内容https://stackoverflow.com/a/41185450/2397493
注意:您必须下载答案底部附带的图片,并将其命名为“pulse”:

pulseRingImg.image = UIImage(named: "pulse")

09-08 10:28