Reputation: 3709
By default map view gives standard mode, when mapView.setSattelite(true)
the map view turn to hybrid mode of satellite and standard, i want to display only satellite mode in my map view.
Upvotes: 1
Views: 1071
Reputation: 7754
try this..:
Insert this check at onCreate Method.
if(!mapView.isSatelliteView())
mapView.setSatellite(true);
Hope this'll help. Cheers
Upvotes: 2