Android 多段线角点不能正确连接

Android 多段线角点不能正确连接,android,Android,我正在使用下面的库,但是多段线角没有正确连接。有谁能给出解决办法吗 implementation 'com.akexorcist:googledirectionlibrary:1.1.1' 这里是Java代码 GoogleDirection.withServerKey(serverKey) .from(startlatlng) .and(wayLatLng) .to(destlatlng)

我正在使用下面的库,但是多段线角没有正确连接。有谁能给出解决办法吗

implementation 'com.akexorcist:googledirectionlibrary:1.1.1'

这里是Java代码

   GoogleDirection.withServerKey(serverKey)
            .from(startlatlng)
            .and(wayLatLng)
            .to(destlatlng)
            .transportMode(TransportMode.DRIVING)
            .execute(this);

请将用于绘制当前线条的代码添加到question@petey. 我已经把代码贴在这里了。