android startActivityForResult streetview获取数据

时间:2012-10-20 03:33:09

标签: android google-street-view

如何从街景中获得结果? 如Lat,Lng,Pitch,heading,FOV,Zoom ......等。

我想进行一项活动,点击“步行”按钮打开街景。用户走到某处,保存它。

我尝试将startActivityForResult用于街景,但我无法选择位置。它只是打开了街景视图。

Intent streetView = new Intent(android.content.Intent.ACTION_VIEW,Uri.parse("google.streetview:cbll="+ objLatitude+","+objLongitude+"&cbp=1,99.56,,1,-5.27&mz=21"));
startActivityForResult(streetView,10);

任何想法或任何其他方法都可以做到这一点? 谢谢大家。

1 个答案:

答案 0 :(得分:0)

试试这个:

Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("google.streetview:cbll=" + (float)aGeoPoint.getLatitudeE6()/1000000 + "," + (float)aGeoPoint.getLongitudeE6()/1000000 +"&cbp=1,180,,0,1.0")); 
startActivity(myIntent);