From a684dadd6d888126c113d1fe9d5d3c2858fe8a9d Mon Sep 17 00:00:00 2001 From: Patrick <patrick.wuerstle@gmx.de> Date: Mon, 1 Feb 2021 11:22:52 +0100 Subject: [PATCH] update --- vcm/js/here.js | 10 +++++----- vcm/js/navigation.js | 8 ++++---- vcm/js/noise.js | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/vcm/js/here.js b/vcm/js/here.js index 3aaf4d0b9..a8efadf07 100644 --- a/vcm/js/here.js +++ b/vcm/js/here.js @@ -13,7 +13,7 @@ function getNAVcar(){ try { $.ajax({ type: "POST", - url: '/NavCARdata', + url: '/partizipation/NavCARdata', }).done(function (newdata) { convertdata(newdata); }); @@ -141,7 +141,7 @@ function getFlow(){ try { $.ajax({ type: "POST", - url: '/FLOWdata', + url: '/partizipation/FLOWdata', }).done(function (newdata) { convertdata(newdata); }); @@ -165,7 +165,7 @@ function getNAV(){ try { $.ajax({ type: "POST", - url: '/NavCARdata', + url: '/partizipation/NavCARdata', }).done(function (newdata) { convertdata(newdata); }); @@ -189,7 +189,7 @@ function getFlowtest(){ try { $.ajax({ type: "POST", - url: '/FLOWtest', + url: '/partizipation/FLOWtest', }).done(function (newdata) { convertdata(newdata); }); @@ -259,7 +259,7 @@ function getTraffic() { try { $.ajax({ type: "POST", - url: '/getTrafficIncidents', + url: '/partizipation/getTrafficIncidents', }).done(function (newdata) { convertdata(newdata); }); diff --git a/vcm/js/navigation.js b/vcm/js/navigation.js index b1a95c3a4..a8136d6c4 100644 --- a/vcm/js/navigation.js +++ b/vcm/js/navigation.js @@ -17,7 +17,7 @@ function PostNavPoint(testing){ $.ajax({ async: true, type: "POST", - url: '/navPoint', + url: '/partizipation/navPoint', data: point }).done(function (SimSMid) { console.log(SimSMid) @@ -135,7 +135,7 @@ function showRoute(){ $.ajax({ async: true, type: "POST", - url: '/Routecalc', + url: '/partizipation/Routecalc', data: datapointSend }).done(function (SimSMid) { console.log(SimSMid) @@ -167,7 +167,7 @@ function showRoute(){ $.ajax({ async: true, type: "POST", - url: '/navPublicT', + url: '/partizipation/navPublicT', data: datapointSend }).done(function (SimSMid) { console.log(SimSMid) @@ -223,7 +223,7 @@ function publictransport(){ $.ajax({ async: true, type: "get", - url: '/navPublicT', + url: '/partizipation/navPublicT', data: datapointSend }).done(function (SimSMid) { console.log(SimSMid) diff --git a/vcm/js/noise.js b/vcm/js/noise.js index a95ab1335..ba777c1e6 100644 --- a/vcm/js/noise.js +++ b/vcm/js/noise.js @@ -4,7 +4,7 @@ function getNoiseData() { try { $.ajax({ type: "GET", - url: '/NoiseRealTime', + url: '/partizipation/NoiseRealTime', }).done(function (newdata) { convertdata(newdata); }); @@ -109,7 +109,7 @@ function HistNoiseData() { $.ajax({ async: false, type: "POST", - url: '/getNoiseHist', + url: '/partizipation/getNoiseHist', data: "", }).done(function (histwinddata) { convertdata(histwinddata); -- GitLab