Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
var animateTruck = function () {

    $('#truck').css('left','-50px')
               .animate({'left':$(window).width()},
                        4000,
                        'linear',
                        function(){
                            animateTruck();
                        });
};

animateTruck();

JSFIDDLE

How do you make the truck follow a road on the map location:stanford shopping center to green park ?

share|improve this question
3  
What is the question? – Jacob Tomlinson Sep 20 '12 at 13:09
3  
Why... just why? P.s. you might also want to improve your accept rate if you want people to put effort into answering your questions. – Magrangs Sep 20 '12 at 13:16
4  
Please re-read my previous comment. – Magrangs Sep 20 '12 at 13:22
3  
You can animate to arbitrary places but you cannot 'follow the road' in an intelligent way. It will be a hardcoded path at best which will be completely useless in different browsers (maybe) and when the user re-sizes the window. – Magrangs Sep 20 '12 at 13:27
2  
api.jquery.com/animate – Magrangs Sep 20 '12 at 13:28
show 25 more comments

closed as too localized by George Stocker Sep 20 '12 at 13:47

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Maybe you can use the Direction Service from Google Maps API.

https://developers.google.com/maps/documentation/javascript/directions

Check for the DirectionsResult object

share|improve this answer

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