ArcGIS Runtime SDK for iOS: AGSSimpleRenderer.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSSimpleRenderer.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 1995-2020 ESRI
3 
4  TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL
5  Unpublished material - all rights reserved under the
6  Copyright Laws of the United States and applicable international
7  laws, treaties, and conventions.
8 
9  For additional information, contact:
10  Environmental Systems Research Institute, Inc.
11  Attn: Contracts and Legal Services Department
12  380 New York Street
13  Redlands, California, 92373
14  USA
15 
16  email: contracts@esri.com
17  */
18 
19 #import <ArcGIS/AGSRenderer.h>
20 
21 @class AGSSymbol;
22  //Required for Globals API doc
24 
38 
39 
40 #pragma mark -
41 #pragma mark initializers
42 
48 -(instancetype)initWithSymbol:(nullable AGSSymbol*)symbol;
49 
54 +(instancetype)simpleRenderer;
55 
61 +(instancetype)simpleRendererWithSymbol:(nullable AGSSymbol*)symbol;
62 
63 #pragma mark -
64 #pragma mark properties
65 
69 @property (nullable, nonatomic, strong, readwrite) AGSSymbol *symbol;
70 
74 @property (nonatomic, copy, readwrite) NSString *rendererDescription;
75 
76 /* The label for the renderer
77  @since 100
78  */
79 @property (nonatomic, copy, readwrite) NSString *label;
80 
81 #pragma mark -
82 #pragma mark methods
83 
84 
85 @end
NSString * label
Definition: AGSSimpleRenderer.h:79
An abstract base class for renderers.
Definition: AGSRenderer.h:48
A symbol used to display a graphic or a feature.
Definition: AGSSymbol.h:51
A simple renderer based on a single symbol.
Definition: AGSSimpleRenderer.h:37
instancetype simpleRenderer()
NSString * rendererDescription
Definition: AGSSimpleRenderer.h:74