Skip to content
Snippets Groups Projects
QGCMapLabel.qml 374 B
Newer Older
  • Learn to ignore specific revisions
  • import QtQuick          2.3
    import QtQuick.Controls 1.2
    
    
    import QGroundControl.Controls  1.0
    import QGroundControl.Palette   1.0
    
    /// Text control used for displaying text of Maps
    QGCLabel {
        property var map
    
        QGCMapPalette { id: mapPal; lightColors: map.isSatelliteMap }
    
        color:      mapPal.text
        style:      Text.Outline
        styleColor: mapPal.textOutline
    }