ArcGIS Runtime SDK for iOS: AGSKMLNetworkLink.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSKMLNetworkLink.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/AGSKMLNode.h>
27 #import <ArcGIS/AGSKMLTypes.h>
28  //Required for Globals API doc
30 
41 
42 
43 
44 #pragma mark -
45 #pragma mark initializers
46 
47 
48 
54 -(instancetype)initWithURL:(NSURL*)URL;
55 
61 +(instancetype)KMLNetworkLinkWithURL:(NSURL*)URL;
62 
63 #pragma mark -
64 #pragma mark properties
65 
69 @property (nonatomic, assign, readwrite) AGSKMLListItemType listItemType;
70 
76 @property (nullable, nonatomic, strong, readwrite) NSURL *URL;
77 
86 @property (nonatomic, assign, readwrite) BOOL canFlyToNode;
87 
92 @property (nonatomic, copy, readonly) NSArray<AGSKMLNode*> *childNodes;
93 
99 @property (nonatomic, assign, readwrite) BOOL hasRefreshVisibility;
100 
104 @property (nonatomic, assign, readwrite, getter=isOpen) BOOL open;
105 
109 @property (nonatomic, assign, readonly, getter=isPartiallyVisible) BOOL partiallyVisible;
110 
115 @property (nonatomic, assign, readwrite) AGSKMLRefreshMode refreshMode;
116 
121 @property (nonatomic, assign, readwrite) NSTimeInterval refreshInterval;
122 
127 @property (nonatomic, assign, readwrite) AGSKMLViewRefreshMode viewRefreshMode;
128 
133 @property (nonatomic, assign, readwrite) NSTimeInterval viewRefreshTime;
134 
135 #pragma mark -
136 #pragma mark methods
137 
142 -(void)refresh;
143 
144 
145 
146 @end
NSURL * URL
Definition: AGSElevationServiceInfo.h:73
AGSKMLViewRefreshMode
Definition: AGSKMLTypes.h:70
AGSKMLRefreshMode
Definition: AGSKMLTypes.h:60
AGSKMLListItemType
Definition: AGSKMLTypes.h:48
A single node within a KML document.
Definition: AGSKMLNode.h:56