ArcGIS Runtime SDK for iOS: AGSFacilityLayerDefinition.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSFacilityLayerDefinition.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 #import <ArcGIS/AGSJSONSerializable.h>
30 
31 
32 
42 
43 #pragma mark -
44 #pragma mark initializers
45 
46 
47 
56 - (instancetype)initWithLayerID:(NSString *)layerID
57  facilityIDField:(NSString *)facilityIDField
58  nameField:(NSString *)nameField
59  siteIDField:(NSString *)siteIDField;
60 
69 + (instancetype)facilityLayerDefinitionWithLayerID:(NSString *)layerID
70  facilityIDField:(NSString *)facilityIDField
71  nameField:(NSString *)nameField
72  siteIDField:(NSString *)siteIDField;
73 
74 #pragma mark -
75 #pragma mark properties
76 
80 @property (nonatomic, copy, readonly) NSString *facilityIDField;
81 
86 @property (nonatomic, copy, readonly) NSString *layerID;
87 
91 @property (nonatomic, copy, readonly) NSString *nameField;
92 
96 @property (nonatomic, copy, readonly) NSString *siteIDField;
97 
98 #pragma mark -
99 #pragma mark methods
100 
101 @end
102 
103 
Defines the properties of the layer that contains facilities for a floor-aware map or scene.
Definition: AGSFacilityLayerDefinition.h:41
NSString * layerID
Definition: AGSFacilityLayerDefinition.h:86
NSString * nameField
Definition: AGSFacilityLayerDefinition.h:91
NSString * siteIDField
Definition: AGSFacilityLayerDefinition.h:96
NSString * facilityIDField
Definition: AGSFacilityLayerDefinition.h:80
Definition: AGSObject.h:28
A protocol to convert objects to and from JSON.
Definition: AGSJSONSerializable.h:38