summaryrefslogtreecommitdiff
path: root/qmapwatchlet/map-liveview.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qmapwatchlet/map-liveview.qml')
-rw-r--r--qmapwatchlet/map-liveview.qml26
1 files changed, 26 insertions, 0 deletions
diff --git a/qmapwatchlet/map-liveview.qml b/qmapwatchlet/map-liveview.qml
new file mode 100644
index 0000000..e6ab4d4
--- /dev/null
+++ b/qmapwatchlet/map-liveview.qml
@@ -0,0 +1,26 @@
+import QtQuick 1.0
+import QtMobility.location 1.2
+import com.javispedro.sowatch.qmap 1.0
+
+Item {
+ MapView {
+ id: map
+ anchors.fill: parent
+ updateEnabled: watch.active
+ updateInterval: 5000;
+ }
+
+ Connections {
+ target: watch
+ onButtonPressed : {
+ switch(button) {
+ case 1:
+ map.zoomLevel -= 1;
+ break;
+ case 2:
+ map.zoomLevel += 1;
+ break;
+ }
+ }
+ }
+}