动画用户位置圈swift 3 +谷歌地图

时间:2017-08-23 13:37:52

标签: ios swift google-maps swift3

Swift 3和谷歌地图

如何在Google地图上绘制一个动画的几个圆圈,例如此图片:

image

我已经编写了以下代码,但仍然不是我想要的

        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;

1 个答案:

答案 0 :(得分:0)

我通过此回答链接https://stackoverflow.com/a/41185450/2397493

找到了您正在寻找的内容

注意:您必须在答案底部下载所包含的图像,并将其命名为“#34; pluse"”,我知道有一个拼写错误,但重点是命名,并确保名称等于图片的名称在此行的代码中:

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

玩得开心:)