When I'm loading a Google Map (v3) with Directions into a div that is hidden from the user, the resulting map is not zoomed and centered correctly. I tried firing a resize
event but that did only partially solve the problem.
Usually when loading a map with directions, the API automatically finds the optimal view (ie. zoom level and center) as to show the entire journey. Any ideas what I'm doing wrong?
Please see JsFiddle
<button id="show">Show</button>
<div id="a">
<div id="map_wrapper" style="display:none">
<div id="map_canvas" style="height: 354px; width:713px;"></div>
</div>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&callback=initialize"></script>
<script>
var directionsService,
directionsDisplay,
map;
function initialize() {
directionsService = new google.maps.DirectionsService();
directionsDisplay = new google.maps.DirectionsRenderer();
var mapOptions = { mapTypeId: google.maps.MapTypeId.ROADMAP, disableDefaultUI: true }
map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);
directionsDisplay.setMap(map);
var start = 'New York, NY';
var end = 'Chicago, IL';
var request = { origin: start, destination: end, travelMode: google.maps.DirectionsTravelMode.DRIVING };
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
</script>
</div>
And the javascript:
$(document).ready(function(e) {
$('#show').on('click', function() {
$('#map_wrapper').show();
google.maps.event.trigger(map, "resize");
});
});