ArcGIS Runtime SDK for iOS: AGSCostAttribute.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSCostAttribute.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, AGSAttributeUnit) {
53 };
54 
63 
64 #pragma mark -
65 #pragma mark initializers
66 
67 
68 
69 #pragma mark -
70 #pragma mark properties
71 
75 @property (nullable, nonatomic, copy, readonly) NSDictionary<NSString*,id> *parameterValues;
76 
80 @property (nonatomic, assign, readonly) AGSAttributeUnit unit;
81 
82 @end
83 
84 
AGSAttributeUnit
Definition: AGSCostAttribute.h:36
@ AGSAttributeUnitKilometers
Definition: AGSCostAttribute.h:46
@ AGSAttributeUnitFeet
Definition: AGSCostAttribute.h:39
@ AGSAttributeUnitDecimeters
Definition: AGSCostAttribute.h:44
@ AGSAttributeUnitDecimalDegrees
Definition: AGSCostAttribute.h:48
@ AGSAttributeUnitNauticalMiles
Definition: AGSCostAttribute.h:47
@ AGSAttributeUnitInches
Definition: AGSCostAttribute.h:38
@ AGSAttributeUnitMinutes
Definition: AGSCostAttribute.h:50
@ AGSAttributeUnitHours
Definition: AGSCostAttribute.h:51
@ AGSAttributeUnitCentimeters
Definition: AGSCostAttribute.h:43
@ AGSAttributeUnitMiles
Definition: AGSCostAttribute.h:41
@ AGSAttributeUnitDays
Definition: AGSCostAttribute.h:52
@ AGSAttributeUnitYards
Definition: AGSCostAttribute.h:40
@ AGSAttributeUnitUnknown
Definition: AGSCostAttribute.h:37
@ AGSAttributeUnitSeconds
Definition: AGSCostAttribute.h:49
@ AGSAttributeUnitMillimeters
Definition: AGSCostAttribute.h:42
@ AGSAttributeUnitMeters
Definition: AGSCostAttribute.h:45
A cost to travel along the edge of a transportation network.
Definition: AGSCostAttribute.h:63
AGSAttributeUnit unit
Definition: AGSCostAttribute.h:80
NSDictionary< NSString *, id > * parameterValues
Definition: AGSCostAttribute.h:75
Definition: AGSObject.h:28