[6.7.0][Fix]Och业务传递过来的高德坐标无需转换

This commit is contained in:
chenfufeng
2024-10-21 11:16:03 +08:00
parent 68cc976956
commit e21d4f0039

View File

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