diff --git a/src/Client/API/Console/bin/Debug/net8.0/Console b/src/Client/API/Console/bin/Debug/net8.0/Console index 4c57750..d433124 100755 Binary files a/src/Client/API/Console/bin/Debug/net8.0/Console and b/src/Client/API/Console/bin/Debug/net8.0/Console differ diff --git a/src/Client/API/Console/bin/Debug/net8.0/Console.dll b/src/Client/API/Console/bin/Debug/net8.0/Console.dll index 3b59df3..4bc0029 100755 Binary files a/src/Client/API/Console/bin/Debug/net8.0/Console.dll and b/src/Client/API/Console/bin/Debug/net8.0/Console.dll differ diff --git a/src/Client/API/Console/bin/Debug/net8.0/Console.pdb b/src/Client/API/Console/bin/Debug/net8.0/Console.pdb index 5b52132..b46fe52 100755 Binary files a/src/Client/API/Console/bin/Debug/net8.0/Console.pdb and b/src/Client/API/Console/bin/Debug/net8.0/Console.pdb differ diff --git a/src/Client/API/Console/bin/Debug/net8.0/LibParse.dll b/src/Client/API/Console/bin/Debug/net8.0/LibParse.dll old mode 100755 new mode 100644 index e659a35..9eacaa5 Binary files a/src/Client/API/Console/bin/Debug/net8.0/LibParse.dll and b/src/Client/API/Console/bin/Debug/net8.0/LibParse.dll differ diff --git a/src/Client/API/Console/bin/Debug/net8.0/LibParse.pdb b/src/Client/API/Console/bin/Debug/net8.0/LibParse.pdb old mode 100755 new mode 100644 index b57514b..172844f Binary files a/src/Client/API/Console/bin/Debug/net8.0/LibParse.pdb and b/src/Client/API/Console/bin/Debug/net8.0/LibParse.pdb differ diff --git a/src/Client/API/Console/bin/Debug/net8.0/LibServer.dll b/src/Client/API/Console/bin/Debug/net8.0/LibServer.dll old mode 100755 new mode 100644 index e30d4ae..2eff5dc Binary files a/src/Client/API/Console/bin/Debug/net8.0/LibServer.dll and b/src/Client/API/Console/bin/Debug/net8.0/LibServer.dll differ diff --git a/src/Client/API/Console/bin/Debug/net8.0/LibServer.pdb b/src/Client/API/Console/bin/Debug/net8.0/LibServer.pdb old mode 100755 new mode 100644 index fed86c8..4d283a7 Binary files a/src/Client/API/Console/bin/Debug/net8.0/LibServer.pdb and b/src/Client/API/Console/bin/Debug/net8.0/LibServer.pdb differ diff --git a/src/Server/LibParse/bin/Debug/net8.0/LibParse.dll b/src/Server/LibParse/bin/Debug/net8.0/LibParse.dll old mode 100755 new mode 100644 index a599421..9eacaa5 Binary files a/src/Server/LibParse/bin/Debug/net8.0/LibParse.dll and b/src/Server/LibParse/bin/Debug/net8.0/LibParse.dll differ diff --git a/src/Server/LibParse/bin/Debug/net8.0/LibParse.pdb b/src/Server/LibParse/bin/Debug/net8.0/LibParse.pdb old mode 100755 new mode 100644 index 217f855..172844f Binary files a/src/Server/LibParse/bin/Debug/net8.0/LibParse.pdb and b/src/Server/LibParse/bin/Debug/net8.0/LibParse.pdb differ diff --git a/src/Server/LibServer/bin/Debug/net8.0/LibServer.dll b/src/Server/LibServer/bin/Debug/net8.0/LibServer.dll old mode 100755 new mode 100644 index 3bd4a8a..2eff5dc Binary files a/src/Server/LibServer/bin/Debug/net8.0/LibServer.dll and b/src/Server/LibServer/bin/Debug/net8.0/LibServer.dll differ diff --git a/src/Server/LibServer/bin/Debug/net8.0/LibServer.pdb b/src/Server/LibServer/bin/Debug/net8.0/LibServer.pdb old mode 100755 new mode 100644 index 02369d3..4d283a7 Binary files a/src/Server/LibServer/bin/Debug/net8.0/LibServer.pdb and b/src/Server/LibServer/bin/Debug/net8.0/LibServer.pdb differ diff --git a/src/Server/RobotControlServer/Routes/RouteControl.cs b/src/Server/RobotControlServer/Routes/RouteControl.cs index 56ded21..f52a0fc 100644 --- a/src/Server/RobotControlServer/Routes/RouteControl.cs +++ b/src/Server/RobotControlServer/Routes/RouteControl.cs @@ -12,13 +12,16 @@ public class RouteControl: IRoute { { "roomba", new() { { - "start", "127.0.0.1:5000/api/v1/database/metadata" + "start", "127.0.0.1:5050/api/v1/start" + // "start", "127.0.0.1:5000/api/v1/database/metadata" }, { - "stop", "127.0.0.1:5000/api/v1/database/metadata" + "stop", "127.0.0.1:5050/api/v1/stop" + // "stop", "127.0.0.1:5000/api/v1/database/metadata" }, { - "map", "127.0.0.1:5000/api/v1/database/metadata" + "map", "127.0.0.1:5050/api/v1/map" + // "map", "127.0.0.1:5000/api/v1/database/metadata" } } } diff --git a/src/Web/src/components/mapCanvas.jsx b/src/Web/src/components/mapCanvas.jsx index daaae70..b26a5e3 100644 --- a/src/Web/src/components/mapCanvas.jsx +++ b/src/Web/src/components/mapCanvas.jsx @@ -35,7 +35,6 @@ export default class MapCanvas extends React.Component { async getLinePoints(endpoint = '', altKey, altVal) { try { - const { searchOption, inputValue } = this.state; const key = altKey || this.state.searchOption; const val = altVal || this.state.inputValue; const url = `${API_ENDPOINT}/database/${endpoint}?${key}=${val}`;