Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Maps do not show if the width of the container div goes beyond 870px

<div class="outercontainer">
  <div class="clearfix" id="ctmcontentcontainer">
    <div class="bgcolor2" id="ebrochure"> <div class="paddingleft20 paddingright20  paddingbottom10 bgcolor3">
        <div class="borderstyle1 margintop20">
            <div style="width:100%;height:275px;" class="textaligncenter" id="map"></div>
        </div> 
    </div> 
  </div>
</div>

CSS :

.outercontainer {
    margin: 0 auto;
    padding: 20px 0;
    width: 870px;
}

calling on document ready:

<script type="text/javascript">
  $(document).ready(function(){ 
  var brochureMap = null; 
  var geocoder = null; 
  var directionsDisplay;
  var directionsService = new google.maps.DirectionsService();
  var infowindow = new google.maps.InfoWindow();
  var brochureMap; 
  function initialize() { 
      var ltlng = new google.maps.LatLng(somedLat ,somedLng )
      var myOptions = { 
          zoom:15, 
          mapTypeId:  google.maps.MapTypeId.ROADMAP, 
          max-width:  none, 
      } 
      brochureMap = new google.maps.Map(document.getElementById(""map""), myOptions); 
      brochureMap.setCenter(ltlng); 
      var marker = new google.maps.Marker({
          map: brochureMap,
          position: ltlng
      }); 
  } 
  initialize(); 
  });
</script>

It works in IE though

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.