想要为现场呐喊的听众添加一个带有红点的简单地球世界地图,有人可以帮忙解决这个问题,因为我不知道从哪里开始我有我的api键。
我也有自己的VPS服务器,但不确定这很重要,因为我在那里运行我的shoutcast并且一直在阅读https://developers.google.com/maps/documentation/javascript/tutorial#api_key但是无法让它工作?
我收到此错误消息:
Google Maps APS服务器拒绝了您的请求,请求中指定的“传感器£参数必须设置为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>
答案 0 :(得分:0)
将TRUE更改为true并运行