ArcGIS Runtime SDK for iOS
100.15
|
Specifies the drawing style for all polygons in a KML node.
Specifies the drawing style for all polygons, including polygon extrusions (which look like the walls of buildings) and line extrusions (which look like solid fences).
Controls how the fill of an AGSKMLNode
is displayed and whether or not the outline of an AGSKMLNode
is displayed. If the outline is displayed, the outline will use the current AGSKMLLineStyle
. Corresponds to a <PolyStyle> in a KML document.
Instance Methods | |
(instancetype) | - initWithColor: |
Class Methods | |
(instancetype) | + KMLPolygonStyleWithColor: |
Properties | |
AGSColor * | color |
AGSKMLColorMode | colorMode |
BOOL | filled |
BOOL | outlined |
- (instancetype) initWithColor: | (AGSColor *) | color |
Creates a KML polygon style with a specified fill color.
color | The style's fill color. Default is RGBA(255,255,255,255). |
+ (instancetype) KMLPolygonStyleWithColor: | (AGSColor *) | color |
Creates a KML polygon style with a specified fill color.
color | The style's fill color. Default is RGBA(255,255,255,255). |
|
readwritenonatomicstronginherited |
The color.
|
readwritenonatomicassigninherited |
The color mode.
|
readwritenonatomicassign |
Specifies whether or not to display the polygon with a filled symbol. Default is YES
.
|
readwritenonatomicassign |
Specifies whether or not to display the polygon with an outline symbol using the current AGSKMLLineStyle
. Default is YES
.