I'm working with a Google Map InfoWindow and I need to set a border radius for it. Can anyone provide some guidance on how to accomplish this?
Below is the code I am currently using:
var latlng = new google.maps.LatLng(lat,lng);
var myOptions = {
zoom : 8,
center : latlng,
mapTypeId : google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);
var infowindow = new google.maps.InfoWindow();
infowindow.open(map, marker);