last leg of route is now computed correctly

This commit is contained in:
Dennis Luxen
2010-09-16 15:08:45 +00:00
parent 6cefcf568b
commit 41e5a52509
2 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -168,10 +168,10 @@ public:
rep.content += tmp;
rep.content += (" ");
}
convertLatLon(targetCoord.lon, tmp);
convertLatLon(phantomNodes->targetCoord.lon, tmp);
rep.content += tmp;
rep.content += (",");
convertLatLon(targetCoord.lat, tmp);
convertLatLon(phantomNodes->targetCoord.lat, tmp);
rep.content += tmp;
}