Я использую 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.