Google Map Polyline绘制适合屏幕

时间:2019-03-05 17:09:48

标签: android google-maps geolocation

这是代码

LatLngBounds.Builder boundsBuilder = new LatLngBounds.Builder();

    for (LatLng latLngPoint : lstLatLngRoute) {
        boundsBuilder.include(latLngPoint);
    }

    int routePadding = 50;

    LatLngBounds latLngBounds = boundsBuilder.build();

    googleMap.moveCamera(CameraUpdateFactory.newLatLngBounds(latLngBounds, routePadding));

`

我正在使用上面的代码来绘制适合屏幕的折线,但是这段代码可以正常工作,但是有时只显示两个标记针,没有显示适合屏幕的折线,请就此问题提供帮助,

这是上面代码的输出

enter image description here

我需要这种输出

enter image description here

请帮助解决此问题,谢谢。

0 个答案:

没有答案