I\'m using a modal popup when users click the map on this page here, which brings up a larger map with directions.
The map isn\'t filling the entire space however an
Thanks for the answers guys. Just to help anyone else that may have this problem, in addition to having to resize due to having the map in a modal, I also had to reset the center.
The below code needed to be added within the initialize
function.
$('#show_map').on('shown', function () {
google.maps.event.trigger(map, "resize");
map.setCenter(myLatlng);
});