I have been trying for a long time to show StreetView in a certain place on Android, but, unfortunately, it was not possible to succeed.
I need that if I provide a position (LAT, LONG) on the map, it should show a street representation of that particular position.
Below is the working code that displays the map, three-dimensional map, hybrid map, satellite view, etc. etc. BUT not showing the ARROW ...
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)
I just need to somehow show StreetView ..
Parth source share