I am having trouble with my infoWindow on Google Maps displaying the correct information. I need to adjust the size of the white div to match the grey box inside and also resize the arrow that connects the marker to the white div.
Check out the image below:
Here is the code snippet:
var contentString = '<form >'+
'<h2><b> Data:</b></h2>'+
'<div id="bodyContent">'+
'<div style=width:220px;display:inline-block;>'+
'<p> ' +'</p>' + '<p> ' + '</p>' + '<p> ' + '</p>' +
'<p> ' + '</p>' + '</div>'+
'<div style=width:220px;display:inline-block;>'+
'<p> ' +'</p>' + '<p> ' + '</p>' + '<p> ' + '</p>' +
'<p> ' + '</p>' + '</div>'+ '</div>'+ '</form>';
var infowindow = new google.maps.InfoWindow({
content: contentString
});
/* info window */
infowindow.open(map,tracked);