添加交通检查类型

This commit is contained in:
wangcongtao
2021-03-31 21:53:26 +08:00
parent c8d15952dd
commit 1b5d5fce63
2 changed files with 8 additions and 0 deletions

View File

@@ -115,6 +115,10 @@ public class EventTypeUtils {
case V2XPoiTypeEnum.FOURS_ACCIDENT:
src = R.drawable.v2x_icon_jiaotongshigu_vr;
break;
// 交通检查
case V2XPoiTypeEnum.TRAFFIC_CHECK:
src = R.drawable.v2x_icon_jiaotongjiancha_vr;
break;
default:
src = R.drawable.v2x_icon_live_logo;
break;
@@ -149,6 +153,10 @@ public class EventTypeUtils {
case V2XPoiTypeEnum.FOURS_ACCIDENT:
str = "前方交通事故";
break;
// 交通检查
case V2XPoiTypeEnum.TRAFFIC_CHECK:
str = "前方交通检查";
break;
default:
str = "其它道路事件";
break;