gpt4 book ai didi

android - 尝试通过在 android 中使用 Google Maps Android API v2 来显示 StreetView 但无法使其正常工作

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:02:54 25 4
gpt4 key购买 nike

很长一段时间以来,我一直在尝试在 Android 中显示特定位置的街景,但遗憾的是未能成功。

我需要的是,如果我向 map 提供位置(经纬度),它应该显示该特定位置的街景。

以下是显示 map 、3D map 、混合 map 、卫星 View 等的工作代码。但是没有显示街景...

mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
mMap.addMarker(new MarkerOptions().position(new LatLng(33.748832, -84.38751300000001)).title("Marker"));
mMap.setMapType(GoogleMap.MAP_TYPE_SATELLITE);
mMap.setTrafficEnabled(true);
CameraPosition cameraPosition = new CameraPosition.Builder()
.zoom(17) // Sets the zoom
.target(new LatLng(33.748832, -84.38751300000001))
.bearing(90) // Sets the orientation of the camera to east
.tilt(30) // Sets the tilt of the camera to 30 degrees
.build(); // Creates a CameraPosition from the builder
mMap.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));

我只需要一些方法来显示街景..

最佳答案

您现在可以使用播放服务库支持的内容。

https://developers.google.com/android/reference/com/google/android/gms/maps/StreetViewPanoramaFragment

https://developers.google.com/android/reference/com/google/android/gms/maps/StreetViewPanoramaView

您不能使用 Google Maps Android API v2 在您自己的应用中嵌入街景。

您可以:

  • 通过 Intent 运行街景
  • 尝试将 javascript API v3 与 WebView 结合使用

编辑:请注意,此功能现已在 iOS 上可用,因此将来可能会在 Android 上可用。

关于android - 尝试通过在 android 中使用 Google Maps Android API v2 来显示 StreetView 但无法使其正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16400483/

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