How set Custom Annotation markers ( animated rings around a point) on GMSMapView

前端 未结 5 1827
陌清茗
陌清茗 2020-12-29 00:23

Using Google maps iOS SDK I have implemented a mapView in that i have created markers as follows

// Creates a marker in the center of the map.
GMSMarker *mar         


        
5条回答
  •  执笔经年
    2020-12-29 00:49

    Have you tried this? https://github.com/shu223/Pulsator

    Initiate and add to your view's layer, then call start!

    let pulsator = Pulsator()
    view.layer.addSublayer(pulsator)
    pulsator.start()
    

提交回复
热议问题