I want to show all the markers that are on my map, after doing some searches I found that it should be done with GMSCoordinateBounds (Google Maps SDK) I\'ve
Clean swift 3 version:
let bounds = markers.reduce(GMSCoordinateBounds()) { $0.includingCoordinate($1.position) } mapView.animate(with: .fit(bounds, withPadding: 30.0))