这是代码
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));
`
我正在使用上面的代码来绘制适合屏幕的折线,但是这段代码可以正常工作,但是有时只显示两个标记针,没有显示适合屏幕的折线,请就此问题提供帮助,
这是上面代码的输出
我需要这种输出
请帮助解决此问题,谢谢。