gpt4 book ai didi

java - Android Studio 谷歌地图自定义 map ,只想显示自定义 map 但使用谷歌地图功能

转载 作者:行者123 更新时间:2023-11-30 04:54:14 24 4
gpt4 key购买 nike

我知道这个标题可能会增加一些困惑,我会尽力在这里解释一下。我正在尝试为慈善机构创建一个应用程序,他们想要一个可以在其网站上导航的 map 。我目前正在使用谷歌地图覆盖功能。我几乎得到了想要的结果,但有几件事我无法理解。

    @Override
public void onMapReady(GoogleMap googleMap) {
//LatLng NEWARK = new LatLng(51.251115, -0.599319);

LatLngBounds NewarkBounds = new LatLngBounds(
new LatLng(50.807686, -0.430219),
new LatLng(50.811414, -0.424310)

);

mMap = googleMap;
mMap.getUiSettings().setMapToolbarEnabled(false);
//mMap.addMarker(new MarkerOptions().position(NEWARK).title("Reserve"));


LatLng myPosition = new LatLng(latitude,longitude);


GroundOverlayOptions newarkMap = new GroundOverlayOptions()
.image(BitmapDescriptorFactory.fromResource(R.drawable.maptest))
.positionFromBounds(NewarkBounds)
.visible(false);


if((myPosition.latitude <= PLACETEXT && myPosition.latitude >=PLACETEXT ) &&
(myPosition.longitude >= -PLACETEXT && myPosition.longitude <= -PLACETEXT )){
newarkMap.visible(true);
mMap.setMyLocationEnabled(true);

}
else {
mMap.setMyLocationEnabled(false);
}

GroundOverlay imageOverlay = mMap.addGroundOverlay(newarkMap);


mMap.setMyLocationEnabled(true);
mMap.setOnMyLocationButtonClickListener(this);
mMap.setOnMyLocationClickListener(this);


mMap.moveCamera(CameraUpdateFactory.newLatLng(new LatLng(myPosition.latitude,
myPosition.longitude)));
mMap.setMapType(0);
mMap.setLatLngBoundsForCameraTarget(NewarkBounds);
}

这是我的 OnMapReady 函数,我试过使用缩放函数等,我是新手,所以我可能会做一些根本性的错误。

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent">
</fragment>

</androidx.constraintlayout.widget.ConstraintLayout>

布局文件^^

The image above shows whats currently displaying, ignore the map it is a placeholder

上图显示了当前显示的内容,忽略 map 它是一个占位符,我想要实现的是将人的当前位置完全放大,并且只能将照片拖到边界 map 的经纬度?

最佳答案

这是可能的。请查看 Google 关于 Setting boundaries 的文档.

将相机设置为边界内最大可能缩放级别的代码 fragment :

private GoogleMap mMap;
// Create a LatLngBounds that includes Australia.
private LatLngBounds AUSTRALIA = new LatLngBounds(
new LatLng(-44, 113), new LatLng(-10, 154));

// Set the camera to the greatest possible zoom level that includes the bounds
mMap.moveCamera(CameraUpdateFactory.newLatLngBounds(AUSTRALIA, 0));

在边界内将相机居中:

private GoogleMap mMap;
private LatLngBounds AUSTRALIA = new LatLngBounds(
new LatLng(-44, 113), new LatLng(-10, 154));

mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(AUSTRALIA.getCenter(), 10));

限制用户在边界内滚动和平移:

private GoogleMap mMap;
// Create a LatLngBounds that includes the city of Adelaide in Australia.
private LatLngBounds ADELAIDE = new LatLngBounds(
new LatLng(-35.0, 138.58), new LatLng(-34.9, 138.61));
// Constrain the camera target to the Adelaide bounds.
mMap.setLatLngBoundsForCameraTarget(ADELAIDE);

希望这对您有所帮助!

关于java - Android Studio 谷歌地图自定义 map ,只想显示自定义 map 但使用谷歌地图功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59504539/

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