0

ライブ シャウトキャスト リスナー向けに赤い点が付いたシンプルな地球儀の世界地図を追加しようとしていますが、API キーを持っていること以外はどこから始めればよいかわからないので、誰か助けてください。

私は自分のVPSサーバーも持っていますが、そこでshoutcastを実行していて、https: //developers.google.com/maps/documentation/javascript/tutorial#api_keyを読んでいるので、これが重要かどうかはわかりませんが、動作しませんか?

次のエラー メッセージが表示されます。

Google マップ APS サーバーがリクエストを拒否しました。リクエストで指定された「sensor£ パラメータは、true または false に設定する必要があります。

コード:

<!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=AIzaSyDcdTcPLIl1aQEO4SO0RQkJE-X-UacZkXY&sensor=TRUE">    </script>    <script type="text/javascript">      function initialize() {        var myOptions = {          center: new google.maps.LatLng(-34.397, 150.644),          zoom: 8,          mapTypeId: google.maps.MapTypeId.ROADMAP        };        var map = new google.maps.Map(document.getElementById("map_canvas"),            myOptions);      }    </script>  
<title>Test Google Maps</title>
</head>  
<body onload="initialize()">    <div id="map_canvas" style="width:100%; height:100%"></div>  
</body></html>
4

1 に答える 1

0

Change TRUE to true and it works

于 2012-04-23T17:02:59.983 に答える