How can we write code to show the Streetview like the below shown image in android? If i'm applying
mapView.setStreetView(true);
it's showing as normal view. But i need to show like the below image.
How can we write code to show the Streetview like the below shown image in android? If i'm applying
mapView.setStreetView(true);
it's showing as normal view. But i need to show like the below image.
The streetview is Deprecated.
From the Documentation:
@Deprecated
public void setStreetView(boolean on)
Deprecated. Street view availability highlighting is no longer supported. This method operates as a no-op.
Check the documentation that was downloaded with the Google Aps.
Hope this helps
Cliff