Google Map not shown

后端 未结 2 389
猫巷女王i
猫巷女王i 2020-12-12 02:53

I write a web page, and inserted Google Map into it. But the map always not shown. I tried to use Firebug to see what happened, and found there are no errors.

The di

相关标签:
2条回答
  • 2020-12-12 03:14

    Your map div doesn't have a size. This:

    <div id="map-canvas" style="height:300px; width:300px;"> 
    

    makes it display for me.

    0 讨论(0)
  • 2020-12-12 03:25

    You didn't set the dimensions of the map div, but of the div that the map is nested in. Add height and width properties to div id 'map-canvas' and the map should appear.

        <div id="map-canvas" style="width: 400px; height: 400px;">Loading...</div>
    
    0 讨论(0)
提交回复
热议问题