Grey area in Google maps

前端 未结 4 1113
时光说笑
时光说笑 2021-01-05 02:19

I have implemented Google maps in my app (in a modal), however as you can see on the images below there is a grey area that I of course want to get rid of. It is possible to

4条回答
  •  隐瞒了意图╮
    2021-01-05 03:10

    This worked for me:

     var center = map.getCenter();
     // . . . your code for changing the size of the map
     google.maps.event.trigger(map, "resize");
     map.setCenter(center);
    

    taken from the link, that @Bruno mentioned

提交回复
热议问题