From af033bd736c14815dab9deaf2344d64cc1ea568c Mon Sep 17 00:00:00 2001 From: chenfufeng Date: Mon, 12 Jun 2023 13:44:56 +0800 Subject: [PATCH] =?UTF-8?q?[3.2.0][Opt]=E7=A7=BB=E9=99=A4=E6=97=A0?= =?UTF-8?q?=E7=94=A8=E7=9A=84=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/mogo/eagle/core/function/view/OverMapView.kt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/OverMapView.kt b/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/OverMapView.kt index 081e069386..549c53ecf3 100644 --- a/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/OverMapView.kt +++ b/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/OverMapView.kt @@ -744,7 +744,6 @@ class OverMapView @JvmOverloads constructor( Message.obtain().apply { what = DRAW_SITE_LINE obj = Pair(coordinates, bitmap) - Log.d("cff", "发送绘制站点轨迹!") nonFrequentHandler?.sendMessage(this) } } @@ -756,7 +755,6 @@ class OverMapView @JvmOverloads constructor( fun clearSitePolyline() { Message.obtain().apply { what = CLEAR_SITE_POLYLINE - Log.d("cff", "发送清除站点轨迹!") nonFrequentHandler?.sendMessage(this) } } @@ -976,7 +974,6 @@ class OverMapView @JvmOverloads constructor( } private fun realDrawSitePolyline(coordinates: List, bitmap: Bitmap) { - Log.d("cff", "绘制站点线!!!") val textureList = arrayListOf() textureList.add(BitmapDescriptorFactory.fromBitmap(bitmap)) val texIndexList = arrayListOf() @@ -1009,7 +1006,6 @@ class OverMapView @JvmOverloads constructor( } private fun realClearSitePolyline() { - Log.d("cff", "清除站点线!!!") mSitePolyline?.points = emptyList() } @@ -1188,7 +1184,6 @@ class OverMapView @JvmOverloads constructor( super.handleMessage(msg) when (msg.what) { DRAW_SITE_LINE -> { - Log.d("cff", "准备真正执行绘制站点线") removeMessages(DRAW_SITE_LINE) // 绘制站点轨迹线时停止绘制全局轨迹,降低性能损耗 MarkerDrawerManager.isStopCalculate = true @@ -1219,7 +1214,6 @@ class OverMapView @JvmOverloads constructor( } } CLEAR_SITE_POLYLINE -> { - Log.d("cff", "准备真正执行清除站点线") removeMessages(CLEAR_SITE_POLYLINE) MarkerDrawerManager.isStopCalculate = false realClearSitePolyline()