[routes] Fix parsing of multi geometry routes

This commit is contained in:
Kirill Zhdanovich 2013-10-30 16:28:37 +03:00 committed by Alex Zolotarev
parent 4aa548bc3a
commit 609e24d158

View file

@ -369,6 +369,16 @@ namespace
if (currTag == "coordinates")
SetOrigin(value);
}
else if (prevTag == "LineString")
{
if (currTag == "coordinates")
ParseLineCoordinates(value, " \n\r\t", ",");
}
else if (prevTag == "gx:Track")
{
if (currTag == "gx:coord")
ParseLineCoordinates(value, "\n\r\t", " ");
}
}
}
}