I have not seen this before, usually the card either loads or does not occur due to some error. I get the map to load without errors, but it is empty:

<script type='text/javascript' src='http://maps.google.com/maps/api/js?sensor=false&ver=3.0'></script> <script type="text/javascript"> function initialize() { var latlng = new google.maps.LatLng(43.9869349, -102.24306); var myOptions = { zoom: 6, center: latlng, mapTypeId: google.maps.MapTypeId.TERRAIN }; var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); } </script> <div id="map_canvas" style="width:100%; height:300px"></div>
Has anyone else seen this or knew what could be the culprit? The map itself sits in a div that I show / hide using jQuery. Could this be a conflict?
ANSWER
It was just a silly conflict with the parent div, where I defined img {display: none}. Sorry .. Everyone wants to help.
source share