Maps - difference between satellite and hybrid modes
I can see the difference on Google Maps, but on an Android MapActivity I'm struggling to find the difference.
For 'map' I call开发者_运维百科: mapView.setSatellite(false);
For 'satellite' I call: mapView.setSatellite(true);
But for hybrid view... I tried playing with mapView.setStreetView(true); but this doesn't seem to affect anything either way.
Any ideas?
If you are only viewing the streetView, make the following call:
mapView.setSatellite(true);
That solved it for me. Good luck
精彩评论