Click here to Skip to main content
15,910,358 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi to all,

I am using google map v3, in v3 infowindow display data in square box but i need round corner to that infowindow square box like in google map v2. how to modify that ?

could any one know about this suggest me.


Regards
Nanda Kishore.CH
Posted

Suppose your infowindow goes inside a HTML div.I assume your HTML markup goes as

HTML
<div id="#InfoWindowFprGoogleMap">
    <!-- Markup to render google map -->
</div>


In my CSS style definition i can achieve rounded corners of particular div by below definition.Just add the below code to your CSS file

CSS
#InfoWindowFprGoogleMap
{
    border-radius:10px 10px 10px 10px;
}
 
Share this answer
 
v2
Using Border-radious of CSS3 You Can Give rounded corners
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900