I want to change my GoogleMaps view between StreetView and Satellite via menubutton. The code I have used is:
case R.id.item_satellite_view:
mapView.setStreetView(false);
mapView.setSatellite(true);
mapView.invalidate();
return true;
case R.id.item_street_view:
mapView.setSatellite(false);
mapView.setStreetView(true);
mapView.invalidate();
return true;
The problem I am getting is the map only shows blank squares with X in it.
Can anyone please help?