fix bug of delete cloud data of recognized

This commit is contained in:
zhongchao
2021-07-16 17:29:48 +08:00
committed by zhongchao
parent b2a98b67fb
commit 4b16725ff6

View File

@@ -488,15 +488,4 @@ class BaseDrawer {
return new double[]{lon, lat};
}
protected String getDataTypes(int fromType) {
switch (fromType) {
case FROM_MY_LOCATION:
return TYPE_MARKER_CLOUD_DATA;
case FROM_ADAS:
return TYPE_MARKER_ADAS;
default:
return TYPE_MARKER_CLOUD_DATA;
}
}
}