From f63c120684d9a743162e08b3c75389d1fd779ecf Mon Sep 17 00:00:00 2001 From: renwj Date: Tue, 26 Mar 2024 16:07:09 +0800 Subject: [PATCH] =?UTF-8?q?[6.3.0][V2N]=20=E4=BF=AE=E6=AD=A3=E9=81=93?= =?UTF-8?q?=E8=B7=AF=E6=96=BD=E5=B7=A5=E9=87=8D=E5=A4=8D=E5=A4=9A=E5=B1=95?= =?UTF-8?q?=E7=A4=BA=E5=A4=9A=E6=AC=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../eagle/function/biz/v2x/v2n/pnc/V2NIdentifyDrawer.kt | 8 +++++--- gradle/bytex/bytex.gradle | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/core/function-impl/mogo-core-function-biz/src/main/java/com/mogo/eagle/function/biz/v2x/v2n/pnc/V2NIdentifyDrawer.kt b/core/function-impl/mogo-core-function-biz/src/main/java/com/mogo/eagle/function/biz/v2x/v2n/pnc/V2NIdentifyDrawer.kt index ef3b23007b..31f7eaba78 100644 --- a/core/function-impl/mogo-core-function-biz/src/main/java/com/mogo/eagle/function/biz/v2x/v2n/pnc/V2NIdentifyDrawer.kt +++ b/core/function-impl/mogo-core-function-biz/src/main/java/com/mogo/eagle/function/biz/v2x/v2n/pnc/V2NIdentifyDrawer.kt @@ -84,12 +84,13 @@ internal object V2NIdentifyDrawer { return@Callback true } if (msg.what == MSG_WHAT_DRAW_SHIGONE) { - Log.d("V2NIdentifyDrawer", "---callback -- drawShiGong --- 2 ---:data: ${ filtered.joinToString(",") { GsonUtils.toJson(it) } }") + Log.d("V2NIdentifyDrawer", "---callback -- drawShiGong --- 2 ---") } else { - Log.d("V2NIdentifyDrawer", "---callback -- drawShiGu --- 2 ---data: ${ filtered.joinToString(",") { GsonUtils.toJson(it) } }") + Log.d("V2NIdentifyDrawer", "---callback -- drawShiGu --- 2 ---") } filtered.forEach { itx -> val id = itx.uuid.toString() + Log.d("V2NIdentifyDrawer", "---callback --- id: $id ---") AiRoadMarker.aiMakers.getOrPut(id) { AiRoadMarker().apply { val poiType = getPoiType(itx.type).poiType @@ -204,13 +205,14 @@ internal object V2NIdentifyDrawer { V2XBizTrace.onAck(TAG, mapOf("yongDu-filter" to ""), true) return@Callback true } - Log.d("V2NIdentifyDrawer", "---callback -- drawYongDu --- 2 ---data: ${ filtered.joinToString(",") }") + Log.d("V2NIdentifyDrawer", "---callback -- drawYongDu --- 2 ---") filtered.forEach { itx -> val id = itx.rteId.toString() val lon = itx.eventPos?.offsetLL?.positionLatLon?.lon?.let { it * 1.0 / 10_000_000 } ?: 0.0 val lat = itx.eventPos?.offsetLL?.positionLatLon?.lat?.let { it * 1.0 / 10_000_000 } ?: 0.0 + Log.d("V2NIdentifyDrawer", "---callback -- id: $id---") AiRoadMarker.aiMakers.getOrPut(id) { AiRoadMarker().apply { val poiType = getPoiType(itx.eventType).poiType diff --git a/gradle/bytex/bytex.gradle b/gradle/bytex/bytex.gradle index daa366db18..853adeef6c 100644 --- a/gradle/bytex/bytex.gradle +++ b/gradle/bytex/bytex.gradle @@ -17,6 +17,6 @@ if (!isAndroidTest) { apply from: rootProject.file('gradle/bytex/bytex_apm.gradle') apply from: rootProject.file('gradle/bytex/bytex_systrace.gradle') apply from: rootProject.file('gradle/bytex/bytex_matrix.gradle') - apply from: rootProject.file('gradle/bytex/bytex_handler_proxy.gradle') +// apply from: rootProject.file('gradle/bytex/bytex_handler_proxy.gradle') // apply from: rootProject.file('gradle/bytex/bytex_btrace.gradle') }