[3.4.0-map-sdk] remove unuse code

This commit is contained in:
zhongchao
2023-09-19 11:25:31 +08:00
parent dc0fb1360a
commit efb4bb8070

View File

@@ -320,11 +320,9 @@ class AiCloudIdentifyDataManager : IMoGoPlanningRottingListener,
override fun onAutopilotRotting(globalPathResp: MessagePad.GlobalPathResp?) {
globalPathResp?.let {
if (it.wayPointsList != null && it.wayPointsList.size > 0) {
// val builder = StringBuilder()
val roamList = ArrayList<LonLatPoint>()
it.wayPointsList.forEach { loc ->
roamList.add(LonLatPoint(loc.longitude,loc.latitude))
// builder.append(loc.longitude).append(",").append(loc.latitude).append(",")
}
updateRomaStyle(false, roamList)
}