aboutsummaryrefslogtreecommitdiffstats
path: root/app/qml/Main.qml
blob: 346cded855e4d4b117d64e683899b46dd061558a (plain)
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
import QtQuick 2.0
import QtQuick.Controls 2.2

import "qrc:/qml"

ApplicationWindow {
    id: window

    title: "Turn By Turn Navigation Demo"
    height: 720
    width: 640
    visible: true

    Item {
        anchors.centerIn: parent
        width: parent.width
        height: parent.height

        MapWindow {
            id: mapwindow
            anchors.fill: parent
            objectName: "mapwindow"
        }
    }
}