summaryrefslogtreecommitdiff
path: root/examples/location/geojson_viewer/mapitems/PolylineItem.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/location/geojson_viewer/mapitems/PolylineItem.qml')
-rw-r--r--examples/location/geojson_viewer/mapitems/PolylineItem.qml32
1 files changed, 32 insertions, 0 deletions
diff --git a/examples/location/geojson_viewer/mapitems/PolylineItem.qml b/examples/location/geojson_viewer/mapitems/PolylineItem.qml
new file mode 100644
index 00000000..f2922d26
--- /dev/null
+++ b/examples/location/geojson_viewer/mapitems/PolylineItem.qml
@@ -0,0 +1,32 @@
+// 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
+ autoFadeIn: false
+
+ property string geojsonType: "Polyline"
+
+ 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.5
+ }
+}