我正在使用没有密钥的 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?&sensor=true&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>