Forgot to remove debug output.
This commit is contained in:
parent
b897b5d0e2
commit
ae93423116
@ -240,7 +240,7 @@ function computeViaRoute(pixel, isTemporary, skipViaPointsIndex) {
|
||||
var coordinate = map.getLonLatFromPixel(pixel);
|
||||
var via = coordinate.transform(EPSG_900913, EPSG_4326);
|
||||
var viaNodeInserted = false;
|
||||
var newURL = HOST_ROUTING_URL + "&start="+from.lat + ',' + from.lon + '&dest=' + to.lat + ',' + to.lon;
|
||||
var newURL = HOST_ROUTING_URL + "?start="+from.lat + ',' + from.lon + '&dest=' + to.lat + ',' + to.lon;
|
||||
newURL += '&geomformat=cmp';
|
||||
for(var i = 0; i < viaPointsVector.length; i++) {
|
||||
if(i == nearestSegmentIndex) { //insert new via node here
|
||||
|
@ -55,7 +55,7 @@ public:
|
||||
std::string command;
|
||||
std::size_t firstAmpPosition = request.find_first_of("?");
|
||||
command = request.substr(1,firstAmpPosition-1);
|
||||
DEBUG("[debug] looking for handler for command: " << command);
|
||||
// DEBUG("[debug] looking for handler for command: " << command);
|
||||
try {
|
||||
if(pluginMap.Holds(command)) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user