Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. $('#start_travel').click(function(e){
  2. e.preventDefault(); console.log(7777777777);
  3. map.travelRoute({
  4. origin: [40.936739, 9.174597],
  5. destination: [41.006362, 9.254715],
  6. travelMode: 'driving',
  7. step: function(e){
  8. $('#instructions').append('<li>'+e.instructions+'</li>');
  9. $('#instructions li:eq('+e.step_number+')').delay(450*e.step_number).fadeIn(200, function(){
  10. map.setCenter(e.end_location.lat(), e.end_location.lng());
  11. map.drawPolyline({
  12. path: e.path,
  13. strokeColor: '#131540',
  14. strokeOpacity: 0.6,
  15. strokeWeight: 6
  16. });
  17. });
  18. }
  19. });
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement