diff options
author | Juha Vuolle <juha.vuolle@nokia.com> | 2011-12-12 16:30:53 +0200 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2011-12-13 10:50:46 +0100 |
commit | 73790e789c095f06ea4467e501cea315d758a4f5 (patch) | |
tree | 53acf95dbe77a51e879e7ebd87eb3f54e5b2e92a /tests/applications | |
parent | 9655258398566a408a90d820ad9988b437b8de3f (diff) | |
download | qtlocation-73790e789c095f06ea4467e501cea315d758a4f5.tar.gz |
First set of map(-item, -view) quick autotests.
Fixed misc findings.
Change-Id: I8dce4e6ac557a4a2abaff0c0676c62c383b1e901
Reviewed-by: Juha Vuolle <juha.vuolle@nokia.com>
Diffstat (limited to 'tests/applications')
-rw-r--r-- | tests/applications/declarative_map/map3d.qml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/applications/declarative_map/map3d.qml b/tests/applications/declarative_map/map3d.qml index be8b0b51..c05e37f3 100644 --- a/tests/applications/declarative_map/map3d.qml +++ b/tests/applications/declarative_map/map3d.qml @@ -534,10 +534,9 @@ Rectangle { z: 11 objectName: "3d item" coordinate: londonCoordinate - sourceItem: Item {//Rectangle { + sourceItem: Item { width: 200 height: 200 - //color: Qt.rgba(0, 0, 1, 0) Viewport { width: 200 height: 200 @@ -600,9 +599,9 @@ Rectangle { } */ - /* + MapItemView { - id: theObjectView + id: theItemView model: testModel delegate: Component { MapQuickItem { @@ -637,7 +636,6 @@ Rectangle { } } } - */ // From location.test plugin PinchGenerator { @@ -827,7 +825,7 @@ Rectangle { //flick.onMovementEnded: {console.log ('movement ended signal M Stop ------------------ ') } onWheel: { - console.log('map wheel event, rotation in degrees: ' + delta/8); + //console.log('map wheel event, rotation in degrees: ' + delta/8); if (delta > 0) map.zoomLevel += 0.25 else map.zoomLevel -= 0.25 } |