Reputation: 3784
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?
Upvotes: 1
Views: 1600
Reputation: 1806
map.setMapType(GoogleMap.MAP_TYPE_HYBRID);
This code will change the map type to hybrid which have both satellite and place name...
Upvotes: 10