[6.7.0][Fix]解决小地图和行程总览地图UI显示异常的问题
This commit is contained in:
@@ -1420,9 +1420,15 @@ class TravelRealityView @JvmOverloads constructor(
|
||||
if (isSmallMap) {
|
||||
if (globalPath.wayPointsList.size > 0) {
|
||||
this.globalPathResp = globalPath
|
||||
val pointCloneList = ArrayList<Point>()
|
||||
globalPath.wayPointsList.forEach { loc ->
|
||||
pointCloneList.add(Point(loc.longitude, loc.latitude))
|
||||
}
|
||||
reqData = pointCloneList
|
||||
drawRotting()
|
||||
}
|
||||
} else {
|
||||
this.globalPathResp = globalPath
|
||||
val pointList = ArrayList<Point>()
|
||||
val pointCloneList = ArrayList<Point>()
|
||||
globalPath.wayPointsList.forEach { loc ->
|
||||
|
||||
Reference in New Issue
Block a user