ArcGIS Runtime SDK for iOS: AGSLayerTimeInfo.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSLayerTimeInfo.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 
25 #import <Foundation/Foundation.h>
26 #import <ArcGIS/AGSObject.h>
27 #import <ArcGIS/AGSTimeValue.h>
28 
29 @class AGSTimeReference;
30 @class AGSTimeExtent;
31  //Required for Globals API doc
33 
42 
43 
44 #pragma mark -
45 #pragma mark initializers
46 
47 
48 
49 #pragma mark -
50 #pragma mark properties
51 
55 @property (nonatomic, copy, readonly) NSString *startTimeField;
56 
60 @property (nonatomic, copy, readonly) NSString *endTimeField;
61 
65 @property (nonatomic, copy, readonly) NSString *trackIDField;
66 
70 @property (nullable, nonatomic, strong, readonly) AGSTimeReference *timeReference;
71 
75 @property (nonatomic, assign, readonly) long long timeInterval;
76 
80 @property (nonatomic, assign, readonly) AGSTimeUnit timeUnit;
81 
86 @property (nonatomic, assign, readonly) BOOL hasLiveData;
87 
91 @property (nullable, nonatomic, strong, readonly) AGSTimeValue *interval;
92 
96 @property (nullable, nonatomic, strong, readonly) AGSTimeExtent *timeExtent;
97 
98 #pragma mark -
99 #pragma mark methods
100 
101 
102 @end
AGSTimeUnit
Definition: AGSTimeValue.h:37
Time information details.
Definition: AGSLayerTimeInfo.h:42
NSString * trackIDField
Definition: AGSLayerTimeInfo.h:65
AGSTimeValue * interval
Definition: AGSLayerTimeInfo.h:91
BOOL hasLiveData
Definition: AGSLayerTimeInfo.h:86
NSString * endTimeField
Definition: AGSLayerTimeInfo.h:60
AGSTimeExtent * timeExtent
Definition: AGSLayerTimeInfo.h:96
long long timeInterval
Definition: AGSLayerTimeInfo.h:75
AGSTimeUnit timeUnit
Definition: AGSLayerTimeInfo.h:80
AGSTimeReference * timeReference
Definition: AGSLayerTimeInfo.h:70
NSString * startTimeField
Definition: AGSLayerTimeInfo.h:55
Definition: AGSObject.h:28
Represents a span of time between a start time and end time.
Definition: AGSTimeExtent.h:42
Contains information about how the time was measured.
Definition: AGSTimeReference.h:41
Defines a period of time.
Definition: AGSTimeValue.h:58