I am trying to make my map have a 100% height using Google Maps API. (In the past I've wanted to make my Google Charts API charts have percentage heights also)
Everywhere I've read so far says to set html and body heights to 100% first. I've done that, but the map won't show up unless I make its container have a fixed height.
<html lang="en">
<head>
<meta charset="utf-8">
<title>Map</title>
<style>
html, body{
width:100%;
height:100%;
}
.map{
width:100%;
height:100%;
}
</style>
</head>
<div class="mainWrap">
<div id="mainMap" class="map">
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
/////Global variables and arrays/////
var markerArray = [];
var myID;
var mapZoom = 9; /
var mapCenterLat = 41.82454868;
var mapCenterLon = -87.6341629;
//Initiate the initialize function to build map, after page loads
google.maps.event.addDomListener(window, 'load', initialize); //when window loads, start initialize function (below)
//Google API Initialize function that builds map
function initialize() {
/////Variables/////
var infoWindow = new google.maps.InfoWindow({
});
var map_canvas = document.getElementById('mainMap');
var map_options = {
center: new google.maps.LatLng(mapCenterLat,mapCenterLon),
zoom: mapZoom,
mapTypeId: google.maps.MapTypeId.TERRAIN
};
//Draw the map
var map = new google.maps.Map(map_canvas, map_options);
} //End initialize()
</script>
</html>