指定了Google地图传感器,但仍然要求选择true为false

时间:2011-12-02 01:28:12

标签: google-maps google-maps-api-3 google-maps-api-2

嘿eveyrone目前我已经获得了一个包含网址http://localhost/的Google地图密钥

经历了很好但我得到一个错误,说明我需要选择一个真或假的传感器。我已经选择了一个并使用它。尝试了真假。这是我的代码

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
  html { height: 100% }
  body { height: 100%; margin: 0; padding: 0 }
  #map_canvas { height: 100% }
</style>
<script type="text/javascript"
    src="http://maps.googleapis.com/maps/api/js?key=API_KEY_IS_SPECIFIED_JUST_REMOVED_FOR_THIS_QUESTION&sensor=FALSE">
</script>
<script type="text/javascript">
  function initialize() {
    var latlng = new google.maps.LatLng(-34.397, 150.644);
    var myOptions = {
      zoom: 8,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"),
        myOptions);
  }

</script>
</head>
<body onload="initialize()">
  <div id="map_canvas" style="width:100%; height:100%"></div>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

也许它区分大小写(除非你不知道,否则总是假设事情是这样)。请尝试使用false代替FALSE