如何在谷歌地图中获取街景?

时间:2014-12-19 05:12:17

标签: android google-maps google-maps-api-3 google-street-view

我正在开发一个我正在使用地图的应用程序。我将从用户输入的地址获取坐标,并将其显示在地图中。但现在我想在地图中只显示街景。 我尝试更改https://www.google.co.in/maps/place/....to https://www.google.co.in/maps/views/....But它不起作用。 谁能帮帮我吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

Uri getmap = Uri.parse("google.streetview:cbll=29.9774614,31.1329645&cbp=0,30,0,0,-15");
Intent mapintent = new Intent(Intent.ACTION_VIEW, getmap);
mapintent.setPackage("com.google.android.apps.maps");
startActivity(mapintent);