forked from organicmaps/organicmaps
Changed polygon groups delimeter to '|' from ','
because country names can contain ,
This commit is contained in:
parent
dd86845706
commit
654fe2e087
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ namespace kml
|
|||
continue;
|
||||
CountryPolygons country;
|
||||
PolygonLoader loader(baseDir, country, simplifyCountriesLevel);
|
||||
utils::TokenizeString(line, ",", loader);
|
||||
utils::TokenizeString(line, "|", loader);
|
||||
if (!country.m_regions.empty())
|
||||
countries.push_back(country);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue