到目前为止,我一直在使用 Android Google Map API v1 来显示地图和用户位置(地图中带有圆圈的标记)。
现在计划将 Android Google Map API 从 v1 升级到 v2。在此,任何人都可以就以下项目向我提出建议:
- 我们将使用 mapView.invalidate() 来刷新版本 1 中的地图视图。我们可以为version2使用什么方法。
在 version1 中,要缩放和 animateTo,我们将使用以下代码:
aMapController = itsMapView.getController();
aMapController.zoomToSpan(Math.abs(aMinLatitude - aMaxLatitude), Math.abs(aMinLongitude - aMaxLongitude));
aMapController.animateTo(new GeoPoint((aMaxLatitude + aMinLatitude)/2 - 100, (aMaxLongitude + aMinLongitude)/2));
我们如何在 version2 中执行缩放和 animateTo 选项?
任何人都可以请指导我。
谢谢你。