我正在尝试在javaScript文件中调用/加载GoogleMap api
jQuery(function($) {
// Asynchronously Load the map API
var script = document.createElement('script');
script.src = "https://maps.googleapis.com/maps/api/js?
key=YOUR_API_KEY&callback=initMap";
document.body.appendChild(script);
});
我收到错误消息“Google Maps API错误:MissingKeyMapError”
我在这里使用教程>找到了这段代码。 https://www.youtube.com/watch?v=P6wFYOtXwCQ&t=1s
答案 0 :(得分:0)
您尚未添加API密钥:https://developers.google.com/maps/documentation/javascript/get-api-key
这需要验证您的应用程序是API的唯一使用者(通常只有您的应用程序可以使用它)。
如果您需要有关API密钥工作方式的更多信息,这是一个很好的资源:https://cloud.google.com/endpoints/docs/openapi/when-why-api-key
script.src = "https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap";
它说YOUR_API_KEY
添加密钥。