當我點擊以下網頁的嵌入式Google Maps API:http://ada.kiexpro.com/html/list.html(點擊右上角的地圖)。谷歌地圖API不起作用(幫助!)
它顯示:
此網站需要不同的谷歌地圖 API密鑰。一個新密鑰可以在http://code.google.com/apis/maps/處產生 。
對不起,但我從來沒有用過此應用程序。我是否必須生成一個新代碼才能解決問題?或者還有其他問題?
當我點擊以下網頁的嵌入式Google Maps API:http://ada.kiexpro.com/html/list.html(點擊右上角的地圖)。谷歌地圖API不起作用(幫助!)
它顯示:
此網站需要不同的谷歌地圖 API密鑰。一個新密鑰可以在http://code.google.com/apis/maps/處產生 。
對不起,但我從來沒有用過此應用程序。我是否必須生成一個新代碼才能解決問題?或者還有其他問題?
是的,請點擊鏈接。每個不同的域都需要自己的API密鑰。
這通常爲我工作
<!DOCTYPE html>
<html>
<head>
<title>Google Maps</title>
<style>
#map-canvas {
width: 700px;
height: 600px;
position: absolute;
top: 40px;
left: 360px;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script>
function initialize() {
var mapCanvas = document.getElementById('map-canvas');
var mapOptions = {
center: new google.maps.LatLng(44.5403, -78.5463),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(mapCanvas, mapOptions)
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>