1


我正在使用没有密钥的 3.8 版。我以前在我的桌面上使用过这个确切的代码(没有密钥),它工作得很好,但现在由于某种原因它不能工作。

我找不到任何拼写错误,没有密钥的导入声明是否与我使用的有所不同?

这是我的精简代码:

<!DOCTYPE html>
<html>
    <head>
        <title>asdfasdf</title>
    </head>
    <body onload = "initialize();">

        <!-- map here -->
        <div id = "map"></div>

        <!-- Google Maps API -->
        <script type = "text/javascript" src = "http://maps.googleapis.com/maps/api/js?&amp;sensor=true&amp;v=3.8"></script>

        <script type = "text/javascript">

            function initialize()
            {
                // object literal for map options
                var myOptions =
                {
                    center: new google.maps.LatLng(37.09024, -95.712891), // coordinates for center of map 30, 3
                    zoom: 4, // smaller number --> zoom out
                    mapTypeId: google.maps.MapTypeId.HYBRID // ROADMAP, SATELLITE, TERRAIN, or HYBRID
                };

                // note: if the id has a dash in its' name, map instantiation doesn't work!
                var map = new google.maps.Map(document.getElementById("map"), myOptions);

            } // end of initialize
        </script>
    </body>
</html>
4

2 回答 2

2

它正在工作。也许你忘了给width/height你地图 div 所以你看不到它?

你可以看看这里http://jsfiddle.net/2HmMQ/

于 2012-12-13T06:39:51.870 回答
2

V3.8 已退役,如果您提出要求,您将获得 v3.9。

你的问题是你的地图没有尺寸,所以你看不到它。

如果我改变你的地图 div 给它一个大小,像这样:

        <div id="map" style="height:500px; width:600px;"></div>

有用。

于 2012-12-13T06:44:59.223 回答