aboutsummaryrefslogtreecommitdiffstats
path: root/app/qml/Main.qml
blob: 4139cb976cc3ba48fcd2ddd5cd100f29ec06db28 (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"
        }
    }
}