blob: 7c83f37e1bcbec6b3c115d2e194531c2af9ba6ff (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
import QtQuick 2.0
import QtQuick.Controls 2.2
import "qrc:/qml"
ApplicationWindow {
id: tbtnavi
title: "Turn By Turn Navigation Demo"
height: 720
width: 640
visible: true
property double vehicleSpeed: 0
property double engineSpeed: 0
Connections {
target: SignalComposer
onSignalEvent: {
//console.log ("Received uid = " + uid + ", value = " + value)
if (uid === "event.info" && value === "true") {
console.log ("Switching views!")
console.log ("currentIndex = " + container.currentIndex)
if (container.currentIndex === 0) {
console.log ("Switching to info")
container.currentIndex = 1
} else if (container.currentIndex === 1) {
console.log ("Switching to map")
container.currentIndex = 0
}
} else if (uid === "event.vehicle.speed") {
var speed_tmp = parseFloat(value)
if(units == "km/h") {
speed_tmp /= 1.609
}
vehicleSpeed = speed_tmp
} else if (uid === "event.engine.speed") {
engineSpeed = parseFloat(value)
}
}
}
Item {
id: container
anchors.centerIn: parent
width: parent.width
height: parent.height
property int currentIndex: 0
MapWindow {
visible: parent.currentIndex === 0
opacity: parent.currentIndex === 0 ? 1.0 : 0.0
anchors.fill: parent
objectName: "mapwindow"
}
InfoWindow {
visible: parent.currentIndex === 1
opacity: parent.currentIndex === 1 ? 1.0 : 0.0
anchors.fill: parent
}
}
}
|