FlightMap.qml 10.2 KB
Newer Older
dogmaphobic's avatar
dogmaphobic committed
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
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009, 2015 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

This file is part of the QGROUNDCONTROL project

    QGROUNDCONTROL is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    QGROUNDCONTROL is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

======================================================================*/

/**
 * @file
 *   @brief QGC Map Background
 *   @author Gus Grubba <mavlink@grubba.com>
 */

30
import QtQuick          2.4
31
import QtQuick.Controls 1.3
32 33
import QtLocation       5.3
import QtPositioning    5.3
dogmaphobic's avatar
dogmaphobic committed
34

35
import QGroundControl                       1.0
36
import QGroundControl.Controls              1.0
37
import QGroundControl.FlightMap             1.0
38 39 40
import QGroundControl.ScreenTools           1.0
import QGroundControl.MultiVehicleManager   1.0
import QGroundControl.Vehicle               1.0
41
import QGroundControl.Mavlink               1.0
dogmaphobic's avatar
dogmaphobic committed
42

43 44
Map {
    id: _map
dogmaphobic's avatar
dogmaphobic committed
45

46
    property string mapName:            'defaultMap'
47
    property string mapType:            QGroundControl.flightMapSettings.mapTypeForMapName(mapName)
48
//  property alias  mapWidgets:         controlWidgets
49 50
    property bool   isSatelliteMap:     mapType == "Satellite Map" || mapType == "Hybrid Map"

51 52 53
    readonly property real maxZoomLevel:    20

    zoomLevel:                  18
54
    center:                     QGroundControl.lastKnownHomePosition
55
    gesture.flickDeceleration:  3000
56 57
    // This no longer exists in Qt 5.6. The options below also happen the be the default anyway.
    //gesture.activeGestures:     MapGestureArea.ZoomGesture | MapGestureArea.PanGesture | MapGestureArea.FlickGesture
58

59
    plugin: Plugin { name: "QGroundControl" }
60

Don Gagne's avatar
Don Gagne committed
61
    ExclusiveGroup { id: mapTypeGroup }
62 63 64

    Component.onCompleted: onMapTypeChanged

65 66 67 68 69 70 71
    property bool _initialMapPositionSet: false
    Connections {
        target: mainWindow

        onGcsPositionChanged: {
            if (!_initialMapPositionSet) {
                _initialMapPositionSet = true
Don Gagne's avatar
Don Gagne committed
72
                center = mainWindow.gcsPosition
73 74 75 76
            }
        }
    }

77 78 79
    onMapTypeChanged: {
        QGroundControl.flightMapSettings.setMapTypeForMapName(mapName, mapType)
        var fullMapName = QGroundControl.flightMapSettings.mapProvider + " " + mapType
Don Gagne's avatar
Don Gagne committed
80
        for (var i = 0; i < _map.supportedMapTypes.length; i++) {
81
            if (fullMapName === _map.supportedMapTypes[i].name) {
Don Gagne's avatar
Don Gagne committed
82
                _map.activeMapType = _map.supportedMapTypes[i]
83
                return
Don Gagne's avatar
Don Gagne committed
84 85 86
            }
        }
    }
87

88 89 90 91 92 93 94 95 96 97 98 99
    MapQuickItem {
        anchorPoint.x:  sourceItem.width  / 2
        anchorPoint.y:  sourceItem.height / 2
        visible:        mainWindow.gcsPosition.isValid
        coordinate:     mainWindow.gcsPosition

        sourceItem: MissionItemIndexLabel {
            label: "Q"
        }
    }

    /*********************************************
100
    /// Map control widgets
101
    Column {
102
        id:                 controlWidgets
103 104 105 106
        anchors.margins:    ScreenTools.defaultFontPixelWidth
        anchors.right:      parent.right
        anchors.bottom:     parent.bottom
        spacing:            ScreenTools.defaultFontPixelWidth / 2
Don Gagne's avatar
Don Gagne committed
107
        z:                  1000    // Must be on top for clicking
Don Gagne's avatar
Don Gagne committed
108 109
        // Pinch zoom doesn't seem to be working, so zoom buttons in mobile on for now
        //visible:            !ScreenTools.isMobile
110 111 112 113 114

        Row {
            layoutDirection:    Qt.RightToLeft
            spacing:            ScreenTools.defaultFontPixelWidth / 2

115
            readonly property real _zoomIncrement: 1.0
Don Gagne's avatar
Don Gagne committed
116
            property real _buttonWidth: ScreenTools.defaultFontPixelWidth * 5
Gus Grubba's avatar
Gus Grubba committed
117

118 119
            NumberAnimation {
                id: animateZoom
Gus Grubba's avatar
Gus Grubba committed
120

121 122
                property real startZoom
                property real endZoom
Gus Grubba's avatar
Gus Grubba committed
123

124
                target:     _map
125 126 127 128
                properties: "zoomLevel"
                from:       startZoom
                to:         endZoom
                duration:   500
Gus Grubba's avatar
Gus Grubba committed
129

130 131 132 133 134
                easing {
                    type: Easing.OutExpo
                }
            }

135 136

            QGCButton {
137
                width:  parent._buttonWidth
Gus Grubba's avatar
Gus Grubba committed
138
                z:      QGroundControl.zOrderWidgets
dogmaphobic's avatar
dogmaphobic committed
139
                //iconSource: "/qmlimages/ZoomPlus.svg"
140
                text:   "+"
Gus Grubba's avatar
Gus Grubba committed
141

142
                onClicked: {
143 144 145
                    var endZoomLevel = _map.zoomLevel + parent._zoomIncrement
                    if (endZoomLevel > _map.maximumZoomLevel) {
                        endZoomLevel = _map.maximumZoomLevel
146
                    }
147
                    animateZoom.startZoom = _map.zoomLevel
148 149 150
                    animateZoom.endZoom = endZoomLevel
                    animateZoom.start()
                }
151
            }
Gus Grubba's avatar
Gus Grubba committed
152

153
            QGCButton {
154
                width:  parent._buttonWidth
Gus Grubba's avatar
Gus Grubba committed
155
                z:      QGroundControl.zOrderWidgets
dogmaphobic's avatar
dogmaphobic committed
156
                //iconSource: "/qmlimages/ZoomMinus.svg"
157
                text:   "-"
Gus Grubba's avatar
Gus Grubba committed
158

159
                onClicked: {
160 161 162
                    var endZoomLevel = _map.zoomLevel - parent._zoomIncrement
                    if (endZoomLevel < _map.minimumZoomLevel) {
                        endZoomLevel = _map.minimumZoomLevel
163
                    }
164
                    animateZoom.startZoom = _map.zoomLevel
165 166 167
                    animateZoom.endZoom = endZoomLevel
                    animateZoom.start()
                }
168
            }
169 170
        } // Row - +/- buttons
    } // Column - Map control widgets
171
*********************************************/
172 173 174 175

/*
 The slider and scale display are commented out for now to try to save real estate - DonLakeFlyer
 Not sure if I'll bring them back or not. Need room for waypoint list at bottom
Gus Grubba's avatar
Gus Grubba committed
176

177
 property variant scaleLengths: [5, 10, 25, 50, 100, 150, 250, 500, 1000, 2000, 5000, 10000, 20000, 50000, 100000, 200000, 500000, 1000000, 2000000]
Gus Grubba's avatar
Gus Grubba committed
178

179 180 181 182 183 184 185 186 187 188 189 190
    function formatDistance(meters)
    {
        var dist = Math.round(meters)
        if (dist > 1000 ){
            if (dist > 100000){
                dist = Math.round(dist / 1000)
            }
            else{
                dist = Math.round(dist / 100)
                dist = dist / 10
            }
            dist = dist + " km"
191
        }
192 193 194 195
        else{
            dist = dist + " m"
        }
        return dist
dogmaphobic's avatar
dogmaphobic committed
196 197
    }

198 199 200
        onWidthChanged: {
            scaleTimer.restart()
        }
201

202 203 204 205 206 207 208
        onHeightChanged: {
            scaleTimer.restart()
        }

        onZoomLevelChanged:{
            scaleTimer.restart()
        }
Gus Grubba's avatar
Gus Grubba committed
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
        function calculateScale() {
            var coord1, coord2, dist, text, f
            f = 0
            coord1 = map.toCoordinate(Qt.point(0,scale.y))
            coord2 = map.toCoordinate(Qt.point(0+scaleImage.sourceSize.width,scale.y))
            dist = Math.round(coord1.distanceTo(coord2))
            if (dist === 0) {
                // not visible
            } else {
                for (var i = 0; i < scaleLengths.length-1; i++) {
                    if (dist < (scaleLengths[i] + scaleLengths[i+1]) / 2 ) {
                        f = scaleLengths[i] / dist
                        dist = scaleLengths[i]
                        break;
                    }
                }
                if (f === 0) {
                    f = dist / scaleLengths[i]
                    dist = scaleLengths[i]
                }
            }
            text = formatDistance(dist)
            scaleImage.width = (scaleImage.sourceSize.width * f) - 2 * scaleImageLeft.sourceSize.width
            scaleText.text = text
        }
235

dogmaphobic's avatar
dogmaphobic committed
236 237 238 239 240 241
    QGCSlider {
        id: zoomSlider;
        minimum: map.minimumZoomLevel;
        maximum: map.maximumZoomLevel;
        opacity: 1
        visible: parent.visible
242
        z: 1000
dogmaphobic's avatar
dogmaphobic committed
243 244
        anchors {
            bottom: parent.bottom;
Don Gagne's avatar
Don Gagne committed
245 246 247
            bottomMargin:   ScreenTools.defaultFontPixelSize * (1.25)
            rightMargin:    ScreenTools.defaultFontPixelSize * (1.66)
            leftMargin:     ScreenTools.defaultFontPixelSize * (1.66)
dogmaphobic's avatar
dogmaphobic committed
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
            left: parent.left
        }
        width: parent.width - anchors.rightMargin - anchors.leftMargin
        value: map.zoomLevel
        Binding {
            target: zoomSlider; property: "value"; value: map.zoomLevel
        }
        onValueChanged: {
            map.zoomLevel = value
        }
    }

    Item {
        id: scale
        parent: zoomSlider.parent
dogmaphobic's avatar
dogmaphobic committed
263
        visible: scaleText.text !== "0 m"
264
        z: map.z + 20
dogmaphobic's avatar
dogmaphobic committed
265 266 267
        opacity: 1
        anchors {
            bottom: zoomSlider.top;
Don Gagne's avatar
Don Gagne committed
268
            bottomMargin: ScreenTools.defaultFontPixelSize * (0.66);
dogmaphobic's avatar
dogmaphobic committed
269
            left: zoomSlider.left
Don Gagne's avatar
Don Gagne committed
270
            leftMargin: ScreenTools.defaultFontPixelSize * (0.33)
dogmaphobic's avatar
dogmaphobic committed
271 272 273
        }
        Image {
            id: scaleImageLeft
274
            source: "/qmlimages/scale_end.png"
dogmaphobic's avatar
dogmaphobic committed
275 276 277 278 279
            anchors.bottom: parent.bottom
            anchors.left: parent.left
        }
        Image {
            id: scaleImage
280
            source: "/qmlimages/scale.png"
dogmaphobic's avatar
dogmaphobic committed
281 282 283 284 285
            anchors.bottom: parent.bottom
            anchors.left: scaleImageLeft.right
        }
        Image {
            id: scaleImageRight
286
            source: "/qmlimages/scale_end.png"
dogmaphobic's avatar
dogmaphobic committed
287 288 289
            anchors.bottom: parent.bottom
            anchors.left: scaleImage.right
        }
290
        QGCLabel {
dogmaphobic's avatar
dogmaphobic committed
291 292 293 294 295 296
            id: scaleText
            color: "white"
            font.weight: Font.DemiBold
            horizontalAlignment: Text.AlignHCenter
            anchors.bottom: parent.bottom
            anchors.left:   parent.left
Don Gagne's avatar
Don Gagne committed
297
            anchors.bottomMargin: ScreenTools.defaultFontPixelSize * (0.83)
dogmaphobic's avatar
dogmaphobic committed
298 299 300 301 302 303
            text: "0 m"
        }
        Component.onCompleted: {
            map.calculateScale();
        }
    }
dogmaphobic's avatar
dogmaphobic committed
304

dogmaphobic's avatar
dogmaphobic committed
305 306 307 308 309 310 311 312 313
    Timer {
        id: scaleTimer
        interval: 100
        running:  false
        repeat:   false
        onTriggered: {
            map.calculateScale()
        }
    }
314
*/
315
} // Map