我想使用意图从我的应用中以纸板模式打开Google街景应用。我知道可以通过以下代码行在panaromic模式下打开它。
Intent streetView = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("google.streetview:cbll=27.173891,78.042068" + "&cbp=1,90,,0,1.0&mz=8"));
startActivity(streetView);
我查看了Cardboard应用程序,它包含" BasicStreetViewApp"以纸板模式显示地图。
过去曾经问过{p> Similar question,但没有人回答。 请指导我如何解决问题。