[V2X]道路施工事件添加多边形区域绘制

This commit is contained in:
renwj
2022-08-25 19:34:39 +08:00
parent 9f4bbeee92
commit 115f80a972
10 changed files with 133 additions and 8 deletions

View File

@@ -19,6 +19,7 @@ import java.util.List;
*/
public class MogoPolylineOptions {
public boolean useFacade = false;
private List<MogoLatLng> mPoints;
private float mWidth = 10.0F;
private int mColor = Color.BLACK;
@@ -182,6 +183,12 @@ public class MogoPolylineOptions {
return this;
}
public MogoPolylineOptions useFacade(boolean useFacade) {
this.useFacade = useFacade;
return this;
}
/**
* @param isAboveMaskLayer
* @return
@@ -240,6 +247,11 @@ public class MogoPolylineOptions {
return mIsGradient;
}
public boolean useFacade() {
return useFacade;
}
public float getTransparency() {
return mTransparency;
}