添加PolylineOption后,如何在地图上显示绘制路线所覆盖的区域?如何在Android中获得类似的代码,如iOS的下一行或更好的解决方案?:
[self.mapa setVisibleMapRect:[polyLine boundingMapRect] animated:YES];
感谢。
答案 0 :(得分:1)
我添加了PolylineOptions,然后将相机移动到:
mMap.moveCamera(CameraUpdateFactory.newLatLngBounds(builder.build(), 50));
相机位置限定了折线路线。
这就是你想要做的吗?
皮尔。