作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在使用 map fragment 来显示 map 。但是本地图开始时,它显示了非洲的某个位置,然后转移到我想要的地方。我在 stackoverflow 中尝试了一些解决方案,但没有用,它仍然从非洲开始
CameraUpdate center = CameraUpdateFactory.newLatLng(new LatLng(26.588527, 77.519531));
CameraUpdate zoom = CameraUpdateFactory.zoomTo(4);
mMap.moveCamera(center);
mMap.animateCamera(zoom);
另一种解决方案:
mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(26.588527, 77.519531), 4));
最佳答案
您可以配置initial map state :
使用 cameraTargetLat
、cameraTargetLng
、cameraZoom
XML 属性,例如:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
map:cameraTargetLat="26.588527"
map:cameraTargetLng="77.519531"
map:cameraZoom="4"/>
以编程方式使用 GoogleMapOptions ,例如:
CameraPosition indiaPosition = new CameraPosition.Builder()
.target(new LatLng(26.588527, 77.519531))
.zoom(4)
.build();
GoogleMapOptions mapOptions = new GoogleMapOptions().camera(camera)
SupportMapFragment map = SupportMapFragment.newInstance(mapOptions);
关于android: google map api 总是从非洲开始显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35536454/
我是一名优秀的程序员,十分优秀!