我正面临着这个丑陋的问题,有人可以解决吗?我想摆脱线之间的丑陋空格。我需要保持宽度。
代码(添加折线):
thread {
val response = getResponse(points[1].location, points[2].location, "driving21.").log()
when (response) {
is Result.Failure -> "Fail".log()
is Result.Success ->
response.value.routes[0].listOfLegs[0].listOfSteps.forEach { element ->
// element.points.log()
val options = PolylineOptions()
options.color(Color.rgb(255, 26, 140))
options.width(50F)
options.addAll(PolyUtil.decode(element.points))
runOnUiThread {
map.addPolyline(options)
}
}
}
添加.jointType(JointType.ROUND)
后
还有另一个问题
答案 0 :(得分:1)
.jointType(JointType.ROUND)
添加此行应该为您完成