AI-generated Key Takeaways
- 
          GMSMutableCameraPositionis a mutable version ofGMSCameraPosition, allowing for modification of camera properties.
- 
          It provides properties to control the camera's target location ( target), zoom level (zoom), bearing/rotation (bearing), and viewing angle (viewingAngle).
- 
          Developers can use this class to create and manipulate camera positions within a map view dynamically. 
GMSMutableCameraPosition
@interface GMSMutableCameraPosition : GMSCameraPositionMutable version of GMSCameraPosition.
- 
                  
                  DeclarationSwift var target: CLLocationCoordinate2D { get set }Objective-C @property(nonatomic) CLLocationCoordinate2D target
- 
                  
                  DeclarationSwift var zoom: Float { get set }Objective-C @property(nonatomic) float zoom
- 
                  
                  DeclarationSwift var bearing: CLLocationDirection { get set }Objective-C @property(nonatomic) CLLocationDirection bearing
- 
                  
                  DeclarationSwift var viewingAngle: Double { get set }Objective-C @property(nonatomic) double viewingAngle