summaryrefslogtreecommitdiff
path: root/src/main.qml
blob: 693e9d4784fc8c66b13ad6c511141579d376dfb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import QtQuick 2.0
import org.asteroid.controls 1.0
import QtPositioning 5.15
import QtLocation 5.15

Application {
    id: app

    centerColor: "#9800A6"
    outerColor: "#0C0009"

    Plugin {
        id: mapProvider
        name: "osm"
    }
    LayerStack {
        id: pageStack
        anchors.fill: parent
        firstPage: mainmapview
    }

    Component {
        id: mainmapview
        MainMapView {}
    }
    Component {
        id: settingsPage
        SettingsPage {}
    }
}