如何设置在地图中显示折线后限定折线路线的相机位置?

时间:2013-07-02 06:08:24

标签: android ios google-maps-android-api-2

添加PolylineOption后,如何在地图上显示绘制路线所覆盖的区域?如何在Android中获得类似的代码,如iOS的下一行或更好的解决方案?:

[self.mapa setVisibleMapRect:[polyLine boundingMapRect] animated:YES];

感谢。

1 个答案:

答案 0 :(得分:1)

我添加了PolylineOptions,然后将相机移动到:

mMap.moveCamera(CameraUpdateFactory.newLatLngBounds(builder.build(), 50));

相机位置限定了折线路线。

这就是你想要做的吗?

皮尔。