summaryrefslogtreecommitdiff
path: root/src/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.qml')
-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 {}
+ }
}