1
私はGMaps SDK for Swiftを使用しています。私の目標は脈動効果のようなアニメーションタイプの標準マーカーを置き換えることです。私は層で遊んだが運がなかった。どのように私のマーカー画像にアニメーション効果を追加することができますか?Google Maps Swiftの脈動マーカーアニメーション
let parkingSpotsPosition = CLLocationCoordinate2D(latitude: self.SpotLocationLatitudes.last!, longitude: self.SpotLocationLongitudes.last!)
let marker = GMSMarker(position: parkingSpotsPosition)
marker.title = self.SpotNames.last
//marker.icon = GMSMarker.markerImageWithColor(UIColor.greenColor())
marker.icon = UIImage(named: "parking-location")
marker.map = self.gMapsView
が重複する可能性:// stackoverflowの.com/questions/18529248/how-set-custom-annotation-marker-animated-rings-around-a-point-on-gmsmapview –
本当ですが、問題はまだ存在しています –