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

//TODO: remove me when items are integrated

MapPolygon {

    color: "#46a2da"
    border.color: "#190a33"
    border.width: 2
    smooth: true
    opacity: 0.25

    function setGeometry(markers, index){
        for (var i = index; i<markers.length; i++){
            addCoordinate(markers[i].coordinate)
        }
    }
    MouseArea {
        anchors.fill:parent
        id: mousearea
        drag.target: parent
    }
}