aboutsummaryrefslogtreecommitdiffstats
path: root/BtnEnlarge.qml
diff options
context:
space:
mode:
Diffstat (limited to 'BtnEnlarge.qml')
-rw-r--r--BtnEnlarge.qml35
1 files changed, 35 insertions, 0 deletions
diff --git a/BtnEnlarge.qml b/BtnEnlarge.qml
new file mode 100644
index 0000000..187207c
--- /dev/null
+++ b/BtnEnlarge.qml
@@ -0,0 +1,35 @@
+// SPDX-License-Identifier: GPL-3.0+
+// Copyright (C) 2021 AISIN CORPORATION
+
+import QtQuick 2.0
+import QtQuick.Controls 1.5
+
+Item {
+ Button {
+ width: 100
+ height: 100
+ opacity: 0
+
+ function zoomUp() {
+ map.zoomLevel += 1
+ }
+
+ onClicked: { zoomUp() }
+ }
+
+ Image {
+ id: image
+ x: 4
+ y: 4
+ width: 92
+ height: 92
+ opacity: 1
+ source: "images/04_WIDE.png"
+ }
+}
+
+/*##^##
+Designer {
+ D{i:0;autoSize:true;height:480;width:640}
+}
+##^##*/