From 5bc4b75190256b9cdea3c9f5bb272e86e5e23209 Mon Sep 17 00:00:00 2001 From: renwj Date: Mon, 29 Aug 2022 19:12:49 +0800 Subject: [PATCH] =?UTF-8?q?[V2X]=E9=81=93=E8=B7=AF=E6=96=BD=E5=B7=A5?= =?UTF-8?q?=EF=BC=88AI=E4=BA=91=EF=BC=89=E7=95=8C=E9=9D=A2=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../v2x/events/scenario/scene/road/V2XRoadEventMarker.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/road/V2XRoadEventMarker.java b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/road/V2XRoadEventMarker.java index 137f0cbf00..64b46354f2 100644 --- a/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/road/V2XRoadEventMarker.java +++ b/core/function-impl/mogo-core-function-v2x/src/main/java/com/mogo/eagle/core/function/v2x/events/scenario/scene/road/V2XRoadEventMarker.java @@ -98,8 +98,8 @@ public class V2XRoadEventMarker implements IV2XMarker { } MogoPolylineOptions options = new MogoPolylineOptions(); List colors = new ArrayList<>(); - colors.add(Color.argb(100, 255, 0, 0)); - colors.add(Color.argb(100, 0, 255, 0)); + colors.add(Color.argb(204, 237, 172, 21)); + colors.add(Color.argb(0, 255, 255, 255)); options.colorValues(colors); List points = new ArrayList<>(); for (int i = 0; i < polygons.size(); i++) { @@ -115,7 +115,7 @@ public class V2XRoadEventMarker implements IV2XMarker { options.setGps(false); options.width(5f); options.zIndex(75000f); - options.maxIndex(2000000f); + options.maxIndex(800000f); polyline = overlayManager.addPolyline(options); polyline.setVisible(true); }