2019-10-14a few seconds read (About 33 words)How to zoom to fit many coordinates in Google Maps in iOSIssue #463 12345func zoom(location1: CLLocation, location2: CLLocation) { let bounds = GMSCoordinateBounds(coordinate: location1.coordinate, coordinate: location2.coordinate) let update = GMSCameraUpdate.fit(bounds, withPadding: 16) mapView.animate(with: update)}#swiftiOS