How can I get the result from streetview? Such as Lat, Lng, Pitch, Header, FOV, Zoom ... etc.
I want to do an event, click the "walk" button to open a street view. User goes to a place somewhere, save it.
I am trying to use startActivityForResult to view the streets, but I cannot select a location. He just opened a street view for viewing only.
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);
Any idea or any other way can do this? Thanks to everyone.
source share