View in QML C++ View on GitHub Sample viewer app
Show a line of sight between two moving objects.
How to use the sample
To determine if an observer can see a target, you can show a line of sight between them.
The line will be green until the line of sight is obstructed, in which case it will turn red.
By using the GeoElement variant of the line of sight, the line will automatically update when either GeoElement moves.
Use case
A line of sight between GeoElement
s (i.e. observer and target) will not remain constant whilst one or both are on the move.
A GeoElementLineOfSight
is therefore useful in cases where visibility between two GeoElement
s requires monitoring over a period of time in a partially obstructed field of view
(such as buildings in a city).
A line of sight will display between a point on the Empire State Building (observer) and a taxi (target).
The taxi will drive around a block and the line of sight should automatically update.
The taxi will be highlighted when it is visible. You can change the observer height with the slider to see how it affects the target's visibility.
How it works
Create an AnalysisOverlay
and add it to the SceneView
's analysis overlays collection.
Create a GeoElementLineOfSight
, passing in observer and target GeoElement
s (features or graphics). Add the line of sight to the analysis overlay's analyses collection.
To get the target visibility when it changes, react to the target visibility changing on the GeoElementLineOfSight
instance.
Relevant API
AnalysisOverlay
GeoElementLineOfSight
LineOfSight.targetVisibility
Offline data
Link
Local Location
Taxi CAD
<userhome>/ArcGIS/Runtime/Data/3D/dolmus\_3ds/dolmus.zip
Analysis, line of sight, visibility
Sample CodeLineOfSightGeoElement.qml
Use dark colors for code blocks Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
// [WriteFile Name=LineOfSightGeoElement, Category=Analysis]
// [Legal]
// Copyright 2019 Esri.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// [Legal]
import QtQuick
import QtQuick.Controls
import Esri.ArcGISRuntime
import Esri.ArcGISExtras
import Qt.labs.platform
Rectangle {
id: rootRectangle
clip : true
width : 800
height : 600
readonly property url dataPath : {
Qt.platform.os === "ios" ?
System.writableLocationUrl(System.StandardPathsDocumentsLocation) + "/ArcGIS/Runtime/Data/3D/dolmus_3ds/dolmus.3ds" :
System.writableLocationUrl(System.StandardPathsHomeLocation) + "/ArcGIS/Runtime/Data/3D/dolmus_3ds/dolmus.3ds"
}
property int waypointIndex : 0
// Mutable point of where observer is going to be.
PointBuilder {
id: observationPointBuilder
x : -73.9853
y : 40.7484
z : 200
SpatialReference { wkid : 4326 }
}
// List of all waypoints taxi travels around.
property list<Point> waypoints : [
Point {
x : -73.984513
y : 40.748469
z : 2
spatialReference : SpatialReference { wkid : 4326 }
},
Point {
x : -73.985068
y : 40.747786
z : 2
spatialReference : SpatialReference { wkid : 4326 }
},
Point {
x : -73.983452
y : 40.747091
z : 2
spatialReference : SpatialReference { wkid : 4326 }
},
Point {
x : -73.982961
y : 40.747762
z : 2
spatialReference : SpatialReference { wkid : 4326 }
}
]
Camera {
id: camera
location : observationPointBuilder.geometry
distance : 700
heading : -30
pitch : 45
roll : 0
}
SceneView {
id: view
anchors.fill : parent
Component.onCompleted : {
// Set the focus on SceneView to initially enable keyboard navigation
forceActiveFocus();
}
// Slider that alters the z-height of the observation point.
Rectangle {
anchors {
margins : 5
left : parent .left
top : parent .top
bottom : view.attributionTop
}
color : Qt.rgba( 0.7 , 0.7 , 0.7 , 0.7 );
radius : 10
width : childrenRect.width
Slider {
id: heightSlider
anchors {
top : parent .top
bottom : parent .bottom
margins : 5
}
from : 150
to : 300
stepSize : 10
value : observationPointBuilder.z
orientation : Qt.Vertical
onMoved : {
observationPointBuilder.z = value;
observer.geometry = observationPointBuilder.geometry;
}
}
}
Scene {
Basemap {
initStyle : Enums.BasemapStyleArcGISImageryStandard
}
Surface {
ArcGISTiledElevationSource {
url : "https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer"
}
}
ArcGISSceneLayer {
url : "https://tiles.arcgis.com/tiles/z2tnIkrLQ2BRzr6P/arcgis/rest/services/New_York_LoD2_3D_Buildings/SceneServer/layers/0"
}
onLoadStatusChanged : {
if (loadStatus === Enums.LoadStatusLoaded) {
view.setViewpointCameraAndSeconds(camera, 0 );
}
}
}
// Line of sight between observer and taxi.
AnalysisOverlay {
GeoElementLineOfSight {
id: lineOfSight
observerGeoElement : observer
targetGeoElement : taxi
}
}
// Taxi and observer added to overlay.
GraphicsOverlay {
LayerSceneProperties {
// Note all Z-heights are relative to surface.
surfacePlacement : Enums.SurfacePlacementRelative
}
SimpleRenderer {
// Specific attribute so taxi will orient itself correctly.
RendererSceneProperties {
headingExpression : "[HEADING]"
}
}
// Draw observer.
Graphic {
id: observer
geometry : observationPointBuilder.geometry
SimpleMarkerSymbol {
style : Enums.SimpleMarkerSymbolStyleCircle
color : "red"
size : 5
}
}
// Draw taxi
Graphic {
id: taxi
geometry : waypoints[ 0 ]
selected : lineOfSight.targetVisibility === Enums.LineOfSightTargetVisibilityVisible
Component.onCompleted : {
// Append additional attribute for orientation.
attributes.insertAttribute( "HEADING" , 0.0 );
}
ModelSceneSymbol {
id: taxiSymbol
url : dataPath
scale : 1.0
}
}
}
}
Timer {
id: animation
interval : 100
running : true
repeat : true
onTriggered : animate();
}
LinearUnit {
id: metres
linearUnitId : Enums.LinearUnitIdMeters
}
AngularUnit {
id: degrees
angularUnitId : Enums.AngularUnitIdDegrees
}
function animate ( ) {
// Get current goal waypoint and taxi location.
const waypoint = waypoints[waypointIndex];
let location = taxi.geometry;
// Discover the azimuth between these two points.
const distance = GeometryEngine.distanceGeodetic(
location, waypoint, metres, degrees,
Enums.GeodeticCurveTypeGeodesic);
// Move the taxi location along 1 metre in the direction of the azimuth. Update the taxi.
const points = GeometryEngine.moveGeodetic(
[location], 1.0 , metres, distance.azimuth1, degrees,
Enums.GeodeticCurveTypeGeodesic);
if (points.length > 0 ) {
location = points[ 0 ];
}
taxi.geometry = location;
taxi.attributes.replaceAttribute( "HEADING" , distance.azimuth1);
// When taxi is close enough to goal point then update waypoint.
if (distance.distance <= 2 ) {
waypointIndex = (waypointIndex + 1 ) % waypoints.length;
}
}
}