summaryrefslogtreecommitdiff
path: root/src/main.qml
diff options
context:
space:
mode:
authorArseniy Movshev <dodoradio@outlook.com>2022-11-12 23:10:12 +0000
committerArseniy Movshev <dodoradio@outlook.com>2023-01-07 14:51:55 +0000
commitd6bd9347a59df2808676a549ba81df12ecfc2d3d (patch)
tree9dc492b917a3e7ff47e97d24b43bff698816f6c8 /src/main.qml
parent6161b765b5a2b64717de06b6f26bb7c2cf76d3d8 (diff)
Work on adding gui for dropping pins
Continue work on waypoint dialog Add experimental method of saving map positions
Diffstat (limited to '')
-rw-r--r--src/main.qml17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/main.qml b/src/main.qml
index f04edb4..12ca9de 100644
--- a/src/main.qml
+++ b/src/main.qml
@@ -4,11 +4,15 @@ import QtPositioning 5.15
import QtLocation 5.15
Application {
- id: app
-
- centerColor: "#003ee9"
+ centerColor: "#6e90e9"
outerColor: "#00bc1b"
+ id: app
+ Item {
+ id: colours
+ property string primary: "#0056d7"
+ property string primaryUnselected: "#3274d7"
+ }
Plugin {
id: mapProvider
name: "osm"
@@ -16,12 +20,13 @@ Application {
LayerStack {
id: pageStack
anchors.fill: parent
- firstPage: mainmapview
+ firstPage: mainMapView
}
Component {
- id: mainmapview
- MainMapView {}
+ id: mainMapView
+ MainMapView {
+ }
}
Component {
id: settingsPage