From e21d4f00392c275f1f26810c8216e55951f3b0c2 Mon Sep 17 00:00:00 2001 From: chenfufeng Date: Mon, 21 Oct 2024 11:16:03 +0800 Subject: [PATCH] =?UTF-8?q?[6.7.0][Fix]Och=E4=B8=9A=E5=8A=A1=E4=BC=A0?= =?UTF-8?q?=E9=80=92=E8=BF=87=E6=9D=A5=E7=9A=84=E9=AB=98=E5=BE=B7=E5=9D=90?= =?UTF-8?q?=E6=A0=87=E6=97=A0=E9=9C=80=E8=BD=AC=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mogo/eagle/core/function/view/TravelRealityView.kt | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/TravelRealityView.kt b/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/TravelRealityView.kt index b2b16c999f..c6121f8d86 100644 --- a/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/TravelRealityView.kt +++ b/core/function-impl/mogo-core-function-map/src/main/java/com/mogo/eagle/core/function/view/TravelRealityView.kt @@ -1702,14 +1702,8 @@ class TravelRealityView @JvmOverloads constructor( } } else { // 设置开始结束Marker位置 - mStartLatLng = coordinateConverterWgsToGcj( - locList[0].latitude, - locList[0].longitude - ) - mEndLatLng = coordinateConverterWgsToGcj( - locList[1].latitude, - locList[1].longitude - ) + mStartLatLng = LatLng(locList[0].latitude, locList[0].longitude) + mEndLatLng = LatLng(locList[1].latitude, locList[1].longitude) } if (!isPlayingAnim) { drawStartAndEnd()