Reputation: 4991
The map on my device looks bad, like in this image :
Any idea what causes this ? Any idea is welcome. Thanks in advance.
Upvotes: 0
Views: 55
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
streetView
mapView.setSatellite(false);
Upvotes: 1