ArcGIS Runtime SDK for iOS: AGSGeoElementViewshed.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSGeoElementViewshed.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 1995-2020 ESRI
3 
4  TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL
5  Unpublished material - all rights reserved under the
6  Copyright Laws of the United States and applicable international
7  laws, treaties, and conventions.
8 
9  For additional information, contact:
10  Environmental Systems Research Institute, Inc.
11  Attn: Contracts and Legal Services Department
12  380 New York Street
13  Redlands, California, 92373
14  USA
15 
16  email: contracts@esri.com
17  */
18 
19 #import <ArcGIS/AGSViewshed.h>
20 
21 @protocol AGSGeoElement;
22  //Required for Globals API doc
24 
34 
35 
36 #pragma mark -
37 #pragma mark initializers
38 
39 
40 
52 -(instancetype)initWithGeoElement:(id<AGSGeoElement>)geoElement
53  horizontalAngle:(double)horizontalAngle
54  verticalAngle:(double)verticalAngle
55  minDistance:(double)minDistance
56  maxDistance:(double)maxDistance
57  headingOffset:(double)headingOffset
58  pitchOffset:(double)pitchOffset;
59 
71 +(instancetype)geoElementViewshedWithGeoElement:(id<AGSGeoElement>)geoElement
72  horizontalAngle:(double)horizontalAngle
73  verticalAngle:(double)verticalAngle
74  minDistance:(double)minDistance
75  maxDistance:(double)maxDistance
76  headingOffset:(double)headingOffset
77  pitchOffset:(double)pitchOffset;
78 
79 #pragma mark -
80 #pragma mark properties
81 
85 @property (nonatomic, strong, readonly) id<AGSGeoElement> geoElement;
86 
90 @property (nonatomic, assign, readwrite) double headingOffset;
91 
95 @property (nonatomic, assign, readwrite) double pitchOffset;
96 
103 @property (nonatomic, assign, readwrite) double offsetX;
104 
111 @property (nonatomic, assign, readwrite) double offsetY;
112 
119 @property (nonatomic, assign, readwrite) double offsetZ;
120 
121 
122 @end
double offsetZ
Definition: AGSGeoElementViewshed.h:119
double offsetY
Definition: AGSGeoElementViewshed.h:111
double offsetX
Definition: AGSGeoElementViewshed.h:103
double pitchOffset
Definition: AGSGeoElementViewshed.h:95
double headingOffset
Definition: AGSGeoElementViewshed.h:90
Analysis of viewshed for a specified geo-element.
Definition: AGSGeoElementViewshed.h:33
An abstract representation of geographic entities on a map.
Definition: AGSGeoElement.h:37
Base class for all viewshed analysis.
Definition: AGSViewshed.h:34