Reputation: 89
I want a satellite view as in a Google Map app. I am using Satellite View for my current location and it is getting the image, but it is not as same as google map!
I just want a same view as it is in picture or as we get from Google map app as in satellite view
Upvotes: 2
Views: 2723
Reputation: 2309
you just need to set map type as satelite to get satelite view.
private GoogleMap mMap;
//for normal view of map:
mMap.setMapType(mMap.MAP_TYPE_NORMAL);
//for satelite view of map:
mMap.setMapType(mMap.MAP_TYPE_SATELLITE);
Upvotes: 3
Reputation: 4377
Check following links-
1.Android Working with Google Maps
2.Android working with Google Maps V2
3.Using Google Maps in Android
Upvotes: 0