折线从头到尾连接 | Google 地图 | Android

Polylines get connected from start and end | Google Maps | Android

问题是当我画多段线时,它们从起点和终点连接起来,这是不应该的。我简单地解码我的多点(它们是来自方向 api 的编码字符串),然后将它们添加到多选项以在地图上绘制多段线。

下面是我的代码:

val options = PolylineOptions()
    options.color(Color.RED)
    options.width(10f)
    val list = booking.polyPointsList.flatMap { it.decodePoly() }
    options.addAll(list)

decodepoly() 里面有什么

fun String.decodePoly(): MutableList<LatLng> {
if (this.isEmpty()) return mutableListOf()
val poly = ArrayList<LatLng>()
var index = 0
val len = this.length
var lat = 0
var lng = 0

while (index < len) {
    var b: Int
    var shift = 0
    var result = 0
    do {
        b = this[index++].toInt() - 63
        result = result or (b and 0x1f shl shift)
        shift += 5
    } while (b >= 0x20)
    val dlat = if (result and 1 != 0) (result shr 1).inv() else result shr 1
    lat += dlat

    shift = 0
    result = 0
    do {
        b = this[index++].toInt() - 63
        result = result or (b and 0x1f shl shift)
        shift += 5
    } while (b >= 0x20)
    val dlng = if (result and 1 != 0) (result shr 1).inv() else result shr 1
    lng += dlng

    val p = LatLng(
        lat.toDouble() / 1E5,
        lng.toDouble() / 1E5
    )
    poly.add(p)
}

return poly

}

可能在您解码的多段线点中,起始位置坐标是第一个点和最后一个点的两倍。因此,尝试删除列表中的最后一点:

val options = PolylineOptions()
    options.color(Color.RED)
    options.width(10f)
    val list = booking.polyPointsList.flatMap { it.decodePoly() }
    list.removeLast() 
    ^^^^^^^^^^^^^^^^^ - add this line
    options.addAll(list)

或者,您可以将所有折线点添加两次(或更多次)。在那种情况下,“第一点”也至少两次存在于折线点中:

     +--------------------- Cycle --------------------+
     |                                                |
first_point -> second_point -> ... last_point -> first_point -> ... -> last_point
\____________________  _____________________/    \__________   _________________/
                      V                                      V
        first time added points list               second time added points list