ArcGIS Runtime SDK for iOS: AGSGeoElementViewshed.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSGeoElementViewshed.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/AGSViewshed.h>
27 #import <ArcGIS/AGSGeoElement.h>
28  //Required for Globals API doc
30 
40 
41 
42 #pragma mark -
43 #pragma mark initializers
44 
45 
46 
58 -(instancetype)initWithGeoElement:(id<AGSGeoElement>)geoElement
59  horizontalAngle:(double)horizontalAngle
60  verticalAngle:(double)verticalAngle
61  minDistance:(double)minDistance
62  maxDistance:(double)maxDistance
63  headingOffset:(double)headingOffset
64  pitchOffset:(double)pitchOffset;
65 
77 +(instancetype)geoElementViewshedWithGeoElement:(id<AGSGeoElement>)geoElement
78  horizontalAngle:(double)horizontalAngle
79  verticalAngle:(double)verticalAngle
80  minDistance:(double)minDistance
81  maxDistance:(double)maxDistance
82  headingOffset:(double)headingOffset
83  pitchOffset:(double)pitchOffset;
84 
85 #pragma mark -
86 #pragma mark properties
87 
91 @property (nonatomic, strong, readonly) id<AGSGeoElement> geoElement;
92 
96 @property (nonatomic, assign, readwrite) double headingOffset;
97 
101 @property (nonatomic, assign, readwrite) double pitchOffset;
102 
109 @property (nonatomic, assign, readwrite) double offsetX;
110 
117 @property (nonatomic, assign, readwrite) double offsetY;
118 
125 @property (nonatomic, assign, readwrite) double offsetZ;
126 
127 
128 @end
Analysis of viewshed for a specified geo-element.
Definition: AGSGeoElementViewshed.h:40
double headingOffset
Definition: AGSGeoElementViewshed.h:96
id< AGSGeoElement > geoElement
Definition: AGSGeoElementViewshed.h:91
double pitchOffset
Definition: AGSGeoElementViewshed.h:101
double offsetZ
Definition: AGSGeoElementViewshed.h:125
double offsetY
Definition: AGSGeoElementViewshed.h:117
double offsetX
Definition: AGSGeoElementViewshed.h:109
Base class for all viewshed analysis.
Definition: AGSViewshed.h:42
An abstract representation of geographic entities on a map.
Definition: AGSGeoElement.h:43