gpt4 book ai didi

android: google map api 总是从非洲开始显示

转载 作者:可可西里 更新时间:2023-11-01 11:42:51 25 4
gpt4 key购买 nike

我正在使用 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 :

使用 cameraTargetLatcameraTargetLngcameraZoom 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com