Cách làm mới bản đồ khi bạn thay đổi kích thước div
Chỉ gọi là không đủ google.maps.event.trigger(map, 'resize');
Bạn cũng nên đặt lại trung tâm bản đồ.
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);
}
}
Làm thế nào để lắng nghe sự kiện thay đổi kích thước
Angular (ng-show hoặc ui-bootstrap sụp đổ)
Liên kết trực tiếp với khả năng hiển thị của phần tử thay vì giá trị được liên kết với ng-show, bởi vì đồng hồ $ có thể kích hoạt trước khi ng-show được cập nhật (vì vậy div sẽ vẫn ở chế độ ẩn).
scope.$watch(function () { return element.is(':visible'); },
function () {
resize();
}
);
jQuery .show ()
Sử dụng gọi lại tích hợp
$("#myMapDiv").show(speed, function() { resize(); });
Bootstrap 3 phương thức
$('#myModal').on('shown.bs.modal', function() {
resize();
})