From d6bd9347a59df2808676a549ba81df12ecfc2d3d Mon Sep 17 00:00:00 2001 From: Arseniy Movshev Date: Sat, 12 Nov 2022 23:10:12 +0000 Subject: Work on adding gui for dropping pins Continue work on waypoint dialog Add experimental method of saving map positions --- src/main.qml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'src/main.qml') 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 -- cgit v1.2.3-54-g00ecf