本文介绍了试图通过使用Android版谷歌地图Android版API V2中显示街景,但没能得到它的工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图表现出特定的位置在Android的街景但遗憾的是未能成功。

I am trying since long time to show the StreetView of particular location in Android but unfortunately unable to succeed.

我的要求是,如果我到地图提供位置(纬度,经度),它应该显示特定位置的街景。

What i require is that if i provide a position(LAT,LONG) to the map it should show the streetview of that particular position.

以下是工作code,显示地图,3D地图,混合地图,sattlatite视图等等等等。
但不显示街景...

Following is the working code that shows Map, 3D map, hybrid map, sattlatite view etc etc..BUT not showing the STREETVIEW...

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));

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

I just need is some way to show the StreetView..

推荐答案

您不能使用谷歌地图API的Andr​​oid V2自己的应用程序中嵌入街景。

You cannot embed streetview in your own app using Google Maps Android API v2.

您可以:


  • 运行通过街景意图

  • 尝试使用带有的WebView
  • Javascript API第3
  • run StreetView through Intent
  • try using javascript API v3 with WebView

编辑:注意,这是现在在iOS上使用,因此可能会提供Android在未来

note, this is now available on iOS, so may be available on Android in the future.

这篇关于试图通过使用Android版谷歌地图Android版API V2中显示街景,但没能得到它的工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 14:41