aboutsummaryrefslogtreecommitdiff
path: root/src/MapWaypoint.qml
blob: 1300cb00dbd2a7faebf878ba484a9e5f882367bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.0
import org.asteroid.controls 1.0 as Asteroid
import QtPositioning 5.15
import QtLocation 5.15

MapQuickItem {
    id: root
    anchorPoint.x: width/2
    anchorPoint.y: height
    zoomLevel: 0
    autoFadeIn: false
    property string iconName
    property color iconColor
    sourceItem: Asteroid.Icon {
        width: Asteroid.Dims.w(12)
        height: width
        name: root.iconName
        color: root.iconColor
    }
}