2011-08-01 33 views
1

我收到以下錯誤試圖申報錯誤使用谷歌地圖API路線

var directionsService = new google.maps.DirectionsService(); 

錯誤在我的控制檯

TypeError: Result of expression 'google.maps.DirectionsService' [undefined] is not a  constructor. 

任何想法?

回答

2

您必須腳本引用添加到您的網頁<head>

<script type="text/javascript" 
    src="http://maps.googleapis.com/maps/api/js?sensor=false"></script> 
+0

非常感謝。我用生成的密鑰使用src。現在它工作正常。 –

+0

請投票並接受答案 – Tsar