summaryrefslogtreecommitdiffstats
path: root/examples/qmlmaps/qml/qmlmaps/main.qml
blob: 9a8fa93b109aba8ff0e39264ab2c86c477233d74 (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
/****************************************************************************
**
** 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.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise 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
**
****************************************************************************/

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
        }

        MapDataMapping {
            id: mapMapping
            labelRole: "label"
            valueRole: "value"
            xPosRole: "xPos"
            yPosRole: "yPos"
        }

        ListModel {
            id: dataModel
            ListElement{ label: "dB"; value: 76; xPos: 95.0; yPos: 490.0 }
            ListElement{ label: "dB"; value: 88; xPos: 185.0; yPos: 105.0 }
            ListElement{ label: "dB"; value: 85; xPos: 700.0; yPos: 465.0 }
            ListElement{ label: "dB"; value: 92; xPos: 505.0; yPos: 225.0 }
        }

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

            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
                data = dataModel
            }
        }
    }

    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";
                }
            }
        }
    }
}