Circular Google Map Using Css And Html
I am trying to make a circular google map but, the map always appears in square.I am using fixed width css circle(http://codeitdown.com/css-circles/) .circle-text { width: 500px; h
Solution 1:
It is working fine
<div id="map-canvas" class="circle-text"><div id="googleMap"></div></div>
CSs
.circle-text, #googleMap {
width: 500px;
height: 380px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
background: #4679BD;
}
Post a Comment for "Circular Google Map Using Css And Html"