diff options
Diffstat (limited to 'app/BtnEnlarge.qml')
-rw-r--r-- | app/BtnEnlarge.qml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/BtnEnlarge.qml b/app/BtnEnlarge.qml new file mode 100644 index 0000000..229b5f1 --- /dev/null +++ b/app/BtnEnlarge.qml @@ -0,0 +1,24 @@ +import QtQuick 2.0
+import QtQuick.Controls 1.5
+
+Item {
+ Button {
+ width: 100
+ height: 100
+
+ function zoomUp() {
+ map.zoomLevel += 1
+ }
+
+ onClicked: { zoomUp() }
+
+ Image {
+ id: image
+ width: 92
+ height: 92
+ anchors.verticalCenter: parent.verticalCenter
+ anchors.horizontalCenter: parent.horizontalCenter
+ source: "images/240px-Antu_kdenlive-zoom-large.svg.png"
+ }
+ }
+}
|