Google映射路线-折线之间的空格

时间:2019-01-29 11:58:56

标签: android google-maps kotlin directions

我正面临着这个丑陋的问题,有人可以解决吗?我想摆脱线之间的丑陋空格。我需要保持宽度。enter image description here

代码(添加折线):

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

1 个答案:

答案 0 :(得分:1)

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