In this repo i store all my websites, each in a different branch
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

50 righe
1.7 KiB

  1. // Trein Tijden opvragen en weergeven
  2. $.ajax({
  3. url: 'https://api.vertrektijd.info/ns/_departures?station=dn',
  4. type: 'get',
  5. headers: {
  6. "Accept-Version": '1.3.0',
  7. "X-Vertrektijd-Client-Api-Key": 'cymk3fzZHYTiAl974wPMgqrGvDuU0p'
  8. },
  9. dataType: 'json',
  10. success: function(data) {
  11. $('#vertrek_trein').empty();
  12. $.each(data, function(i,tijd){
  13. content = '<tr>';
  14. content += '<td>' + Object.values(tijd.VertrekSpoor)[0] + '</td>';
  15. content += '<td>' + tijd.EindBestemming + '</td>';
  16. var str = tijd.VertrekTijd;
  17. var res = str.slice(11, 16);
  18. content += '<td>' + res + '</td>';
  19. content += '</tr>';
  20. $(content).appendTo("#vertrek_trein");
  21. return i<2;
  22. });
  23. }
  24. });
  25. // Bus Tijden opvragen en weergeven
  26. $.ajax({
  27. url: 'https://api.vertrektijd.info/departures/_stopcode/65520012,65520210,65520011/',
  28. type: 'get',
  29. headers: {
  30. "Accept-Version": '1.3.0',
  31. "X-Vertrektijd-Client-Api-Key": 'cymk3fzZHYTiAl974wPMgqrGvDuU0p'
  32. },
  33. dataType: 'json',
  34. success: function(data2) {
  35. $('#vertrek_bus').empty();
  36. $.each(data2.BTMF, function(b,tijd2){
  37. $.each(tijd2.Departures, function(i, data3){
  38. if(i<1){
  39. content = '<tr>';
  40. content += '<td>' + data3.LineNumber + '</td>';
  41. content += '<td>' + data3.Destination + '</td>';
  42. var str = data3.PlannedDeparture;
  43. var res = str.slice(11, 16);
  44. content += '<td>' + res + '</td>';
  45. content += '</tr>';
  46. $(content).appendTo("#vertrek_bus");
  47. }
  48. });
  49. });
  50. }
  51. });