ArcGIS Runtime SDK for iOS: AGSGeoElementLineOfSight.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSGeoElementLineOfSight.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/AGSLineOfSight.h>
27 #import <ArcGIS/AGSGeoElement.h>
28  //Required for Globals API doc
30 
44 
45 
46 #pragma mark -
47 #pragma mark initializers
48 
49 
50 
58 -(instancetype)initWithObserverGeoElement:(id<AGSGeoElement>)observerGeoElement targetGeoElement:(id<AGSGeoElement>)targetGeoElement;
59 
67 +(instancetype)lineOfSightWithObserverGeoElement:(id<AGSGeoElement>)observerGeoElement targetGeoElement:(id<AGSGeoElement>)targetGeoElement;
68 
69 #pragma mark -
70 #pragma mark properties
71 
76 @property (nonatomic, strong, readonly) id<AGSGeoElement> observerGeoElement;
77 
81 @property (nonatomic, assign, readwrite) double observerOffsetX;
82 
86 @property (nonatomic, assign, readwrite) double observerOffsetY;
87 
91 @property (nonatomic, assign, readwrite) double observerOffsetZ;
92 
97 @property (nonatomic, strong, readonly) id<AGSGeoElement> targetGeoElement;
98 
102 @property (nonatomic, assign, readwrite) double targetOffsetX;
103 
107 @property (nonatomic, assign, readwrite) double targetOffsetY;
108 
112 @property (nonatomic, assign, readwrite) double targetOffsetZ;
113 
114 #pragma mark -
115 #pragma mark methods
116 
117 
118 @end
Analysis of visibility along a line between two geo-elements.
Definition: AGSGeoElementLineOfSight.h:44
double observerOffsetY
Definition: AGSGeoElementLineOfSight.h:86
double targetOffsetX
Definition: AGSGeoElementLineOfSight.h:102
double targetOffsetY
Definition: AGSGeoElementLineOfSight.h:107
double observerOffsetZ
Definition: AGSGeoElementLineOfSight.h:91
id< AGSGeoElement > targetGeoElement
Definition: AGSGeoElementLineOfSight.h:97
double observerOffsetX
Definition: AGSGeoElementLineOfSight.h:81
double targetOffsetZ
Definition: AGSGeoElementLineOfSight.h:112
id< AGSGeoElement > observerGeoElement
Definition: AGSGeoElementLineOfSight.h:76
Base class for all line-of-sight analysis.
Definition: AGSLineOfSight.h:53
An abstract representation of geographic entities on a map.
Definition: AGSGeoElement.h:43