views:

377

answers:

1

I have to add a custom styles Info Window to a Google Map. The rounded border has to go and I have to change the close button.

I've found InfoBox from Google Maps Utility Library (http://code.google.com/p/google-maps-utility-library-v3/wiki/Libraries) wich works fine but it doesn't seem to support shadows. Does anybody know of any solution how to achieve this?

+1  A: 

Implement the Maps API v3 OverlayView class and use getPanes().floatShadow to get a container into which you can insert a shadow image, and getPanes().floatPane to get a container into which can insert your main infowindow container and content.

plexer