3

我正在使用 google map API 2 并在其上显示多个标记。我的问题是我希望我的相机定位在我所有的标记上。我已经为单个标记完成了它

 myMap.moveCamera(CameraUpdateFactory.newLatLngZoom(MyLocation, 22));
4

1 回答 1

11

我已经使用了下面的方式来查看视图中的所有标记。它将绑定您的 Mapview,包括您在数组列表中拥有的所有经纬度位置。

 // Pan to see all markers in view.
 // Cannot zoom to bounds until the map has a size.
    final View mapView = getSupportFragmentManager().findFragmentById(R.id.map).getView();
    if (mapView.getViewTreeObserver().isAlive()) {
        mapView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
            @SuppressLint("NewApi")
            @Override
            public void onGlobalLayout() {
                LatLngBounds.Builder bld = new LatLngBounds.Builder();
    for (int i = 0; i < YOUR_ARRAYLIST.size(); i++) {           
            LatLng ll = new LatLng(YOUR_ARRAYLIST.get(i).getPos().getLat(), YOUR_ARRAYLIST.get(i).getPos().getLon());
            bld.include(ll);            
    }
    LatLngBounds bounds = bld.build();          
    mMap.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, 70));
                mapView.getViewTreeObserver().removeGlobalOnLayoutListener(this);

            }
        });
    }

希望它会有所帮助。

于 2013-03-21T05:50:03.997 回答