diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2012-08-19 17:49:36 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2012-08-19 17:49:36 +0200 |
commit | 0bb38d4e1b84a11e8fdfaae2e46b66c101fda40e (patch) | |
tree | e0033617bfbc158de0eae4700963af976b686d50 /qmapwatchlet/metawatch-digital.qml | |
parent | c64d7392c2e2ae51547788252e8c83ce5480fe49 (diff) | |
download | sowatch-0bb38d4e1b84a11e8fdfaae2e46b66c101fda40e.tar.gz sowatch-0bb38d4e1b84a11e8fdfaae2e46b66c101fda40e.zip |
preparing new compass watchlet
Diffstat (limited to 'qmapwatchlet/metawatch-digital.qml')
-rw-r--r-- | qmapwatchlet/metawatch-digital.qml | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/qmapwatchlet/metawatch-digital.qml b/qmapwatchlet/metawatch-digital.qml deleted file mode 100644 index 9c054a4..0000000 --- a/qmapwatchlet/metawatch-digital.qml +++ /dev/null @@ -1,27 +0,0 @@ -import QtQuick 1.0 -import QtMobility.location 1.2 -import com.javispedro.sowatch.metawatch 1.0 -import com.javispedro.sowatch.qmap 1.0 - -MWPage { - 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; - } - } - } -} |