Najeebullah Shah
Najeebullah Shah

Reputation: 3709

Only Satellite mode in android app map view

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

Answers (1)

Awais Tariq
Awais Tariq

Reputation: 7754

try this..:

Insert this check at onCreate Method.

if(!mapView.isSatelliteView())
    mapView.setSatellite(true);

Hope this'll help. Cheers

Upvotes: 2

Related Questions