Google Map Centers at top left corner

后端 未结 2 1375
长情又很酷
长情又很酷 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: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
    });
    

提交回复
热议问题