android – 等待谷歌地图在MapFragment中有大小

前端之家收集整理的这篇文章主要介绍了android – 等待谷歌地图在MapFragment中有大小前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的活动在LinearLayout中包含一个MapFragment.我做了以下几点

in onCreate:

>我在onCreate方法中使用setContentView来扩展此布局
我的活动.
>使用getMap()获取GoogleMap的句柄.

在onStart上:

>我从sqlite数据库获取一些位置坐标
>将相应的标记添加到地图中
>将这些点添加到LatLngBounds.Builder
>使用newLatLngBounds(Builder.build(),10)为相机设置动画

根据maps api引用,我不应该在确保地图有大小之前调用newLatLngBounds(LatLngBounds bounds,int padding).我确实在这一点上得到了一个IllegalStateException.但是,等到地图有大小的正确方法是什么?

解决方法

我过去成功使用了以下代码
final LatLngBounds.Builder builder = new LatLngBounds.Builder();
final View mapView = fragment.getView();
final GoogleMap map = fragment.getMap():

//Add points to builder. And get bounds...
final LatLngBounds bounds = builder.build();

// Pan to see all markers in view.
// Cannot zoom to bounds until the map has a size.

if (mapView.getViewTreeObserver().isAlive()) {
    mapView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

        public void onGlobalLayout() {
            mapView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
            map.animateCamera(CameraUpdateFactory.newLatLngBounds(bounds,50),1500,null);         
        }
    });
}

猜你在找的Android相关文章