1

我尝试声明以下错误

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

我的控制台中的错误

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

有任何想法吗?

4

1 回答 1

3

您必须将脚本引用添加到<head>您的页面:

<script type="text/javascript" 
    src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
于 2011-08-01T15:07:00.720 回答