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()