Google Map Centers at top left corner

后端 未结 2 1372
长情又很酷
长情又很酷 2021-01-11 18:25

I\'ve been looking at many different examples, problems, and other things regarding this and I can\'t seem to find anything, so i\'ll finally ask a question.

The map

相关标签:
2条回答
  • 2021-01-11 19:18

    Initialize the map after the tab is clicked. This also works for the iframe google map, when used inside a tab.

    0 讨论(0)
  • 2021-01-11 19:24

    Tell your map to resize..

    google.maps.event.trigger(map, 'resize');
    

    map is the map instance that is returned by

    map = new google.maps.Map(document.getElementById("map_canvas"), {
         mapTypeId: google.maps.MapTypeId.ROADMAP
    });
    
    0 讨论(0)
提交回复
热议问题