[3.2.0]fix小巴车转向灯不显示Bug

This commit is contained in:
xuxinchao
2023-06-06 18:42:47 +08:00
committed by zhongchao
parent 91229bd66c
commit 621f6a78d0
4 changed files with 9 additions and 9 deletions

View File

@@ -164,12 +164,12 @@ class BindingCarNetWorkManager private constructor() {
HdMapBuildConfig.currentCarVrIconRes = R.raw.hq_h9
}
"3" -> { //金旅
CallerMapUIServiceManager.getMapUIController()?.changeCurrentIcon(R.raw.xiaobache)
HdMapBuildConfig.currentCarVrIconRes = R.raw.xiaobache
CallerMapUIServiceManager.getMapUIController()?.changeCurrentIcon(R.raw.xiaoba)
HdMapBuildConfig.currentCarVrIconRes = R.raw.xiaoba
}
"4" -> { //开沃
CallerMapUIServiceManager.getMapUIController()?.changeCurrentIcon(R.raw.xiaobache)
HdMapBuildConfig.currentCarVrIconRes = R.raw.xiaobache
CallerMapUIServiceManager.getMapUIController()?.changeCurrentIcon(R.raw.xiaoba)
HdMapBuildConfig.currentCarVrIconRes = R.raw.xiaoba
}
"5" -> { //福田
CallerMapUIServiceManager.getMapUIController()?.changeCurrentIcon(R.raw.huanwei)
@@ -181,8 +181,8 @@ class BindingCarNetWorkManager private constructor() {
private fun getDefaultId(): String {
return when (HdMapBuildConfig.currentCarVrIconRes) {
R.raw.chuzuche -> "1"
R.raw.xiaobache -> "3"
R.raw.xiaobache -> "4"
R.raw.xiaoba -> "3"
R.raw.xiaoba -> "4"
R.raw.huanwei -> "5"
else -> "1"
}