aboutsummaryrefslogtreecommitdiffstats
path: root/app/BtnEnlarge.qml
blob: 1a261d6293afd9693debb01736c37cfbf27725b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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"
		}
	}
}