QGCMapBackground.qml 12.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 30
/*=====================================================================

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>
 */

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

35
import QGroundControl.Controls 1.0
36
import QGroundControl.FlightControls 1.0
37
import QGroundControl.ScreenTools 1.0
38
import QGroundControl.MavManager 1.0
dogmaphobic's avatar
dogmaphobic committed
39

40 41 42
Item {
    id:     root
    clip:   true
dogmaphobic's avatar
dogmaphobic committed
43

44 45 46 47 48 49 50 51 52 53 54
    property real   latitude:           0
    property real   longitude:          0
    property real   zoomLevel:          18
    property real   heading:            0
    property bool   alwaysNorth:        true
    property bool   interactive:        true
    property bool   showWaypoints:      false
    property string mapName:            'defaultMap'
    property alias  mapItem:            map
    property alias  waypoints:          polyLine
    property alias  mapMenu:            mapTypeMenu
55
    property alias  readOnly:           map.readOnly
56 57 58 59 60 61 62 63 64 65 66

    Component.onCompleted: {
        map.zoomLevel   = 18
        map.markers     = []
        mapTypeMenu.update();
    }

    //-- Menu to select supported map types
    Menu {
        id: mapTypeMenu
        title: "Map Type..."
Gus Grubba's avatar
Gus Grubba committed
67
        enabled: root.visible
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
        ExclusiveGroup { id: currMapType }
        function setCurrentMap(mapID) {
            for (var i = 0; i < map.supportedMapTypes.length; i++) {
                if (mapID === map.supportedMapTypes[i].name) {
                    map.activeMapType = map.supportedMapTypes[i]
                    MavManager.saveSetting(root.mapName + "/currentMapType", mapID);
                    return;
                }
            }
        }
        function addMap(mapID, checked) {
            var mItem = mapTypeMenu.addItem(mapID);
            mItem.checkable = true
            mItem.checked   = checked
            mItem.exclusiveGroup = currMapType
            var menuSlot = function() {setCurrentMap(mapID);};
            mItem.triggered.connect(menuSlot);
        }
        function update() {
            clear()
            var mapID = ''
            if (map.supportedMapTypes.length > 0)
                mapID = map.activeMapType.name;
            mapID = MavManager.loadSetting(root.mapName + "/currentMapType", mapID);
            for (var i = 0; i < map.supportedMapTypes.length; i++) {
                var name = map.supportedMapTypes[i].name;
                addMap(name, mapID === name);
            }
            if(mapID != '')
                setCurrentMap(mapID);
        }
    }
dogmaphobic's avatar
dogmaphobic committed
100 101 102

    function adjustSize() {
        if(root.visible) {
dogmaphobic's avatar
dogmaphobic committed
103
            if(true /*alwaysNorth*/) {
dogmaphobic's avatar
dogmaphobic committed
104 105 106 107 108 109 110 111 112 113 114 115 116
                map.width  = root.width;
                map.height = root.height;
            } else {
                var diag = Math.ceil(Math.sqrt((root.width * root.width) + (root.height * root.height)));
                map.width  = diag;
                map.height = diag;
            }
        } else {
            map.width  = 1;
            map.height = 1;
        }
    }

dogmaphobic's avatar
dogmaphobic committed
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
    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"
        }
        else{
            dist = dist + " m"
        }
        return dist
    }

136 137 138 139 140 141 142 143 144 145 146
    function updateWaypoints() {
        polyLine.path = []
        // Are we initialized?
        if (typeof map.markers != 'undefined' && typeof root.longitude != 'undefined') {
            map.deleteMarkers()
            if(root.showWaypoints) {
                for(var i = 0; i < MavManager.waypoints.length; i++) {
                    var coord = QtPositioning.coordinate(MavManager.waypoints[i].latitude, MavManager.waypoints[i].longitude, MavManager.waypoints[i].altitude);
                    polyLine.addCoordinate(coord);
                    map.addMarker(coord, MavManager.waypoints[i].id);
                }
147 148 149 150 151
                if (typeof MavManager.waypoints != 'undefined' && MavManager.waypoints.length > 0) {
                    root.longitude = MavManager.waypoints[0].longitude
                    root.latitude  = MavManager.waypoints[0].latitude
                }
                map.changed = false
152 153 154 155
            }
        }
    }

dogmaphobic's avatar
dogmaphobic committed
156 157
    Plugin {
        id:   mapPlugin
158
        name: "QGroundControl"
dogmaphobic's avatar
dogmaphobic committed
159 160
    }

161 162 163 164 165 166 167 168 169 170 171
    Connections {
        target: MavManager
        onWaypointsChanged: {
            root.updateWaypoints();
        }
    }

    onShowWaypointsChanged: {
        root.updateWaypoints();
    }

dogmaphobic's avatar
dogmaphobic committed
172 173
    Map {
        id: map
174 175 176 177 178 179 180 181

        property real   lon: (longitude >= -180 && longitude <= 180) ? longitude : 0
        property real   lat: (latitude  >=  -90 && latitude  <=  90) ? latitude  : 0
        property int    currentMarker
        property int    pressX : -1
        property int    pressY : -1
        property bool   changed:  false
        property bool   readOnly: false
dogmaphobic's avatar
dogmaphobic committed
182
        property variant scaleLengths: [5, 10, 25, 50, 100, 150, 250, 500, 1000, 2000, 5000, 10000, 20000, 50000, 100000, 200000, 500000, 1000000, 2000000]
183
        property variant markers
184

dogmaphobic's avatar
dogmaphobic committed
185 186 187
        plugin:     mapPlugin
        width:      1
        height:     1
dogmaphobic's avatar
dogmaphobic committed
188
        zoomLevel:  root.zoomLevel
dogmaphobic's avatar
dogmaphobic committed
189
        anchors.centerIn: parent
190
        center:     QtPositioning.coordinate(lat, lon)
191 192 193
        gesture.flickDeceleration: 3000
        gesture.enabled: root.interactive

dogmaphobic's avatar
dogmaphobic committed
194
        /*
195
        // There is a bug currently in Qt where it fails to render a map taller than 6 tiles high. Until
196
        // that's fixed, we can't rotate the map as it would require a larger map, which can easily grow
197
        // larger than 6 tiles high.
198
        // https://bugreports.qt.io/browse/QTBUG-45508
dogmaphobic's avatar
dogmaphobic committed
199 200 201 202 203
        transform: Rotation {
            origin.x: map.width  / 2
            origin.y: map.height / 2
            angle: map.visible ? (alwaysNorth ? 0 : -heading) : 0
        }
dogmaphobic's avatar
dogmaphobic committed
204 205 206 207 208 209 210 211 212 213 214 215 216 217
        */

        onWidthChanged: {
            scaleTimer.restart()
        }

        onHeightChanged: {
            scaleTimer.restart()
        }

        onZoomLevelChanged:{
            scaleTimer.restart()
        }

218 219 220 221 222 223 224 225 226 227
        MouseArea {
            anchors.fill: parent
            onDoubleClicked: {
                var coord = map.toCoordinate(Qt.point(mouse.x, mouse.y));
                map.addMarker(coord, polyLine.path.length);
                polyLine.addCoordinate(coord);
                map.changed = true;
            }
        }

228 229 230 231 232 233 234 235 236 237
        function updateMarker(coord, wpid)
        {
            if(wpid < polyLine.path.length) {
                var tmpPath = polyLine.path;
                tmpPath[wpid] = coord;
                polyLine.path = tmpPath;
                map.changed = true;
            }
        }

238 239 240 241 242 243
        function addMarker(coord, wpid)
        {
            var marker = Qt.createQmlObject ('QGCWaypoint {}', map)
            map.addMapItem(marker)
            marker.z = map.z + 1
            marker.coordinate = coord
244
            marker.waypointID = wpid
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
            // Update list of markers
            var count = map.markers.length
            var myArray = []
            for (var i = 0; i < count; i++){
                myArray.push(markers[i])
            }
            myArray.push(marker)
            markers = myArray
        }

        function deleteMarkers()
        {
            if (typeof map.markers != 'undefined') {
                var count = map.markers.length
                for (var i = 0; i < count; i++) {
                    map.markers[i].destroy()
                }
            }
            map.markers = []
264 265
        }

dogmaphobic's avatar
dogmaphobic committed
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
        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
        }
291 292 293 294 295

        MapPolyline {
            id:             polyLine
            visible:        path.length > 1 && root.showWaypoints
            line.width:     3
296
            line.color:     map.changed ? "#f97a2e" : "#e35cd8"
297 298 299
            smooth:         true
            antialiasing:   true
        }
dogmaphobic's avatar
dogmaphobic committed
300 301
    }

dogmaphobic's avatar
dogmaphobic committed
302 303 304 305 306 307
    QGCSlider {
        id: zoomSlider;
        minimum: map.minimumZoomLevel;
        maximum: map.maximumZoomLevel;
        opacity: 1
        visible: parent.visible
308
        z: 1000
dogmaphobic's avatar
dogmaphobic committed
309 310
        anchors {
            bottom: parent.bottom;
Don Gagne's avatar
Don Gagne committed
311 312 313
            bottomMargin:   ScreenTools.defaultFontPixelSize * (1.25)
            rightMargin:    ScreenTools.defaultFontPixelSize * (1.66)
            leftMargin:     ScreenTools.defaultFontPixelSize * (1.66)
dogmaphobic's avatar
dogmaphobic committed
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
            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
329
        visible: scaleText.text !== "0 m"
330
        z: map.z + 20
dogmaphobic's avatar
dogmaphobic committed
331 332 333
        opacity: 1
        anchors {
            bottom: zoomSlider.top;
Don Gagne's avatar
Don Gagne committed
334
            bottomMargin: ScreenTools.defaultFontPixelSize * (0.66);
dogmaphobic's avatar
dogmaphobic committed
335
            left: zoomSlider.left
Don Gagne's avatar
Don Gagne committed
336
            leftMargin: ScreenTools.defaultFontPixelSize * (0.33)
dogmaphobic's avatar
dogmaphobic committed
337 338 339
        }
        Image {
            id: scaleImageLeft
340
            source: "/qmlimages/scale_end.png"
dogmaphobic's avatar
dogmaphobic committed
341 342 343 344 345
            anchors.bottom: parent.bottom
            anchors.left: parent.left
        }
        Image {
            id: scaleImage
346
            source: "/qmlimages/scale.png"
dogmaphobic's avatar
dogmaphobic committed
347 348 349 350 351
            anchors.bottom: parent.bottom
            anchors.left: scaleImageLeft.right
        }
        Image {
            id: scaleImageRight
352
            source: "/qmlimages/scale_end.png"
dogmaphobic's avatar
dogmaphobic committed
353 354 355
            anchors.bottom: parent.bottom
            anchors.left: scaleImage.right
        }
356
        QGCLabel {
dogmaphobic's avatar
dogmaphobic committed
357 358 359 360 361 362
            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
363
            anchors.bottomMargin: ScreenTools.defaultFontPixelSize * (0.83)
dogmaphobic's avatar
dogmaphobic committed
364 365 366 367 368 369
            text: "0 m"
        }
        Component.onCompleted: {
            map.calculateScale();
        }
    }
dogmaphobic's avatar
dogmaphobic committed
370

dogmaphobic's avatar
dogmaphobic committed
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
    Timer {
        id: scaleTimer
        interval: 100
        running:  false
        repeat:   false
        onTriggered: {
            map.calculateScale()
        }
    }

    onVisibleChanged: {
        adjustSize();
    }

    onAlwaysNorthChanged: {
        adjustSize();
    }

    onWidthChanged: {
        adjustSize();
    }

    onHeightChanged: {
        adjustSize();
    }
dogmaphobic's avatar
dogmaphobic committed
396
}