ArcGIS Runtime SDK for iOS: AGSKMLGroundOverlay.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSKMLGroundOverlay.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 #import <ArcGIS/AGSColor.h>
29 
30 @class AGSGeometry;
31 @class AGSKMLIcon;
32  //Required for Globals API doc
34 
42 
43 
44 
45 #pragma mark -
46 #pragma mark initializers
47 
48 
49 
57 - (nullable instancetype)initWithGeometry:(AGSGeometry *)geometry icon:(nullable AGSKMLIcon *)icon;
58 
66 + (nullable instancetype)KMLGroundOverlayWithGeometry:(AGSGeometry *)geometry icon:(nullable AGSKMLIcon *)icon;
67 
68 #pragma mark -
69 #pragma mark properties
70 
74 @property (nonatomic, assign, readwrite) double altitude;
75 
80 @property (nonatomic, assign, readwrite) AGSKMLAltitudeMode altitudeMode;
81 
87 @property (nullable, nonatomic, strong, readwrite) AGSColor *color;
88 
93 @property (nonatomic, assign, readwrite) NSInteger drawOrder;
94 
98 @property (nonatomic, strong, readwrite) AGSGeometry *geometry;
99 
100 
105 @property (nonatomic, assign, readwrite) double rotation;
106 
110 @property (nullable, nonatomic, strong, readwrite) AGSKMLIcon *icon;
111 
112 #pragma mark -
113 #pragma mark methods
114 
115 
116 
117 @end
#define AGSColor
Definition: AGSColor.h:34
AGSKMLAltitudeMode
Definition: AGSKMLTypes.h:33
Base class for all classes that represent geometric shapes.
Definition: AGSGeometry.h:121
A KML Ground Overlay element.
Definition: AGSKMLGroundOverlay.h:42
double rotation
Definition: AGSKMLGroundOverlay.h:105
AGSKMLIcon * icon
Definition: AGSKMLGroundOverlay.h:110
double altitude
Definition: AGSKMLGroundOverlay.h:74
AGSKMLAltitudeMode altitudeMode
Definition: AGSKMLGroundOverlay.h:80
AGSGeometry * geometry
Definition: AGSKMLGroundOverlay.h:98
AGSColor * color
Definition: AGSKMLGroundOverlay.h:87
NSInteger drawOrder
Definition: AGSKMLGroundOverlay.h:93
The KML icon of the ground and screen overlays.
Definition: AGSKMLIcon.h:40
A single node within a KML document.
Definition: AGSKMLNode.h:56