Gabrielle
Gabrielle

Reputation: 4991

Android: Map looks bad on device

The map on my device looks bad, like in this image :

enter image description here

Any idea what causes this ? Any idea is welcome. Thanks in advance.

Upvotes: 0

Views: 55

Answers (1)

A. AMAIDI
A. AMAIDI

Reputation: 6849

Similar problem found on this question

Make sure code doesn't have both

mapView.setSatellite(..);
mapView.setStreetView(..);

if you want to display streetView just use

mapView.setSatellite(false);

Upvotes: 1

Related Questions