[DebugView]Debug入口切换视角实现

This commit is contained in:
renwj
2022-02-24 12:24:39 +08:00
parent ce4378dc13
commit 60a8a73ec3
3 changed files with 63 additions and 4 deletions

View File

@@ -15,9 +15,25 @@ public enum VisualAngleMode implements IMogoMapVisualAngle {
/**
* 视距远景
*/
MODE_LONG_SIGHT(2);
MODE_LONG_SIGHT(2),
private int code;
/**
* 后方来车300视角
*/
MAP_STYLE_VR_ANGLE_300(3),
/**
* 顶视角
*/
MAP_STYLE_VR_ANGLE_TOP(4),
/**
* 十字路口视角
*/
MAP_STYLE_VR_ANGLE_CROSS(5);
private final int code;
VisualAngleMode(int code) {
this.code = code;