[kml][tracks] Added unsupported previously tag for tracks

This commit is contained in:
Alex Zolotarev 2014-07-23 13:02:20 +03:00 committed by Alex Zolotarev
parent 613994ea08
commit 3a45fec6b1

View file

@ -535,6 +535,14 @@ namespace
ParseLineCoordinates(value, "\n\r\t", " ");
}
}
else if (ppTag == "gx:MultiTrack")
{
if (prevTag == "gx:Track")
{
if (currTag == "gx:coord")
ParseLineCoordinates(value, "\n\r\t", " ");
}
}
}
}
};