I don't really know how to explain this, the image pretty much speaks for itself. Looks the same on Chrome, Firefox and Internet Explorer.
I'm using jQuery Mobile, could that have anything to do with it?
My code, using Google Maps API V3.
var myOptions = {
center:new google.maps.LatLng(59.3474845, 18.0621677),
zoom:15,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("map"),
myOptions);
var marker = new google.maps.Marker({
map:map,
position:myOptions.center
});
var infowindow = new google.maps.InfoWindow({
content: '<p>boooyah</p>'
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map, marker);
});
My css:
#map { height: 300px; width: 300px; }