bwacher
bwacher

Reputation: 207

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?

Upvotes: 12

Views: 6254

Answers (2)

Murmel
Murmel

Reputation: 5712

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

GoogleMap.setBuildingsEnabled(false);

GoogleMap Android Reference

Upvotes: 12

bwacher
bwacher

Reputation: 207

It looks like Google corrected the problem. 3d buildings no longer show up when I draw an overlay on top of them.

Upvotes: 0

Related Questions