Анимация удаления маркера карты Google в Swift - PullRequest
0 голосов
/ 09 мая 2018

enter image description here Я использую Google Maps в Swift с кластеризацией. Теперь я хочу показать анимацию на маркерах (Drop Animation). Я проверил на Google и нашел ссылку, показанную ниже: https://developers.google.com/maps/documentation/javascript/examples/marker-animations

But it's HTML & Javascript code.Now I need to implement same animation in Swift. Please check my code show below:-                           

marker.position = CLLocationCoordinate2D(latitude: Double(self.LocalDataStore[i].Latitude)!, longitude: Double(self.LocalDataStore[i].Longitude)!)
marker.title = self.LocalDataStore[i].postTitle
marker.snippet = self.LocalDataStore[i].postContent
marker.appearAnimation = GMSMarkerAnimation.pop
marker.infoWindowAnchor = CGPoint(x: 0.5, y: 0.2)
marker.accessibilityLabel = "\(i)"

I have used pop animation also, But now i need drop animation. Can anybody help me.
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...