user3101598
user3101598

Reputation: 89

want same satellite view as google map application

Iam getting the display as following from my codeI 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

Example image from Google Maps

Upvotes: 2

Views: 2723

Answers (2)

Justcurious
Justcurious

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

Related Questions