summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzheng_wenlong <wenlong_zheng@nexty-ele.com>2018-11-22 14:47:40 +0900
committerzheng_wenlong <wenlong_zheng@nexty-ele.com>2018-11-22 14:47:40 +0900
commit7d642f7dae7362a96939e412e358b6d1faad87b9 (patch)
treeadf5d977d6f4cd65eb216177aa6d517a0edd5321
parent7550fadd26887ce59c6e0ca5320e6ec6fb61a72a (diff)
change uturn image
-rw-r--r--app/qml/MapWindow.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/qml/MapWindow.qml b/app/qml/MapWindow.qml
index 42f25db..14b6374 100644
--- a/app/qml/MapWindow.qml
+++ b/app/qml/MapWindow.qml
@@ -368,7 +368,8 @@ Item {
}
else if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionUTurnRight)
{
- turnDirectionBoard.source = "qrc:arrow-r-180-full.png";
+ //TODO modify qtlocation U-Turn best.For test, change app source.
+ turnDirectionBoard.source = "qrc:arrow-l-180-full.png";
}
else if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionLightLeft)
{
@@ -384,7 +385,8 @@ Item {
}
else if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionUTurnLeft)
{
- turnDirectionBoard.source = "qrc:arrow-l-180-full.png";
+ //TODO modify qtlocation U-Turn best.For test, change app source.
+ turnDirectionBoard.source = "qrc:arrow-r-180-full.png";
}
else
{