I tried all the animation methods provided by google maps. But I fail to animate the zoomlevel of map view. I have tried mapView.animateToZoom(15). Also
UIView.animateWithDuration(5.0, animations: {
let zoomIn = GMSCameraUpdate.zoomTo(15)
self.mapView.animateToZoom(15)
})
But I fail to achieve the animation. I also followed GMSMapView animateToCameraPosition zoom in - zoom out animation
But no hope. Can anyone help please?