[routes] Fix parsing of multi geometry routes
This commit is contained in:
parent
4aa548bc3a
commit
609e24d158
1 changed files with 10 additions and 0 deletions
|
@ -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", " ");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue