QGCMapBackground.qml 7.35 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 31 32 33
/*=====================================================================

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
import QtPositioning 5.3
import QtLocation 5.3

34
import QGroundControl.Controls 1.0
35
import QGroundControl.FlightControls 1.0
36
import QGroundControl.ScreenTools 1.0
dogmaphobic's avatar
dogmaphobic committed
37

dogmaphobic's avatar
dogmaphobic committed
38 39
Rectangle {
    id: root
40
    property ScreenTools __screenTools: ScreenTools { }
dogmaphobic's avatar
dogmaphobic committed
41 42
    property real latitude:     37.803784
    property real longitude :   -122.462276
43
    property real zoomLevel:    18
dogmaphobic's avatar
dogmaphobic committed
44 45
    property real heading:      0
    property bool alwaysNorth:  true
46
    property bool interactive:  true
dogmaphobic's avatar
dogmaphobic committed
47 48 49 50 51 52 53
    property alias mapItem:     map

    color: Qt.rgba(0,0,0,0)
    clip: true

    function adjustSize() {
        if(root.visible) {
dogmaphobic's avatar
dogmaphobic committed
54
            if(true /*alwaysNorth*/) {
dogmaphobic's avatar
dogmaphobic committed
55 56 57 58 59 60 61 62 63 64 65 66 67
                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
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    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
    }

dogmaphobic's avatar
dogmaphobic committed
87 88
    Plugin {
        id:   mapPlugin
89
        name: "QGroundControl"
dogmaphobic's avatar
dogmaphobic committed
90 91 92 93
    }

    Map {
        id: map
dogmaphobic's avatar
dogmaphobic committed
94 95 96
        property real lon: (longitude >= -180 && longitude <= 180) ? longitude : 0
        property real lat: (latitude  >=  -90 && latitude  <=  90) ? latitude  : 0
        property variant scaleLengths: [5, 10, 25, 50, 100, 150, 250, 500, 1000, 2000, 5000, 10000, 20000, 50000, 100000, 200000, 500000, 1000000, 2000000]
dogmaphobic's avatar
dogmaphobic committed
97 98 99
        plugin:     mapPlugin
        width:      1
        height:     1
dogmaphobic's avatar
dogmaphobic committed
100
        zoomLevel:  root.zoomLevel
dogmaphobic's avatar
dogmaphobic committed
101
        anchors.centerIn: parent
102
        center:     QtPositioning.coordinate(lat, lon)
dogmaphobic's avatar
dogmaphobic committed
103
        /*
104 105 106
        // There is a bug currently in Qt where it fails to render a map taller than 6 tiles high. Until
        // that's fixed, we can't rotate the map as it would require a larger map, which can easely grow
        // larger than 6 tiles high.
dogmaphobic's avatar
dogmaphobic committed
107 108 109 110 111
        transform: Rotation {
            origin.x: map.width  / 2
            origin.y: map.height / 2
            angle: map.visible ? (alwaysNorth ? 0 : -heading) : 0
        }
dogmaphobic's avatar
dogmaphobic committed
112
        */
dogmaphobic's avatar
dogmaphobic committed
113
        gesture.flickDeceleration: 3000
114
        gesture.enabled: root.interactive
dogmaphobic's avatar
dogmaphobic committed
115 116 117 118 119 120 121 122 123 124 125 126 127

        onWidthChanged: {
            scaleTimer.restart()
        }

        onHeightChanged: {
            scaleTimer.restart()
        }

        onZoomLevelChanged:{
            scaleTimer.restart()
        }

128 129 130 131
        Component.onCompleted: {
            map.zoomLevel = 18
        }

dogmaphobic's avatar
dogmaphobic committed
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
        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
        }
dogmaphobic's avatar
dogmaphobic committed
157 158
    }

dogmaphobic's avatar
dogmaphobic committed
159 160 161 162 163 164
    QGCSlider {
        id: zoomSlider;
        minimum: map.minimumZoomLevel;
        maximum: map.maximumZoomLevel;
        opacity: 1
        visible: parent.visible
165
        z: map.z + 20
dogmaphobic's avatar
dogmaphobic committed
166 167
        anchors {
            bottom: parent.bottom;
168 169 170
            bottomMargin:   __screenTools.pixelSizeFactor * (15)
            rightMargin:    __screenTools.pixelSizeFactor * (20)
            leftMargin:     __screenTools.pixelSizeFactor * (20)
dogmaphobic's avatar
dogmaphobic committed
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
            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
186
        visible: scaleText.text !== "0 m"
187
        z: map.z + 20
dogmaphobic's avatar
dogmaphobic committed
188 189 190
        opacity: 1
        anchors {
            bottom: zoomSlider.top;
191
            bottomMargin: __screenTools.pixelSizeFactor * (8);
dogmaphobic's avatar
dogmaphobic committed
192
            left: zoomSlider.left
193
            leftMargin: __screenTools.pixelSizeFactor * (4)
dogmaphobic's avatar
dogmaphobic committed
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
        }
        Image {
            id: scaleImageLeft
            source: "/qml/scale_end.png"
            anchors.bottom: parent.bottom
            anchors.left: parent.left
        }
        Image {
            id: scaleImage
            source: "/qml/scale.png"
            anchors.bottom: parent.bottom
            anchors.left: scaleImageLeft.right
        }
        Image {
            id: scaleImageRight
            source: "/qml/scale_end.png"
            anchors.bottom: parent.bottom
            anchors.left: scaleImage.right
        }
213
        QGCLabel {
dogmaphobic's avatar
dogmaphobic committed
214 215 216 217 218 219
            id: scaleText
            color: "white"
            font.weight: Font.DemiBold
            horizontalAlignment: Text.AlignHCenter
            anchors.bottom: parent.bottom
            anchors.left:   parent.left
220
            anchors.bottomMargin: __screenTools.pixelSizeFactor * (10)
dogmaphobic's avatar
dogmaphobic committed
221 222 223 224 225 226
            text: "0 m"
        }
        Component.onCompleted: {
            map.calculateScale();
        }
    }
dogmaphobic's avatar
dogmaphobic committed
227

dogmaphobic's avatar
dogmaphobic committed
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
    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
253
}