修复了没有 道路名称的时候使用"未知道路"做占位

This commit is contained in:
董宏宇
2020-08-12 15:47:11 +08:00
parent 49d982a567
commit 3656160787
3 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ public class MarkerExploreWay implements Serializable {
public String getAddr() {
if (TextUtils.isEmpty(addr)) {
return "";
return "未知道路";
}
return addr;
}