[V2X][Road]非城市占道事件到来时,移除之前城市占道绘制

This commit is contained in:
renwj
2022-10-20 10:40:08 +08:00
parent b7b8e0faab
commit a9573f21a3
2 changed files with 3 additions and 3 deletions

View File

@@ -323,8 +323,8 @@ object AiRoadMarker {
val poi_lat: Double,
val poi_lon: Double,
val poi_angle: Double,
val polygon: List<androidx.core.util.Pair<Double, Double>>?,
var farthestPoint: androidx.core.util.Pair<Double, Double>? = null,
val polygon: List<Pair<Double, Double>>?,
var farthestPoint: Pair<Double, Double>? = null,
var entity: V2XRoadEventEntity? = null
) {

View File

@@ -23,7 +23,7 @@ import java.util.Objects;
public class V2XRoadEventMarker implements IV2XMarker<V2XRoadEventEntity> {
private AiRoadMarker.Marker mMarker;
private static AiRoadMarker.Marker mMarker;
@Override
public void drawPOI(V2XRoadEventEntity entity) {