Showing a Google Map in a modal created with Twitter Bootstrap

前端 未结 11 1070
再見小時候
再見小時候 2020-11-29 17:53

I\'m trying to insert a Google map into a modal using Twitter Bootstrap. The modal shows up with the shape of the map present, but only part of the map is displayed, the res

11条回答
  •  生来不讨喜
    2020-11-29 18:08

    For me, it works like this (Boostrap 3):

    $("#contact-modal").on("shown.bs.modal", function () {
        google.maps.event.trigger(map, "resize");
    });
    

提交回复
热议问题