[646]refactor: 调整全局轨迹层级&颜色;

This commit is contained in:
aibingbing
2024-06-26 10:26:26 +08:00
parent cb9df53129
commit b92b2745e6
2 changed files with 6 additions and 6 deletions

View File

@@ -137,7 +137,7 @@ public class TrajectoryOverlayDrawer {
if (alphas != null && !alphas.isEmpty()) {
colors = new ArrayList<>();
for (int i : alphas) {
colors.add(Color.argb(i, 78,121,173));
colors.add(Color.argb(i, 48,163,255));
}
}
}

View File

@@ -10,16 +10,16 @@ enum class Level(val zIndex: Int) {
*/
MAP_MARKER(100),
/**
* 全局轨迹线
*/
TRAJECTORY_LINE(35000),
/**
* 车道中心线
*/
ROAD_CENTER_LINE(40000),
/**
* 全局轨迹线
*/
TRAJECTORY_LINE(65000),
/**
* 前车引导线
*/