Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I disable 3d buildings with Google Maps Android API v2

I recently started using the Maps Android Api (V2) and am integrating with a custom tile overlay. I am successfully able to add overlay images, however they look goofy when super-imposed over a 3d building. I would like to be able to turn off 3d buildings globally or for specific buildings so that my tile images do not interfere with the 3d images. What is the best way to accomplish this?

like image 320
bwacher Avatar asked Jan 04 '13 19:01

bwacher


1 Answers

It seems they changed their behaviour again to disable showing 3D Buildings:

GoogleMap.setBuildingsEnabled(false);

GoogleMap Android Reference

like image 87
Murmel Avatar answered Oct 12 '22 15:10

Murmel