2016-04-19 43 views
0

您好我得到了在infobox.js「谷歌是沒有定義」這個錯誤,並顯示錯誤是infobox.prototype =新google.maps.overlayview()的錯誤,谷歌是沒有定義

infobox.prototype = new google.maps.overlayview() 

這裏是我在HTML中的代碼,希望我包含圖書館的權利。

<!DOCTYPE html> 
<html> 
<head> 
<link rel="stylesheet" type="text/css" href="style.css"> 
</head> 
<body> 
<div id="map"></div> 
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB9Mpf-bWJn8ym13pLnRdHSNHymRrvOuiw&callback=initMap"> 
</script> 
<script src="library/infobox.js" type="text/javascript"></script> 
<script src="script.js"></script> 
</body> 
</html> 

我在script.js文件中調用了google map API和infobox.js。 在此先感謝!

+0

有兩個'async'和'defer'是無效的HTML反正。 – Bergi

+0

您應該[不要使用'new'來創建原型對象](https://stackoverflow.com/questions/12592913/what-is-the-reason-to-use-the-new-keyword-here)。 – Bergi

回答

3

當你調用OverlayView的構造函數谷歌地圖仍然沒有加載。說它不異步,推遲和回調:

<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB9Mpf-bWJn8ym13pLnRdHSNHymRrvOuiw"></script> 

而且它是區分大小寫的,因此:infobox.prototype = new google.maps.OverlayView()

+0

非常感謝!它解決了我的問題! – dididaisy

相關問題