[Change]
[Catch 地图初始化crash]

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
donghongyu
2022-12-05 11:30:14 +08:00
parent c57d307f87
commit 21024bb7b8

View File

@@ -342,8 +342,12 @@ public class MapFragment extends MvpFragment<MapView, MapPresenter>
@Override
public void setIsDrawPointCloud(boolean isDrawPointCloud) {
// 是否绘制点云
PointCloudHelper.INSTANCE.setIsDrawPointCloud(isDrawPointCloud);
try {
// 是否绘制点云
PointCloudHelper.INSTANCE.setIsDrawPointCloud(isDrawPointCloud);
} catch (Exception e) {
e.printStackTrace();
}
}
/**