QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
CorridorScanMapVisual.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3import QtLocation
4import QtPositioning
5
6import QGroundControl
7import QGroundControl.Controls
8import QGroundControl.FlightMap
9
10/// Corridor Scan Complex Mission Item visuals
11TransectStyleMapVisuals {
12 polygonInteractive: false
13
14 property bool _currentItem: object.isCurrentItem
15
16 QGCMapPolylineVisuals {
17 id: mapPolylineVisuals
18 mapControl: map
19 mapPolyline: object.corridorPolyline
20 interactive: _currentItem && parent.interactive
21 lineWidth: 3
22 lineColor: "#be781c"
23 visible: _currentItem
24 opacity: parent.opacity
25 }
26}