// // GMSPolygon.h // Google Maps SDK for iOS // // Copyright 2013 Google Inc. // // Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of // Service: https://developers.google.com/maps/terms // #if __has_feature(modules) @import GoogleMapsBase; #else #import #endif #import GMS_ASSUME_NONNULL_BEGIN @class GMSPath; /** * GMSPolygon defines a polygon that appears on the map. A polygon (like a polyline) defines a * series of connected coordinates in an ordered sequence; additionally, polygons form a closed loop * and define a filled region. */ @interface GMSPolygon : GMSOverlay /** The path that describes this polygon. The coordinates composing the path must be valid. */ @property(nonatomic, copy) GMSPath *GMS_NULLABLE_PTR path; /** * The array of GMSPath instances that describes any holes in this polygon. The coordinates * composing each path must be valid. */ @property(nonatomic, copy) GMS_NSArrayOf(GMSPath *) * GMS_NULLABLE_PTR holes; /** The width of the polygon outline in screen points. Defaults to 1. */ @property(nonatomic, assign) CGFloat strokeWidth; /** The color of the polygon outline. Defaults to nil. */ @property(nonatomic, strong) UIColor *GMS_NULLABLE_PTR strokeColor; /** The fill color. Defaults to blueColor. */ @property(nonatomic, strong) UIColor *GMS_NULLABLE_PTR fillColor; /** Whether this polygon should be rendered with geodesic correction. */ @property(nonatomic, assign) BOOL geodesic; /** * Convenience constructor for GMSPolygon for a particular path. Other properties will have default * values. */ + (instancetype)polygonWithPath:(GMSPath *GMS_NULLABLE_PTR)path; @end GMS_ASSUME_NONNULL_END