summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmlinterface/data/TestLocation.qml
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2012-08-16 13:32:43 +1000
committerQt by Nokia <qt-info@nokia.com>2012-08-28 10:07:49 +0200
commit059388adce26be48868cd741b4c5d751298fb4d8 (patch)
tree1a8a41c0f280b7ab3c502b49527bd609d1c0884a /tests/auto/qmlinterface/data/TestLocation.qml
parent7dd46f8c96a4bdaca2809ff97b773f358392516f (diff)
Convert GeoShape, GeoRectangle and GeoCircle into QML value types.v5.0.0-beta1
This replaces the GeoShape, GeoRectangle and GeoCircle QML elements with value types. A value type is a better fit for shape types. It is very similar to a rect with some utility functions. Declare QGeoShape, QGeoRectangle and QGeoCircle as movable types. Update documentation. Change-Id: Id6c48e1e841c68f2f0c5c6a9c4a6580a57e2dfb6 Reviewed-by: abcd <amos.choy@nokia.com>
Diffstat (limited to 'tests/auto/qmlinterface/data/TestLocation.qml')
-rw-r--r--tests/auto/qmlinterface/data/TestLocation.qml11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/auto/qmlinterface/data/TestLocation.qml b/tests/auto/qmlinterface/data/TestLocation.qml
index 97c25e5a..6ba74fd8 100644
--- a/tests/auto/qmlinterface/data/TestLocation.qml
+++ b/tests/auto/qmlinterface/data/TestLocation.qml
@@ -43,7 +43,16 @@ import QtLocation 5.0
Location {
address: TestAddress { }
- boundingBox: TestGeoRectangle { }
+ boundingBox {
+ center {
+ longitude: 10.0
+ latitude: 20.0
+ altitude: 30.0
+ }
+ height: 30.0
+ width: 40.0
+ }
+
coordinate {
longitude: 10.0
latitude: 20.0