summaryrefslogtreecommitdiff
path: root/examples/location/mapviewer/map/PolylineItem.qml
blob: 727ce973423da61d1eb388b961e894160bbe4f6e (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtLocation

MapPolyline {

    line.color: "#330a0a"
    line.width: 4
    opacity: 0.75
    smooth: true

    function setGeometry(anchorCoordinate){
        addCoordinate(anchorCoordinate)
    }

    function addGeometry(newCoordinate, changeLast){
        if (changeLast)
            replaceCoordinate(pathLength()-1, newCoordinate)
        else
            addCoordinate(newCoordinate)
        return false
    }

    function finishAddGeometry(){
        removeCoordinate(pathLength()-1)
        line.color = "#46a2da"
        opacity = 0.25
    }
}