当我的地图显示时,它始终从固定位置(非洲附近)开始。
然后,我使用以下代码将地图居中到我想要的位置。
mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(loc.getLatitude(), loc.getLongitude()), 14.0f));
我的问题是,我可以在地图显示之前设置默认位置和缩放级别吗?
因为我不希望我的用户在开头看到动画。
感谢。
答案 0 :(得分:168)
你可以使用它在没有动画的情况下直接缩放:
map.moveCamera( CameraUpdateFactory.newLatLngZoom(new LatLng(xxxx,xxxx) , 14.0f) );
答案 1 :(得分:82)
请查看此处的文档:
https://developers.google.com/maps/documentation/android-api/map#configure_initial_state
执行此操作的方式略有不同,具体取决于您是通过XML添加地图还是以编程方式添加地图。如果您使用的是XML,则可以按如下方式执行:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment"
map:cameraBearing="112.5"
map:cameraTargetLat="-33.796923"
map:cameraTargetLng="150.922433"
map:cameraTilt="30"
map:cameraZoom="13"/>
如果您是以编程方式执行此操作,则可以执行以下操作:
CameraPosition cameraPosition = new CameraPosition.Builder()
.target(new LatLng(-33, 150))
.zoom(13)
.build();
MapFragment.newInstance(new GoogleMapOptions()
.camera(camera));
答案 2 :(得分:5)
如果您想以编程方式在任何初始Google Map
加载Location
,那么您可以使用这段代码,
FragmentManager fm = getFragmentManager(); // getChildFragmentManager inside fragments.
CameraPosition cp = new CameraPosition.Builder()
.target(initialLatLng) // your initial co-ordinates here. like, LatLng initialLatLng
.zoom(zoom_level)
.build();
SupportMapFragment mapFragment = SupportMapFragment.newInstance(new GoogleMapOptions().camera(cp));
fm.beginTransaction().replace(R.id.rl_map, mapFragment).commit();
为layout
<RelativeLayout
android:id="@+id/rl_map"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
这会直接在GoogleMap
加载Location
,即initialLatLng。
答案 3 :(得分:3)
我创建了SupportMapFragment
的句柄,并使用visibility
将其View.INVISIBLE
设置为SupportMapFragment.getView().setVisibility()
。然后,在我的类实现的onLocationChanged
回调中,我检查是否INVISIBLE
并设置为VISIBLE
如果为true。这可以消除您在加载时看到的跳跃,同时允许您动态初始化起始位置。在我的情况下,我将相机对准用户的位置,因此onLocationChanged
会立即调用setMyLocationEnabled(true)
。
您的要求可能会有所不同,但无论哪种方式,您只需将可见性设置为INVISIBLE
,然后在加载相应数据后找到设置VISIBLE
的好地方。
答案 4 :(得分:2)
您可以使用directy CameraUpdate使用静态latlong
LatLong latlong = new LatLong(lat, long);
CameraUpdate cameraPosition = CameraUpdateFactory.newLatLngZoom(latLong, 15);
mGoogleMap.moveCamera(cameraPosition);
mGoogleMap.animateCamera(cameraPosition);