Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide shadow on infowindow in Google Map API V3

I want to hide the shadow on infowindow in Google Map API V3. I try to access the Floatshadow pane but I don't know how to do it.

like image 828
Xasun Avatar asked Nov 12 '10 15:11

Xasun


2 Answers

<style type="text/css">
img[src*="iws3.png"] {
    display: none;
}
</style>
like image 176
Erik Avatar answered Oct 12 '22 07:10

Erik


Try something like the InfoBubble library. It's not possible to do this within the API itself.

http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobubble/

edit: As of v3.11, info windows don't have shadows by default.

like image 20
Chris Broadfoot Avatar answered Oct 12 '22 06:10

Chris Broadfoot