当我的地图显示时,它总是从固定位置(非洲附近)开始。
然后,我使用以下代码将地图居中到我想要的位置。
mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(loc.getLatitude(), loc.getLongitude()), 14.0f));
我的问题是,我可以在地图显示之前设置默认位置和缩放级别吗?
因为我不希望我的用户在一开始就看到动画。
谢谢。
当我的地图显示时,它总是从固定位置(非洲附近)开始。
然后,我使用以下代码将地图居中到我想要的位置。
mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(loc.getLatitude(), loc.getLongitude()), 14.0f));
我的问题是,我可以在地图显示之前设置默认位置和缩放级别吗?
因为我不希望我的用户在一开始就看到动画。
谢谢。
您可以使用它直接缩放而不使用动画:
map.moveCamera( CameraUpdateFactory.newLatLngZoom(new LatLng(xxxx,xxxx) , 14.0f) );
看看这里的文档:
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));
万一你想以编程方式加载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。
我创建了一个句柄SupportMapFragment
并将其设置visibility
为View.INVISIBLE
using SupportMapFragment.getView().setVisibility()
。然后,在onLocationChanged
我的类实现的回调中,我检查 ifINVISIBLE
并设置为VISIBLE
if true。这消除了您在加载时看到的跳跃,同时允许您动态初始化起始位置。在我的情况下,我将相机围绕用户的位置居中,因此onLocationChanged
由于setMyLocationEnabled(true)
.
您的要求可能会有所不同,但无论哪种方式,您只需将可见性设置为INVISIBLE
,然后VISIBLE
在加载适当的数据后找到一个好的设置位置。
您可以使用静态 latlong 直接使用 CameraUpdate
LatLong latlong = new LatLong(lat, long);
CameraUpdate cameraPosition = CameraUpdateFactory.newLatLngZoom(latLong, 15);
mGoogleMap.moveCamera(cameraPosition);
mGoogleMap.animateCamera(cameraPosition);