ArcGIS Runtime SDK for iOS: AGSFeatureTemplate.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSFeatureTemplate.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 2022 ESRI
3 
4  All rights reserved under the copyright laws of the United States
5  and applicable international laws, treaties, and conventions.
6 
7  This material is licensed for use under the Esri Master License
8  Agreement (MLA), and is bound by the terms of that agreement.
9  You may redistribute and use this code without modification,
10  provided you adhere to the terms of the MLA and include this
11  copyright notice.
12 
13  See use restrictions at http://www.esri.com/legal/pdfs/mla_e204_e300/english
14 
15  For additional information, contact:
16  Environmental Systems Research Institute, Inc.
17  Attn: Contracts and Legal Services Department
18  380 New York Street
19  Redlands, California, 92373
20  USA
21 
22  email: contracts@esri.com
23  */
24  //Required for Globals API doc
26 
27 #import <Foundation/Foundation.h>
28 #import <ArcGIS/AGSObject.h>
29 
30 
31 
36 typedef NS_ENUM(NSInteger, AGSDrawingTool) {
53 };
54 
64 
65 #pragma mark -
66 #pragma mark initializers
67 
68 
69 
70 #pragma mark -
71 #pragma mark properties
72 
76 @property (nonatomic, assign, readonly) AGSDrawingTool drawingTool;
77 
81 @property (nonatomic, copy, readonly) NSString *featureDescription;
82 
86 @property (nonatomic, copy, readonly) NSString *name;
87 
93 @property (nullable, nonatomic, copy, readonly) NSDictionary<NSString*,id> *prototypeAttributes;
94 
95 @end
96 
97 
AGSDrawingTool
Definition: AGSFeatureTemplate.h:36
@ AGSDrawingToolLeftArrow
Definition: AGSFeatureTemplate.h:43
@ AGSDrawingToolPoint
Definition: AGSFeatureTemplate.h:46
@ AGSDrawingToolUpArrow
Definition: AGSFeatureTemplate.h:52
@ AGSDrawingToolFreeHand
Definition: AGSFeatureTemplate.h:42
@ AGSDrawingToolAutoCompletePolygon
Definition: AGSFeatureTemplate.h:38
@ AGSDrawingToolCircle
Definition: AGSFeatureTemplate.h:39
@ AGSDrawingToolEllipse
Definition: AGSFeatureTemplate.h:41
@ AGSDrawingToolText
Definition: AGSFeatureTemplate.h:50
@ AGSDrawingToolLine
Definition: AGSFeatureTemplate.h:44
@ AGSDrawingToolRightArrow
Definition: AGSFeatureTemplate.h:49
@ AGSDrawingToolNone
Definition: AGSFeatureTemplate.h:45
@ AGSDrawingToolTriangle
Definition: AGSFeatureTemplate.h:51
@ AGSDrawingToolDownArrow
Definition: AGSFeatureTemplate.h:40
@ AGSDrawingToolUnknown
Definition: AGSFeatureTemplate.h:37
@ AGSDrawingToolRectangle
Definition: AGSFeatureTemplate.h:48
@ AGSDrawingToolPolygon
Definition: AGSFeatureTemplate.h:47
Represents all of the information needed to create a feature.
Definition: AGSFeatureTemplate.h:64
NSDictionary< NSString *, id > * prototypeAttributes
Definition: AGSFeatureTemplate.h:93
NSString * featureDescription
Definition: AGSFeatureTemplate.h:81
AGSDrawingTool drawingTool
Definition: AGSFeatureTemplate.h:76
NSString * name
Definition: AGSFeatureTemplate.h:86
Definition: AGSObject.h:28