GMSFeatureStyle
@interface GMSFeatureStyle : NSObject <NSCopying, NSMutableCopying>Specifies how a map feature should appear when displayed on a map.
- 
                  
                  Creates a new style. DeclarationObjective-C + (nonnull instancetype)styleWithFillColor:(nullable UIColor *)fillColor strokeColor:(nullable UIColor *)strokeColor strokeWidth:(CGFloat)strokeWidth;
- 
                  
                  Initializes a new style. DeclarationSwift init(fill fillColor: UIColor?, stroke strokeColor: UIColor?, strokeWidth: CGFloat)Objective-C - (nonnull instancetype)initWithFillColor:(nullable UIColor *)fillColor strokeColor:(nullable UIColor *)strokeColor strokeWidth:(CGFloat)strokeWidth;
- 
                  
                  Initializes a default style. DeclarationSwift init()Objective-C - (nonnull instancetype)init;
- 
                  
                  Specifies the fill color, including the alpha channel. DeclarationSwift @NSCopying var fillColor: UIColor? { get }Objective-C @property (nonatomic, copy, readonly, nullable) UIColor *fillColor;
- 
                  
                  Specifies the border color, including the alpha channel. DeclarationSwift @NSCopying var strokeColor: UIColor? { get }Objective-C @property (nonatomic, copy, readonly, nullable) UIColor *strokeColor;
- 
                  
                  Specifies the border width, in screen points. DeclarationSwift var strokeWidth: CGFloat { get }Objective-C @property (nonatomic, readonly) CGFloat strokeWidth;
- 
                  
                  Specifies the radius of a point. Only applies to point geometries. DeclarationSwift var pointRadius: CGFloat { get }Objective-C @property (nonatomic, readonly) CGFloat pointRadius;
- 
                  
                  DeclarationSwift func copy() -> FeatureStyleObjective-C - (GMSFeatureStyle *)copy;
- 
                  
                  DeclarationSwift func mutableCopy() -> MutableFeatureStyleObjective-C - (GMSMutableFeatureStyle *)mutableCopy;