Como atualizar o mapa quando você redimensiona sua div
Não basta apenas ligar. google.maps.event.trigger(map, 'resize');
Você deve redefinir o centro do mapa também.
var map;
var initialize= function (){
...
}
var resize = function () {
if (typeof(map) == "undefined") {) {
// initialize the map. You only need this if you may not have initialized your map when resize() is called.
initialize();
} else {
// okay, we've got a map and we need to resize it
var center = map.getCenter();
google.maps.event.trigger(map, 'resize');
map.setCenter(center);
}
}
Como ouvir o evento de redimensionamento
Angular (recolhimento de ng-show ou ui-bootstrap)
Vincule diretamente à visibilidade do elemento, e não ao valor vinculado ao ng-show, porque o $ watch pode disparar antes que o ng-show seja atualizado (para que a div ainda fique invisível).
scope.$watch(function () { return element.is(':visible'); },
function () {
resize();
}
);
jQuery .show ()
Use o retorno de chamada incorporado
$("#myMapDiv").show(speed, function() { resize(); });
Bootstrap 3 Modal
$('#myModal').on('shown.bs.modal', function() {
resize();
})