Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@mapswithme.com>2014-07-23 14:02:20 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:21:47 +0300
commit3a45fec6b158533b454506f154ba75e4b3aa4278 (patch)
tree4505a026488982fe658a319d069282a9d8cbeda5 /map/bookmark.cpp
parent613994ea08a924d56ac6d0bf48af276c5d31fd44 (diff)
[kml][tracks] Added unsupported previously tag for tracks
Diffstat (limited to 'map/bookmark.cpp')
-rw-r--r--map/bookmark.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/map/bookmark.cpp b/map/bookmark.cpp
index ecfe20339b..f5120dbc8d 100644
--- a/map/bookmark.cpp
+++ b/map/bookmark.cpp
@@ -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", " ");
+ }
+ }
}
}
};