Google 地图方向 - 多段线之间的空间

Google maps directions - spaces between polylines

我正面临这个丑陋的问题,谁能解决这个问题?我想去掉行与行之间那个丑陋的空格。我需要保持宽度。

代码(添加折线):

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)
还有一个问题

.jointType(JointType.ROUND) 添加这一行应该为您完成