1
var directionsService = new google.maps.DirectionsService();
선언 할 때 다음 오류가 발생합니다. 내 콘솔
TypeError: Result of expression 'google.maps.DirectionsService' [undefined] is not a constructor.
오류가 있습니까?
var directionsService = new google.maps.DirectionsService();
선언 할 때 다음 오류가 발생합니다. 내 콘솔
TypeError: Result of expression 'google.maps.DirectionsService' [undefined] is not a constructor.
오류가 있습니까?
당신은 페이지의 <head>
에 스크립트 참조를 추가해야합니다
<script type="text/javascript"
src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
덕분에 많이. 생성 된 키와 함께 src를 사용했습니다. 이제 제대로 작동합니다. –
pls upvote & 대답 받기 – Tsar