mapsforge/vtm

How to add strokes to vector lines

CodeK1988 opened this issue · 0 comments

How to add strokes to vector lines.

Style.builder().buffer(0.5)
/.strokeColor(polylineOptions.getLineColor())
.strokeWidth(polylineOptions.getLineWidth())
/
.fillColor(Color.parseColor("#E03232"))
.stippleWidth(6f)
.strokeColor(Color.parseColor("#ffFAFAFA"))
.strokeWidth(1f)
.build();

I want to distinguish the fill color and stroke color. How can I do it?