From 94d50c1fdd951511d4db4c9413ee806a98b8df4d Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Sat, 17 Jul 2010 11:44:09 +0000 Subject: [PATCH] longitude label was off by a factor of 10. --- HttpServer/request_handler.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/HttpServer/request_handler.h b/HttpServer/request_handler.h index ec7aa79f7..9b346be05 100644 --- a/HttpServer/request_handler.h +++ b/HttpServer/request_handler.h @@ -53,7 +53,6 @@ public: std::string command; std::size_t first_amp_pos = request.find_first_of("&"); command = request.substr(1,first_amp_pos-1); -// cout << "command: " << command << endl; if(command == "locate") { std::size_t last_amp_pos = request.find_last_of("&"); @@ -69,7 +68,7 @@ public: std::stringstream out1; out1 << setprecision(10); - out1 << "Nearest Place in map to " << lat/100000. << "," << lon/10000. << ": node with id " << start << ""; + out1 << "Nearest Place in map to " << lat/100000. << "," << lon/100000. << ": node with id " << start << ""; rep.content.append(out1.str()); rep.content.append("");