I get the following error trying to declare

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

The error in my console

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

Any ideas?

link|improve this question

0% accept rate
feedback

1 Answer

You must add script reference to the <head> of your page:

<script type="text/javascript" 
    src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
link|improve this answer
Thanks a lot. I used a src with the generated key. Now it works fine. – Sandra Larsson Aug 1 '11 at 17:26
pls upvote & accept the answer – Tsar Aug 2 '11 at 7:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.