aboutsummaryrefslogtreecommitdiff
path: root/src/main.qml
diff options
context:
space:
mode:
authorArseniy Movshev <dodoradio@outlook.com>2022-10-22 14:35:59 +0100
committerArseniy Movshev <dodoradio@outlook.com>2023-01-07 14:19:29 +0000
commitcf634a3ed47e756d70f0228044ebd0be794886f9 (patch)
treefc45a5adae1088a8ff61b886d0cae9f7a457db60 /src/main.qml
parent95c72f71f9382e3bf2918892edc1e7137391554d (diff)
Add a settings page
Diffstat (limited to '')
-rw-r--r--src/main.qml11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/main.qml b/src/main.qml
index 5442abc..693e9d4 100644
--- a/src/main.qml
+++ b/src/main.qml
@@ -9,17 +9,12 @@ Application {
centerColor: "#9800A6"
outerColor: "#0C0009"
- Label {
- text: "Map Data from OpenStreetMap"
- anchors.centerIn: parent
- z: 0
- }
Plugin {
id: mapProvider
name: "osm"
}
LayerStack {
- id: pagestack
+ id: pageStack
anchors.fill: parent
firstPage: mainmapview
}
@@ -28,4 +23,8 @@ Application {
id: mainmapview
MainMapView {}
}
+ Component {
+ id: settingsPage
+ SettingsPage {}
+ }
}