Have a look at the reference. You can see that floatShadow pane
contains the info window shadow.

http://code.google.com/apis/maps/documentation/javascript/reference.html#MapPanes

Now you should know how to access the map panes. To do this you can
use an OverlayView as a dummy object.

Then you may set the floatShadow pane (which is a div that contains
the shadow images) not to be displyed

dummy.getPanes().floatShadow.style.display = "none";





On Jun 27, 9:38 am, Navindian <[email protected]> wrote:
> Hello team,
>
> I wish to disable the shadow that is getting displayed when we open
> Infowindow.
>
> If you need The snippet, the following you could see...
>     var infowindow = new google.maps.InfoWindow();
>
>     var html = '<div>hello</div>';//use anything here..
>
>     infowindow.setContent(html);
>
>     infowindow.open(map,this);
>
> Thanks
> Navindian

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to