summaryrefslogtreecommitdiffstats
path: root/examples/qmlmaps/qml/qmlmaps/main.qml
blob: cfa98d3a298664aefc55f217d92a9488d47bb30b (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
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
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the QtDataVis3D module.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/

import QtQuick 2.1
import QtQuick.Controls 1.0
import com.digia.QtDataVis3D 1.0

Item {
    id: mainview
    width: 800
    height: 500
    visible: true
    //title: "Noise levels from construction site"

    Item {
        id: dataView
        width: parent.width
        height: parent.height - shadowToggle.height
        anchors.bottom: parent.bottom

        Image {
            id: testimage
            source: "qrc:/images/floorplan.jpg"
            visible: false
        }

        DataItem {
            id: testitem1
            label: "dB"
            value: 76
            position: "95.0, 490.0"
        }
        DataItem {
            id: testitem2
            label: "dB"
            value: 88
            position: "185.0, 105.0"
        }
        DataItem {
            id: testitem3
            label: "dB"
            value: 85
            position: "700.0, 465.0"
        }
        DataItem {
            id: testitem4
            label: "dB"
            value: 92
            position: "505.0, 225.0"
        }

        Maps3D {
            id: testmap
            width: dataView.width
            height: dataView.height
            fontSize: 300.0

            Component.onCompleted: {
                console.log("testmap complete");
                console.log(testimage);
                console.log(testimage.sourceSize);
                setBarSpecs(Qt.vector3d(10.0, 10.0, 10.0));
                setAreaSpecs(Qt.rect(0, 0, testimage.sourceSize.width, testimage.sourceSize.height),
                             testimage);
                //setImage(testimage);
                setImage(":/images/floorplan.jpg");
                shadowQuality = Maps3D.ShadowNone
                selectionMode = Maps3D.ModeBar
                labelTransparency = Maps3D.TransparencyNoBackground//.TransparencyFromTheme
                addDataItem(testitem1);
                addDataItem(testitem2);
                addDataItem(testitem3);
                addDataItem(testitem4);
            }
        }
    }

    Component.onCompleted: {
        console.log("mainview complete");
    }

    Rectangle {
        id: shadowToggle
        color: "#FFFFFF"
        x: 0
        y: 0
        width: parent.width
        height: 60

        TextArea {
            id: buttonText
            text: "Toggle Shadows"
            anchors.fill: parent
            textColor: "#000000"
        }

        MouseArea {
            anchors.fill: parent
            onClicked: {
                if (testmap.shadowQuality === Maps3D.ShadowNone) {
                    testmap.shadowQuality = Maps3D.ShadowLow;
                    buttonText.textColor = "#999999";
                } else {
                    testmap.shadowQuality = Maps3D.ShadowNone;
                    buttonText.textColor = "#000000";
                }
            }
        }
    }
}