QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
QGCMapLabel.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3
4import QGroundControl
5import QGroundControl.Controls
6
7/// Text control used for displaying text of Maps
8QGCLabel {
9 property var map
10
11 QGCMapPalette { id: mapPal; lightColors: map.isSatelliteMap }
12
13 color: mapPal.text
14 style: Text.Outline
15 styleColor: mapPal.textOutline
16}