1

Hello I am using Google Maps API v2 for displaying the maps in android. Now I want to display Place labels in the satellite view. like SATUN , PERLIS etc... Though In the normal map view it is showing. Anybody know how to achieve that in satellite view?

Satellite Image Simple Map

Kishan Dhamat
  • 3,746
  • 2
  • 26
  • 36

1 Answers1

10
    map.setMapType(GoogleMap.MAP_TYPE_HYBRID);                                            

This code will change the map type to hybrid which have both satellite and place name...

Rishad Appat
  • 1,786
  • 1
  • 15
  • 30
  • I think it's worth mentioning that the names show up only on a higher zoomlevel in this mode than in the default mode. – uncovery May 10 '16 at 04:07