HTML页面不显示谷歌地图

时间:2013-12-26 10:27:32

标签: html google-maps google-api

我有一个简单的HTML页面,我想使用API​​ Access显示谷歌地图。我使用这段代码:

    <!DOCTYPE html><!-- HTML5 -->
<html lang="it" dir="ltr">
    <head>
        <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=blablabla&sensor=true">
        </script>
        <script type="text/javascript">
          function initialize() {
            var mapOptions = {center: new google.maps.LatLng(-34.397, 150.644), zoom: 8};
            var map = new google.maps.Map(document.getElementById("map-canvas"),mapOptions);
          }
          google.maps.event.addDomListener(window, 'load', initialize);
        </script>
    </head>
    <body>
        <div id="map-canvas"/>
    </body>
</html>

我确信脚本块已处理完毕,但页面未显示地图。

你能帮助我吗?

2 个答案:

答案 0 :(得分:3)

//在头部区域放置这些样式

<head>
<style>
  html{
    height:100%;
   }
   body{
    margin: 0;
    padding: 0;
    height:100%;
   }
</style>
</head>

//在文档正文中,定义map_canvas的样式:

<body>
 <div id="map_canvas" style="height:100%;"></div>

</body>

//右键单击您的文档并选择insepct元素。在开发人员//工具中选择控制台选项卡。如果没有显示错误,那么这可能会解决您的问题 //祝你好运8 - )

答案 1 :(得分:0)

试试这个

首先在您的部分中包含Jquery库(在google js文件之前)

<script src="http://code.jquery.com/jquery-1.8.3.js" type="text/javascript"></script>