OfflineMap.qml 44.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 31 32 33 34 35 36 37 38
/*=====================================================================

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

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

import QtQuick                  2.5
import QtQuick.Controls         1.2
import QtQuick.Controls.Styles  1.2
import QtQuick.Dialogs          1.1
import QtQuick.Layouts          1.2
import QtLocation               5.3
import QtPositioning            5.3

import QGroundControl                       1.0
import QGroundControl.Controls              1.0
import QGroundControl.ScreenTools           1.0
import QGroundControl.Palette               1.0

Rectangle {
    id:                 _offlineMapRoot
39
    color:              qgcPal.window
dogmaphobic's avatar
dogmaphobic committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
    anchors.fill:       parent
    anchors.margins:    ScreenTools.defaultFontPixelWidth

    property var    _currentSelection: null

    property string mapKey:        "lastMapType"

    property string mapType:        QGroundControl.mapEngineManager.loadSetting(mapKey, "Google Street Map")
    property int    mapMargin:      (ScreenTools.defaultFontPixelHeight * 0.2).toFixed(0)
    property real   infoWidth:      Math.max(Math.max(nameLabel.width, descLabel.width), (ScreenTools.defaultFontPixelWidth * 40))
    property bool   isDefaultSet:   _offlineMapRoot._currentSelection && _offlineMapRoot._currentSelection.defaultSet

    property real oldlon0:      0
    property real oldlon1:      0
    property real oldlat0:      0
    property real oldlat1:      0
    property int  oldz0:        0
    property int  oldz1:        0

Don Gagne's avatar
Don Gagne committed
59 60 61
    readonly property real minZoomLevel: 3
    readonly property real maxZoomLevel: 20

62 63
    QGCPalette { id: qgcpal }

dogmaphobic's avatar
dogmaphobic committed
64 65 66 67 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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
    Component.onCompleted: {
        QGroundControl.mapEngineManager.loadTileSets()
        updateMap()
    }

    Connections {
        target: QGroundControl.mapEngineManager
        onTileSetsChanged: {
            setName.text = QGroundControl.mapEngineManager.getUniqueName()
        }
        onErrorMessageChanged: {
            errorDialog.visible = true
        }
    }

    ExclusiveGroup { id: setGroup }

    function handleChanges() {
        var xl = mapMargin
        var yl = mapMargin
        var xr = _map.width.toFixed(0)  - mapMargin
        var yr = _map.height.toFixed(0) - mapMargin
        var c0 = _map.toCoordinate(Qt.point(xl, yl))
        var c1 = _map.toCoordinate(Qt.point(xr, yr))
        if(oldlon0 !== c0.longitude || oldlat0 !== c0.latitude || oldlon1 !== c1.longitude || oldlat1 !== c1.latitude || oldz0 !== _slider0.value || oldz1 !== _slider1.value) {
            QGroundControl.mapEngineManager.updateForCurrentView(c0.longitude, c0.latitude, c1.longitude, c1.latitude, _slider0.value, _slider1.value, mapType)
        }
    }

    function checkSanity() {
        if(QGroundControl.mapEngineManager.crazySize) {
            _slider1.value = _slider1.value - 1
            handleChanges()
        }
    }

    function updateMap() {
        for (var i = 0; i < _map.supportedMapTypes.length; i++) {
            if (mapType === _map.supportedMapTypes[i].name) {
                _map.activeMapType = _map.supportedMapTypes[i]
                handleChanges()
                return
            }
        }
    }

    function showOptions() {
        _tileSetList.visible = false
        _infoView.visible = false
        _mapView.visible = false
        _optionsView.visible = true
    }

    function showMap() {
        _tileSetList.visible = false
        _infoView.visible = false
        _mapView.visible = true
        _optionsView.visible = false
    }

    function showList() {
        _tileSetList.visible = true
        _infoView.visible = false
        _mapView.visible = false
        _optionsView.visible = false
    }

    function showInfo() {
        if(_currentSelection && !_offlineMapRoot._currentSelection.deleting) {
            _tileSetList.visible = false
            _mapView.visible = false
            _infoView.visible = true
            _optionsView.visible = false
        } else
            showList()
    }

    ExclusiveGroup {
        id: _dropButtonsExclusiveGroup
    }

    onMapTypeChanged: {
        updateMap()
        QGroundControl.mapEngineManager.saveSetting(mapKey, mapType)
    }

    MessageDialog {
        id:         errorDialog
        visible:    false
        text:       QGroundControl.mapEngineManager.errorMessage
        icon:       StandardIcon.Critical
        standardButtons: StandardButton.Ok
156
        title:      qsTr("Errror Message")
dogmaphobic's avatar
dogmaphobic committed
157 158 159 160
        onYes: {
            errorDialog.visible = false
        }
    }
Don Gagne's avatar
Don Gagne committed
161

dogmaphobic's avatar
dogmaphobic committed
162 163 164 165
    Rectangle {
        id:         _offlineMapTopRect
        width:      parent.width
        height:     labelTitle.height + ScreenTools.defaultFontPixelHeight
166
        color:      qgcPal.window
dogmaphobic's avatar
dogmaphobic committed
167 168 169 170 171 172
        anchors.top: parent.top
        Row {
            spacing: ScreenTools.defaultFontPixelHeight * 2
            anchors.verticalCenter: parent.verticalCenter
            QGCLabel {
                id:         labelTitle
173
                text:       qsTr("Offline Maps")
dogmaphobic's avatar
dogmaphobic committed
174 175 176 177 178
                font.pixelSize: ScreenTools.mediumFontPixelSize
                anchors.verticalCenter: parent.verticalCenter
            }
            QGCCheckBox {
                id:         showTilePreview
179
                text:       qsTr("Show tile min/max zoom level preview")
dogmaphobic's avatar
dogmaphobic committed
180 181 182 183 184 185
                checked:    false
                visible:    _mapView.visible
                anchors.verticalCenter: parent.verticalCenter
            }
        }
    }
Don Gagne's avatar
Don Gagne committed
186

dogmaphobic's avatar
dogmaphobic committed
187 188 189 190
    QGCFlickable {
        id:                 _tileSetList
        clip:               true
        anchors.top:        _offlineMapTopRect.bottom
Don Gagne's avatar
Don Gagne committed
191 192 193
        anchors.left:       parent.left
        anchors.right:      parent.right
        anchors.bottom:     _optionsButton.top
dogmaphobic's avatar
dogmaphobic committed
194 195
        contentHeight:      _cacheList.height
        flickableDirection: Flickable.VerticalFlick
Don Gagne's avatar
Don Gagne committed
196

dogmaphobic's avatar
dogmaphobic committed
197 198
        Column {
            id:                 _cacheList
Don Gagne's avatar
Don Gagne committed
199
            width:              Math.min(parent.width, (ScreenTools.defaultFontPixelWidth  * 50).toFixed(0))
dogmaphobic's avatar
dogmaphobic committed
200 201
            anchors.margins:    ScreenTools.defaultFontPixelWidth
            spacing:            (ScreenTools.defaultFontPixelHeight * 0.5).toFixed(0)
Don Gagne's avatar
Don Gagne committed
202 203
            anchors.horizontalCenter: parent.horizontalCenter

dogmaphobic's avatar
dogmaphobic committed
204
            OfflineMapButton {
205
                text:           qsTr("Add new set")
Don Gagne's avatar
Don Gagne committed
206 207 208
                anchors.left:   parent.left
                anchors.right:  parent.right
                height:         (ScreenTools.defaultFontPixelHeight * 2).toFixed(0)
dogmaphobic's avatar
dogmaphobic committed
209 210 211 212 213 214 215 216
                onClicked: {
                    _offlineMapRoot._currentSelection = null
                    showMap()
                }
            }
            Repeater {
                model: QGroundControl.mapEngineManager.tileSets
                delegate: OfflineMapButton {
Don Gagne's avatar
Don Gagne committed
217 218 219 220 221 222
                    text:           object.name
                    size:           object.downloadStatus
                    complete:       object.complete
                    anchors.left:   parent.left
                    anchors.right:  parent.right
                    height:         (ScreenTools.defaultFontPixelHeight * 2).toFixed(0)
dogmaphobic's avatar
dogmaphobic committed
223 224 225 226 227 228 229 230
                    onClicked: {
                        _offlineMapRoot._currentSelection = object
                        showInfo()
                    }
                }
            }
        }
    }
Don Gagne's avatar
Don Gagne committed
231

dogmaphobic's avatar
dogmaphobic committed
232 233
    QGCButton {
        id:              _optionsButton
234
        text:            qsTr("Options")
dogmaphobic's avatar
dogmaphobic committed
235 236 237 238 239 240
        visible:         _tileSetList.visible
        anchors.bottom:  parent.bottom
        anchors.right:   parent.right
        anchors.margins: ScreenTools.defaultFontPixelWidth
        onClicked:       showOptions()
    }
Don Gagne's avatar
Don Gagne committed
241

dogmaphobic's avatar
dogmaphobic committed
242 243 244
    //-- Offline Map Definition
    Rectangle {
        id:                 _mapView
245
        color:              qgcPal.window
dogmaphobic's avatar
dogmaphobic committed
246 247 248 249 250 251 252 253 254 255
        width:              parent.width
        anchors.top:        _offlineMapTopRect.bottom
        anchors.bottom:     parent.bottom
        anchors.margins:    ScreenTools.defaultFontPixelWidth
        visible:            false

        Rectangle {
            width:          parent.width
            anchors.top:    parent.top
            anchors.bottom: bottomRect.top
256
            color:          (qgcPal.globalTheme === QGCPalette.Light) ? "black" : "#98aca4"
257

dogmaphobic's avatar
dogmaphobic committed
258 259 260 261 262 263 264 265
            Map {
                id:                 _map
                anchors.fill:       parent
                anchors.margins:    ScreenTools.defaultFontPixelHeight * 0.15
                center:             QGroundControl.defaultMapPosition
                gesture.flickDeceleration:  3000
                gesture.activeGestures:     MapGestureArea.ZoomGesture | MapGestureArea.PanGesture | MapGestureArea.FlickGesture
                plugin: Plugin { name: "QGroundControl" }
266 267 268 269 270 271

                Component.onCompleted: {
                    center = QGroundControl.flightMapPosition
                    zoomLevel = QGroundControl.flightMapZoom
                }

dogmaphobic's avatar
dogmaphobic committed
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
                onCenterChanged: {
                    handleChanges()
                    checkSanity()
                }
                onZoomLevelChanged: {
                    handleChanges()
                    checkSanity()
                }
                onWidthChanged: {
                    handleChanges()
                    checkSanity()
                }
                onHeightChanged: {
                    handleChanges()
                    checkSanity()
                }
288 289 290 291
                // Used to make pinch zoom work
                MouseArea {
                    anchors.fill: parent
                }
dogmaphobic's avatar
dogmaphobic committed
292
            }
293

dogmaphobic's avatar
dogmaphobic committed
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
            Rectangle {
                width:              ScreenTools.defaultFontPixelHeight * 16
                height:             ScreenTools.defaultFontPixelHeight * 9
                anchors.top:        parent.top
                anchors.left:       parent.left
                anchors.margins:    ScreenTools.defaultFontPixelHeight
                color:              "black"
                visible:            showTilePreview.checked
                Map {
                    id:                 _mapMin
                    anchors.fill:       parent
                    anchors.margins:    2
                    zoomLevel:          _slider0.value
                    center:             _map.center
                    gesture.enabled:    false
                    activeMapType:      _map.activeMapType
                    plugin: Plugin { name: "QGroundControl" }
                }
            }
            Rectangle {
                width:              ScreenTools.defaultFontPixelHeight * 16
                height:             ScreenTools.defaultFontPixelHeight * 9
                anchors.top:        parent.top
                anchors.right:      parent.right
                anchors.margins:    ScreenTools.defaultFontPixelHeight
                color:              "black"
                visible:            showTilePreview.checked
                Map {
                    id:                 _mapMax
                    anchors.fill:       parent
                    anchors.margins:    2
                    zoomLevel:          _slider1.value
                    center:             _map.center
                    gesture.enabled:    false
                    activeMapType:      _map.activeMapType
                    plugin: Plugin { name: "QGroundControl" }
                }
            }
        }
        Rectangle {
            id:     bottomRect
            width:  parent.width
            height: _controlRow.height + (ScreenTools.defaultFontPixelHeight * 2)
337
            color:  qgcPal.window
dogmaphobic's avatar
dogmaphobic committed
338 339 340 341
            anchors.bottom: parent.bottom
            Row {
                id: _controlRow
                anchors.centerIn: parent
342
                spacing: ScreenTools.defaultFontPixelWidth * 0.5
dogmaphobic's avatar
dogmaphobic committed
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
                Rectangle {
                    height:     _zoomRow.height + ScreenTools.defaultFontPixelHeight * 1.5
                    width:      _zoomRow.width  + ScreenTools.defaultFontPixelWidth
                    color:      "#98aca4"
                    border.color: "black"
                    border.width: 2
                    radius:     ScreenTools.defaultFontPixelWidth * 0.5
                    anchors.verticalCenter: parent.verticalCenter
                    Row {
                        id: _zoomRow
                        anchors.centerIn:   parent
                        Column {
                            spacing:            ScreenTools.defaultFontPixelHeight * 0.5
                            anchors.verticalCenter: parent.verticalCenter
                            Row {
                                spacing:        ScreenTools.defaultFontPixelWidth * 0.5
                                Column {
                                    anchors.verticalCenter: parent.verticalCenter
                                    Label {
362
                                        text:   qsTr("Min")
dogmaphobic's avatar
dogmaphobic committed
363 364 365 366 367 368
                                        color:  "black"
                                        width:  ScreenTools.defaultFontPixelWidth * 5
                                        font.pixelSize: ScreenTools.smallFontPixelSize
                                        horizontalAlignment: Text.AlignHCenter
                                    }
                                    Label {
369
                                        text:   qsTr("Zoom")
dogmaphobic's avatar
dogmaphobic committed
370 371 372 373 374 375 376 377
                                        color:  "black"
                                        width:  ScreenTools.defaultFontPixelWidth * 5
                                        font.pixelSize: ScreenTools.smallFontPixelSize
                                        horizontalAlignment: Text.AlignHCenter
                                    }
                                }
                                Slider {
                                    id:                 _slider0
Don Gagne's avatar
Don Gagne committed
378 379
                                    minimumValue:       minZoomLevel
                                    maximumValue:       maxZoomLevel
dogmaphobic's avatar
dogmaphobic committed
380 381 382 383 384 385 386
                                    stepSize:           1
                                    tickmarksEnabled:   false
                                    orientation:        Qt.Horizontal
                                    updateValueWhileDragging: true
                                    anchors.verticalCenter: parent.verticalCenter
                                    style: SliderStyle {
                                        groove: Rectangle {
387
                                            implicitWidth:  ScreenTools.defaultFontPixelWidth * 12
dogmaphobic's avatar
dogmaphobic committed
388 389 390 391 392 393 394 395 396
                                            implicitHeight: 4
                                            color:          "gray"
                                            radius:         4
                                        }
                                        handle: Rectangle {
                                            anchors.centerIn: parent
                                            color: control.pressed ? "white" : "lightgray"
                                            border.color: "gray"
                                            border.width:   2
397 398
                                            implicitWidth:  ScreenTools.isAndroid ? 60 : 30
                                            implicitHeight: ScreenTools.isAndroid ? 60 : 30
dogmaphobic's avatar
dogmaphobic committed
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
                                            radius:         10
                                            Label {
                                                text:  _slider0.value
                                                anchors.centerIn: parent
                                            }
                                        }
                                    }
                                    Component.onCompleted: {
                                        _slider0.value = _map.zoomLevel - 2
                                    }
                                    onValueChanged: {
                                        if(_slider1) {
                                            if(_slider0.value > _slider1.value)
                                                _slider1.value = _slider0.value
                                            else {
                                                handleChanges()
                                                checkSanity()
                                            }
                                        }
                                    }
                                }
                            }
                            Row {
                                spacing:        ScreenTools.defaultFontPixelWidth * 0.5
                                Column {
                                    anchors.verticalCenter: parent.verticalCenter
                                    Label {
426
                                        text:   qsTr("Max")
dogmaphobic's avatar
dogmaphobic committed
427 428 429 430 431 432
                                        color:  "black"
                                        width:  ScreenTools.defaultFontPixelWidth * 5
                                        font.pixelSize: ScreenTools.smallFontPixelSize
                                        horizontalAlignment: Text.AlignHCenter
                                    }
                                    Label {
433
                                        text:   qsTr("Zoom")
dogmaphobic's avatar
dogmaphobic committed
434 435 436 437 438 439 440 441
                                        color:  "black"
                                        width:  ScreenTools.defaultFontPixelWidth * 5
                                        font.pixelSize: ScreenTools.smallFontPixelSize
                                        horizontalAlignment: Text.AlignHCenter
                                    }
                                }
                                Slider {
                                    id:                 _slider1
Don Gagne's avatar
Don Gagne committed
442 443
                                    minimumValue:       minZoomLevel
                                    maximumValue:       maxZoomLevel
dogmaphobic's avatar
dogmaphobic committed
444 445 446 447 448 449 450
                                    stepSize:           1
                                    tickmarksEnabled:   false
                                    orientation:        Qt.Horizontal
                                    updateValueWhileDragging: true
                                    anchors.verticalCenter: parent.verticalCenter
                                    style: SliderStyle {
                                        groove: Rectangle {
451
                                            implicitWidth:  ScreenTools.defaultFontPixelWidth * 12
dogmaphobic's avatar
dogmaphobic committed
452 453 454 455 456 457 458 459 460
                                            implicitHeight: 4
                                            color:          "gray"
                                            radius:         4
                                        }
                                        handle: Rectangle {
                                            anchors.centerIn: parent
                                            color: control.pressed ? "white" : "lightgray"
                                            border.color: "gray"
                                            border.width:   2
461 462
                                            implicitWidth:  ScreenTools.isAndroid ? 60 : 30
                                            implicitHeight: ScreenTools.isAndroid ? 60 : 30
dogmaphobic's avatar
dogmaphobic committed
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
                                            radius:         10
                                            Label {
                                                text:  _slider1.value
                                                anchors.centerIn: parent
                                            }
                                        }
                                    }
                                    Component.onCompleted: {
                                        _slider1.value = _map.zoomLevel + 2
                                    }
                                    onValueChanged: {
                                        if(_slider1.value < _slider0.value)
                                            _slider0.value = _slider1.value
                                        else {
                                            handleChanges()
                                            checkSanity()
                                        }
                                    }
                                }
                            }
                        }
                        Column {
                            spacing:            ScreenTools.defaultFontPixelHeight * 0.5
                            anchors.verticalCenter: parent.verticalCenter
                            Label {
488
                                text:   qsTr("Tile Count")
dogmaphobic's avatar
dogmaphobic committed
489 490 491 492 493 494 495 496 497 498 499 500
                                color:  "black"
                                width:  ScreenTools.defaultFontPixelWidth * 12
                                font.pixelSize: ScreenTools.smallFontPixelSize
                                horizontalAlignment: Text.AlignHCenter
                            }
                            Label {
                                text:  QGroundControl.mapEngineManager.tileCountStr
                                color: "black"
                                width: ScreenTools.defaultFontPixelWidth * 12
                                horizontalAlignment: Text.AlignHCenter
                            }
                            Label {
501
                                text:   qsTr("Set Size (Est)")
dogmaphobic's avatar
dogmaphobic committed
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
                                color:  "black"
                                width:  ScreenTools.defaultFontPixelWidth * 12
                                font.pixelSize: ScreenTools.smallFontPixelSize
                                horizontalAlignment: Text.AlignHCenter
                            }
                            Label {
                                text:  QGroundControl.mapEngineManager.tileSizeStr
                                color: "black"
                                width: ScreenTools.defaultFontPixelWidth * 12
                                horizontalAlignment: Text.AlignHCenter
                            }
                        }
                    }
                }
                Column {
                    anchors.verticalCenter: parent.verticalCenter
                    spacing:            ScreenTools.defaultFontPixelHeight * 0.5
                    Row {
                        spacing:        ScreenTools.defaultFontPixelWidth * 2
                        QGCLabel {
522
                            text:   qsTr("Name:")
dogmaphobic's avatar
dogmaphobic committed
523 524 525 526 527 528
                            width:  ScreenTools.defaultFontPixelWidth * 10
                            anchors.verticalCenter: parent.verticalCenter
                            horizontalAlignment: Text.AlignRight
                        }
                        QGCTextField {
                            id:     setName
529
                            width:  ScreenTools.defaultFontPixelWidth * 24
dogmaphobic's avatar
dogmaphobic committed
530 531 532 533 534 535
                            anchors.verticalCenter: parent.verticalCenter
                        }
                    }
                    Row {
                        spacing: ScreenTools.defaultFontPixelWidth * 2
                        QGCLabel {
536
                            text:  qsTr("Description:")
dogmaphobic's avatar
dogmaphobic committed
537 538 539 540 541 542
                            width:  ScreenTools.defaultFontPixelWidth * 10
                            anchors.verticalCenter: parent.verticalCenter
                            horizontalAlignment: Text.AlignRight
                        }
                        QGCTextField {
                            id:     setDescription
543
                            text:   qsTr("Description")
544
                            width:  ScreenTools.defaultFontPixelWidth * 24
dogmaphobic's avatar
dogmaphobic committed
545 546 547 548 549 550
                            anchors.verticalCenter: parent.verticalCenter
                        }
                    }
                    Row {
                        spacing: ScreenTools.defaultFontPixelWidth * 2
                        QGCLabel {
551
                            text:  qsTr("Map Type:")
dogmaphobic's avatar
dogmaphobic committed
552 553 554 555 556 557
                            width:  ScreenTools.defaultFontPixelWidth * 10
                            anchors.verticalCenter: parent.verticalCenter
                            horizontalAlignment: Text.AlignRight
                        }
                        QGCComboBox {
                            id:         mapCombo
558
                            width:      ScreenTools.defaultFontPixelWidth * 24
dogmaphobic's avatar
dogmaphobic committed
559 560 561 562 563 564 565 566 567 568
                            model:      QGroundControl.mapEngineManager.mapList
                            onActivated: {
                                mapType = textAt(index)
                                if(_dropButtonsExclusiveGroup.current)
                                    _dropButtonsExclusiveGroup.current.checked = false
                                _dropButtonsExclusiveGroup.current = null
                            }
                            Component.onCompleted: {
                                var index = mapCombo.find(mapType)
                                if (index === -1) {
569
                                    console.warn(qsTr("Active map name not in combo"), mapType)
dogmaphobic's avatar
dogmaphobic committed
570 571 572 573 574 575 576 577 578
                                } else {
                                    mapCombo.currentIndex = index
                                }
                            }
                        }
                    }
                }
                Item {
                    height: 1
579
                    width:  ScreenTools.defaultFontPixelWidth * 1.5
dogmaphobic's avatar
dogmaphobic committed
580 581 582 583 584
                }
                Column {
                    anchors.verticalCenter: parent.verticalCenter
                    spacing: ScreenTools.defaultFontPixelHeight * 0.5
                    QGCButton {
585
                        text:  qsTr("Download")
dogmaphobic's avatar
dogmaphobic committed
586 587 588 589 590 591
                        enabled: setName.text.length > 0
                        width: ScreenTools.defaultFontPixelWidth * 10
                        onClicked: {
                            if(QGroundControl.mapEngineManager.findName(setName.text)) {
                                duplicateName.visible = true
                            } else {
592
                                /* This does not work if hosted by QQuickWidget. Waiting until we're 100% QtQuick
dogmaphobic's avatar
dogmaphobic committed
593 594 595 596 597 598 599 600 601 602
                                var mapImage
                                _map.grabToImage(function(result) { mapImage = result; })
                                QGroundControl.mapEngineManager.startDownload(setName.text, setDescription.text, mapType, mapImage);
                                */
                                QGroundControl.mapEngineManager.startDownload(setName.text, setDescription.text, mapType);
                                showList()
                            }
                        }
                    }
                    QGCButton {
603
                        text:  qsTr("Cancel")
dogmaphobic's avatar
dogmaphobic committed
604 605 606 607 608 609 610 611 612 613
                        width: ScreenTools.defaultFontPixelWidth * 10
                        onClicked: {
                            showList()
                        }
                    }
                    MessageDialog {
                        id:         duplicateName
                        visible:    false
                        icon:       StandardIcon.Warning
                        standardButtons: StandardButton.Ok
614 615
                        title:      qsTr("Tile Set Already Exists")
                        text:       qsTr("Tile Set \"%1\" already exists.\nPlease select a different name.").arg(setName.text)
dogmaphobic's avatar
dogmaphobic committed
616 617 618 619 620 621 622 623 624 625
                        onYes: {
                            duplicateName.visible = false
                        }
                    }
                }
            }
        }
    }
    Rectangle {
        id:                 _infoView
626
        color:              qgcPal.windowShade
dogmaphobic's avatar
dogmaphobic committed
627 628 629 630 631
        width:              parent.width
        anchors.top:        _offlineMapTopRect.bottom
        anchors.bottom:     parent.bottom
        anchors.margins:    ScreenTools.defaultFontPixelWidth
        visible:            false
dogmaphobic's avatar
dogmaphobic committed
632 633 634 635 636 637 638 639 640 641 642 643 644
        QGCFlickable {
            id:                 infoScroll
            anchors.fill:       parent
            contentHeight:      infoColumn.height
            flickableDirection: Flickable.VerticalFlick
            clip:               true
            Column {
                id:             infoColumn
                width:          parent.width
                spacing:        ScreenTools.defaultFontPixelHeight
                Item {
                    height:     ScreenTools.defaultFontPixelHeight * 0.5
                    width:      1
dogmaphobic's avatar
dogmaphobic committed
645
                }
dogmaphobic's avatar
dogmaphobic committed
646 647 648
                Rectangle {
                    width:      infoWidth
                    height:     nameLabel.height + (ScreenTools.defaultFontPixelHeight * 2)
649
                    color:      qgcPal.window
dogmaphobic's avatar
dogmaphobic committed
650 651
                    radius:     ScreenTools.defaultFontPixelHeight * 0.5
                    anchors.horizontalCenter: parent.horizontalCenter
dogmaphobic's avatar
dogmaphobic committed
652
                    QGCLabel {
dogmaphobic's avatar
dogmaphobic committed
653 654 655 656
                        id:     nameLabel
                        text:   _offlineMapRoot._currentSelection ? _offlineMapRoot._currentSelection.name : ""
                        font.pixelSize:   ScreenTools.isAndroid ? ScreenTools.mediumFontPixelSize : ScreenTools.largeFontPixelSize
                        anchors.centerIn: parent
dogmaphobic's avatar
dogmaphobic committed
657 658
                    }
                }
dogmaphobic's avatar
dogmaphobic committed
659 660 661 662 663 664 665 666 667
                QGCLabel {
                    id:     descLabel
                    text:   _offlineMapRoot._currentSelection ? _offlineMapRoot._currentSelection.description : ""
                    anchors.horizontalCenter: parent.horizontalCenter
                }
                Rectangle {
                    id:         infoRect
                    width:      infoWidth
                    height:     infoGrid.height + (ScreenTools.defaultFontPixelHeight * 4)
668
                    color:      qgcPal.window
dogmaphobic's avatar
dogmaphobic committed
669 670 671 672 673 674 675 676 677 678
                    radius:     ScreenTools.defaultFontPixelHeight * 0.5
                    anchors.horizontalCenter: parent.horizontalCenter
                    GridLayout {
                        id:                 infoGrid
                        columns:            2
                        anchors.centerIn:   parent
                        anchors.margins:    ScreenTools.defaultFontPixelWidth  * 2
                        rowSpacing:         ScreenTools.defaultFontPixelWidth
                        columnSpacing:      ScreenTools.defaultFontPixelHeight * 2
                        QGCLabel {
679
                            text:       qsTr("Map Type:")
dogmaphobic's avatar
dogmaphobic committed
680 681 682 683 684 685 686
                            visible:    !isDefaultSet
                        }
                        QGCLabel {
                            text:       _offlineMapRoot._currentSelection ? _offlineMapRoot._currentSelection.mapTypeStr : ""
                            visible:    !isDefaultSet
                        }
                        QGCLabel {
687
                            text:       qsTr("Min Zoom:")
dogmaphobic's avatar
dogmaphobic committed
688 689 690 691 692 693 694
                            visible:    !isDefaultSet
                        }
                        QGCLabel {
                            text:       _offlineMapRoot._currentSelection ? _offlineMapRoot._currentSelection.minZoom : ""
                            visible:    !isDefaultSet
                        }
                        QGCLabel {
695
                            text:       qsTr("Max Zoom:")
dogmaphobic's avatar
dogmaphobic committed
696 697 698 699 700 701 702
                            visible:    !isDefaultSet
                        }
                        QGCLabel {
                            text:       _offlineMapRoot._currentSelection ? _offlineMapRoot._currentSelection.maxZoom : ""
                            visible:    !isDefaultSet
                        }
                        QGCLabel {
703
                            text:       isDefaultSet ? qsTr("Default Set Size:") : qsTr("Total Size:")
dogmaphobic's avatar
dogmaphobic committed
704 705 706 707 708
                        }
                        QGCLabel {
                            text:       _offlineMapRoot._currentSelection ? _offlineMapRoot._currentSelection.tilesSizeStr : ""
                        }
                        QGCLabel {
709
                            text:       isDefaultSet ? qsTr("Default Set Tile Count:") : qsTr("Total Tile Count:")
dogmaphobic's avatar
dogmaphobic committed
710 711 712 713 714
                        }
                        QGCLabel {
                            text:       _offlineMapRoot._currentSelection ? _offlineMapRoot._currentSelection.numTilesStr : ""
                        }
                        QGCLabel {
715
                            text:       isDefaultSet ? qsTr("Total Size (All Sets):") : qsTr("Downloaded Size:")
dogmaphobic's avatar
dogmaphobic committed
716 717 718 719 720
                        }
                        QGCLabel {
                            text:       _offlineMapRoot._currentSelection ? _offlineMapRoot._currentSelection.savedSizeStr : ""
                        }
                        QGCLabel {
721
                            text:       isDefaultSet ? qsTr("Total Count (All Sets):") : qsTr("Downloaded Count:")
dogmaphobic's avatar
dogmaphobic committed
722 723 724 725 726
                        }
                        QGCLabel {
                            text:       _offlineMapRoot._currentSelection ? _offlineMapRoot._currentSelection.savedTilesStr : ""
                        }
                        QGCLabel {
727
                            text:       qsTr("Error Count:")
dogmaphobic's avatar
dogmaphobic committed
728 729 730 731 732 733
                            visible:    !isDefaultSet && _offlineMapRoot._currentSelection && !_offlineMapRoot._currentSelection.complete
                        }
                        QGCLabel {
                            text:       _offlineMapRoot._currentSelection ? _offlineMapRoot._currentSelection.errorCountStr : ""
                            visible:    !isDefaultSet && _offlineMapRoot._currentSelection && !_offlineMapRoot._currentSelection.complete
                        }
dogmaphobic's avatar
dogmaphobic committed
734
                    }
dogmaphobic's avatar
dogmaphobic committed
735 736 737 738 739 740 741 742 743 744
                }
                Item {
                    height:     ScreenTools.defaultFontPixelHeight * 0.5
                    width:      1
                }
                Row {
                    anchors.horizontalCenter: parent.horizontalCenter
                    spacing: ScreenTools.defaultFontPixelWidth
                    QGCButton {
                        width:      ScreenTools.defaultFontPixelWidth * 18
745
                        text:       qsTr("Delete")
dogmaphobic's avatar
dogmaphobic committed
746 747 748 749 750 751 752 753 754 755
                        enabled:    _offlineMapRoot._currentSelection && (!_offlineMapRoot._currentSelection.deleting)
                        onClicked: {
                            if(_offlineMapRoot._currentSelection)
                                deleteDialog.visible = true
                        }
                        MessageDialog {
                            id:         deleteDialog
                            visible:    false
                            icon:       StandardIcon.Warning
                            standardButtons: StandardButton.Yes | StandardButton.No
756
                            title:      qsTr("Delete Tile Set")
dogmaphobic's avatar
dogmaphobic committed
757 758
                            text:       {
                                if(_offlineMapRoot._currentSelection) {
759
                                    var blurb = qsTr("Delete %1 and all its tiles.\nIs this really what you want?").arg(_offlineMapRoot._currentSelection.name)
dogmaphobic's avatar
dogmaphobic committed
760
                                    if(_offlineMapRoot._currentSelection.defaultSet)
761
                                        return blurb + qsTr("\nNote that deleteting the Default Set deletes all tiles from all sets.")
dogmaphobic's avatar
dogmaphobic committed
762 763 764 765 766 767 768 769 770 771 772 773 774
                                    else
                                        return blurb
                                }
                                return ""
                            }
                            onYes: {
                                if(_offlineMapRoot._currentSelection)
                                    QGroundControl.mapEngineManager.deleteTileSet(_offlineMapRoot._currentSelection)
                                deleteDialog.visible = false
                                showList()
                            }
                            onNo: {
                                deleteDialog.visible = false
dogmaphobic's avatar
dogmaphobic committed
775 776
                            }
                        }
dogmaphobic's avatar
dogmaphobic committed
777 778
                    }
                    QGCButton {
779
                        text:       qsTr("Resume Download")
dogmaphobic's avatar
dogmaphobic committed
780 781 782 783
                        width:      ScreenTools.defaultFontPixelWidth * 18
                        enabled:    _offlineMapRoot._currentSelection && (!_offlineMapRoot._currentSelection.deleting && !_offlineMapRoot._currentSelection.downloading)
                        visible:    !isDefaultSet && _offlineMapRoot._currentSelection && (!_offlineMapRoot._currentSelection.complete && !_offlineMapRoot._currentSelection.downloading)
                        onClicked: {
dogmaphobic's avatar
dogmaphobic committed
784
                            if(_offlineMapRoot._currentSelection)
dogmaphobic's avatar
dogmaphobic committed
785
                                _offlineMapRoot._currentSelection.resumeDownloadTask()
dogmaphobic's avatar
dogmaphobic committed
786 787
                        }
                    }
dogmaphobic's avatar
dogmaphobic committed
788
                    QGCButton {
789
                        text:       qsTr("Cancel Download")
dogmaphobic's avatar
dogmaphobic committed
790 791 792 793 794 795 796
                        width:      ScreenTools.defaultFontPixelWidth * 18
                        enabled:    _offlineMapRoot._currentSelection && (!_offlineMapRoot._currentSelection.deleting && _offlineMapRoot._currentSelection.downloading)
                        visible:    !isDefaultSet && _offlineMapRoot._currentSelection && (!_offlineMapRoot._currentSelection.complete && _offlineMapRoot._currentSelection.downloading)
                        onClicked: {
                            if(_offlineMapRoot._currentSelection)
                                _offlineMapRoot._currentSelection.cancelDownloadTask()
                        }
dogmaphobic's avatar
dogmaphobic committed
797
                    }
dogmaphobic's avatar
dogmaphobic committed
798
                    QGCButton {
799
                        text:       qsTr("Back")
dogmaphobic's avatar
dogmaphobic committed
800 801
                        width:      ScreenTools.defaultFontPixelWidth * 18
                        onClicked:  showList()
dogmaphobic's avatar
dogmaphobic committed
802 803 804 805 806 807 808
                    }
                }
            }
        }
    }
    Rectangle {
        id:                 _optionsView
809
        color:              qgcPal.windowShade
dogmaphobic's avatar
dogmaphobic committed
810 811 812 813 814 815 816 817 818
        width:              parent.width
        anchors.top:        _offlineMapTopRect.bottom
        anchors.bottom:     parent.bottom
        anchors.margins:    ScreenTools.defaultFontPixelWidth
        visible:            false
        onVisibleChanged: {
            if(_optionsView.visible) {
                mapBoxToken.text     = QGroundControl.mapEngineManager.mapboxToken
                maxCacheSize.text    = QGroundControl.mapEngineManager.maxDiskCache
819
                maxCacheMemSize.text = QGroundControl.mapEngineManager.maxMemCache
dogmaphobic's avatar
dogmaphobic committed
820 821
            }
        }
dogmaphobic's avatar
dogmaphobic committed
822 823 824 825 826 827 828 829 830 831 832 833 834
        QGCFlickable {
            id:                 optionsScroll
            anchors.fill:       parent
            contentHeight:      optionsColumn.height
            flickableDirection: Flickable.VerticalFlick
            clip:               true
            Column {
                id:             optionsColumn
                width:          parent.width
                spacing:        ScreenTools.defaultFontPixelHeight
                Item {
                    height:     ScreenTools.defaultFontPixelHeight
                    width:      1
dogmaphobic's avatar
dogmaphobic committed
835
                }
dogmaphobic's avatar
dogmaphobic committed
836 837 838
                Rectangle {
                    width:      infoWidth
                    height:     optionsLabel.height + (ScreenTools.defaultFontPixelHeight * 2)
839
                    color:      qgcPal.window
dogmaphobic's avatar
dogmaphobic committed
840 841
                    radius:     ScreenTools.defaultFontPixelHeight * 0.5
                    anchors.horizontalCenter: parent.horizontalCenter
dogmaphobic's avatar
dogmaphobic committed
842
                    QGCLabel {
dogmaphobic's avatar
dogmaphobic committed
843
                        id:     optionsLabel
Tomaz Canabrava's avatar
Tomaz Canabrava committed
844
                        text:   qsTr("Offline Map Options")
dogmaphobic's avatar
dogmaphobic committed
845 846
                        font.pixelSize:     ScreenTools.isAndroid ? ScreenTools.mediumFontPixelSize : ScreenTools.largeFontPixelSize
                        anchors.centerIn:   parent
dogmaphobic's avatar
dogmaphobic committed
847
                    }
dogmaphobic's avatar
dogmaphobic committed
848 849 850 851 852
                }
                Rectangle {
                    id:         optionsRect
                    width:      optionsGrid.width  + (ScreenTools.defaultFontPixelWidth * 4)
                    height:     optionsGrid.height + (ScreenTools.defaultFontPixelHeight * 4)
853
                    color:      qgcPal.window
dogmaphobic's avatar
dogmaphobic committed
854 855 856 857 858 859 860 861 862
                    radius:     ScreenTools.defaultFontPixelHeight * 0.5
                    anchors.horizontalCenter: parent.horizontalCenter
                    GridLayout {
                        id:                 optionsGrid
                        columns:            2
                        anchors.centerIn:   parent
                        anchors.margins:    ScreenTools.defaultFontPixelWidth  * 2
                        rowSpacing:         ScreenTools.defaultFontPixelWidth  * 1.5
                        columnSpacing:      ScreenTools.defaultFontPixelHeight * 2
dogmaphobic's avatar
dogmaphobic committed
863
                        QGCLabel {
864
                            text:       qsTr("Max Cache Disk Size (MB):")
dogmaphobic's avatar
dogmaphobic committed
865 866 867 868 869 870 871 872
                        }
                        QGCTextField {
                            id:             maxCacheSize
                            maximumLength:  6
                            inputMethodHints: Qt.ImhDigitsOnly
                            validator: IntValidator {bottom: 1; top: 262144;}
                        }
                        QGCLabel {
873
                            text:       qsTr("Max Cache Memory Size (MB):")
dogmaphobic's avatar
dogmaphobic committed
874 875 876 877 878 879 880 881 882 883 884 885 886
                        }
                        QGCTextField {
                            id:             maxCacheMemSize
                            maximumLength:  4
                            inputMethodHints: Qt.ImhDigitsOnly
                            validator: IntValidator {bottom: 1; top: 4096;}
                        }
                        Item {
                            Layout.columnSpan:  2
                            Layout.fillWidth:   true
                            implicitHeight:     ScreenTools.defaultFontPixelHeight * 1.5
                            QGCLabel {
                                anchors.centerIn: parent
887
                                text: qsTr("Memory cache changes require a restart to take effect.")
dogmaphobic's avatar
dogmaphobic committed
888 889 890 891 892 893 894
                                font.pixelSize: ScreenTools.defaultFontPixelSize * 0.85
                            }
                        }
                        Rectangle {
                            Layout.columnSpan:  2
                            Layout.fillWidth:   true
                            implicitHeight:     1
895
                            color:              qgcPal.text
dogmaphobic's avatar
dogmaphobic committed
896 897
                        }
                        QGCLabel {
898
                            text: qsTr("MapBox Access Token")
dogmaphobic's avatar
dogmaphobic committed
899 900 901 902 903 904 905 906 907 908 909 910 911
                        }
                        QGCTextField {
                            id:                 mapBoxToken
                            Layout.fillWidth:   true
                            maximumLength:      256
                            implicitWidth :     ScreenTools.defaultFontPixelWidth * 30
                        }
                        Item {
                            Layout.columnSpan:  2
                            Layout.fillWidth:   true
                            implicitHeight:     ScreenTools.defaultFontPixelHeight * 1.5
                            QGCLabel {
                                anchors.centerIn: parent
912
                                text: qsTr("With an access token, you can use MapBox Maps.")
dogmaphobic's avatar
dogmaphobic committed
913 914
                                font.pixelSize: ScreenTools.defaultFontPixelSize * 0.85
                            }
dogmaphobic's avatar
dogmaphobic committed
915 916 917
                        }
                    }
                }
dogmaphobic's avatar
dogmaphobic committed
918 919 920 921
                Row {
                    anchors.horizontalCenter: parent.horizontalCenter
                    spacing: ScreenTools.defaultFontPixelWidth
                    QGCButton {
922
                        text:       qsTr("Save")
dogmaphobic's avatar
dogmaphobic committed
923 924 925 926 927 928 929
                        width:      ScreenTools.defaultFontPixelWidth * 18
                        onClicked:  {
                            QGroundControl.mapEngineManager.mapboxToken  = mapBoxToken.text
                            QGroundControl.mapEngineManager.maxDiskCache = parseInt(maxCacheSize.text)
                            QGroundControl.mapEngineManager.maxMemCache  = parseInt(maxCacheMemSize.text)
                            showList()
                        }
dogmaphobic's avatar
dogmaphobic committed
930
                    }
dogmaphobic's avatar
dogmaphobic committed
931
                    QGCButton {
932
                        text:       qsTr("Cancel")
dogmaphobic's avatar
dogmaphobic committed
933 934 935 936
                        width:      ScreenTools.defaultFontPixelWidth * 18
                        onClicked:  {
                            showList()
                        }
dogmaphobic's avatar
dogmaphobic committed
937 938 939 940 941 942
                    }
                }
            }
        }
    }
}