AI-generated Key Takeaways
- 
          GMSMapLayeris a custom subclass ofCALayerused as the layer class forGMSMapViewand should not be directly instantiated.
- 
          It provides access to the camera properties like latitude, longitude, bearing, zoom level, and viewing angle, usually controlled through GMSMapView.
- 
          Modifying or animating these properties might interrupt ongoing user gestures on the map, and user gestures during animations will halt the animation. 
GMSMapLayer
@interface GMSMapLayer : GMSCALayerGMSMapLayer is a custom subclass of CALayer, provided as the layer class on GMSMapView.
 This layer should not be instantiated directly. It provides model access to the camera normally
 defined on GMSMapView.
Modifying or animating these properties will typically interrupt any current gesture on
 GMSMapView, e.g., a user’s pan or rotation. Similarly, if a user performs an enabled gesture
 during an animation, the animation will stop ‘in-place’ (at the current presentation value).
- 
                  
                  DeclarationSwift var cameraLatitude: CLLocationDegrees { get set }Objective-C @property(nonatomic) CLLocationDegrees cameraLatitude
- 
                  
                  DeclarationSwift var cameraLongitude: CLLocationDegrees { get set }Objective-C @property(nonatomic) CLLocationDegrees cameraLongitude
- 
                  
                  DeclarationSwift var cameraBearing: CLLocationDirection { get set }Objective-C @property(nonatomic) CLLocationDirection cameraBearing
- 
                  
                  DeclarationSwift var cameraZoomLevel: Float { get set }Objective-C @property(nonatomic) float cameraZoomLevel
- 
                  
                  DeclarationSwift var cameraViewingAngle: Double { get set }Objective-C @property(nonatomic) double cameraViewingAngle