Lat/Lon mixed up in output of locate command. Thanks to Ted Rosenbaum.
This commit is contained in:
parent
a02dafb8d7
commit
4ce7739453
@ -74,7 +74,7 @@ public:
|
|||||||
|
|
||||||
std::stringstream out2;
|
std::stringstream out2;
|
||||||
out2 << setprecision(10);
|
out2 << setprecision(10);
|
||||||
out2 << "<coordinates>" << data->lat / 100000. << "," << data->lon / 100000. << "</coordinates>";
|
out2 << "<coordinates>" << data->lon / 100000. << "," << data->lat / 100000. << "</coordinates>";
|
||||||
rep.content.append(out2.str());
|
rep.content.append(out2.str());
|
||||||
rep.content.append("</Point>");
|
rep.content.append("</Point>");
|
||||||
rep.content.append("</Placemark>");
|
rep.content.append("</Placemark>");
|
||||||
|
Loading…
Reference in New Issue
Block a user