Google map not filling modal popup

前端 未结 5 528
心在旅途
心在旅途 2021-01-14 10:46

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

5条回答
  •  情话喂你
    2021-01-14 11:16

    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);
        });
    

提交回复
热议问题