forked from organicmaps/organicmaps-tmp
Osm tag is ele, not elevation.
This commit is contained in:
parent
ea3fee3d72
commit
297cf71e4a
2 changed files with 3 additions and 2 deletions
|
@ -43,7 +43,7 @@ string Metadata::GetWikiURL() const
|
|||
|
||||
} // namespace feature
|
||||
|
||||
// Prints types in osm-friendly format.
|
||||
// Warning: exact osm tag keys should be returned for valid enum values.
|
||||
string DebugPrint(feature::Metadata::EType type)
|
||||
{
|
||||
using feature::Metadata;
|
||||
|
@ -58,7 +58,7 @@ string DebugPrint(feature::Metadata::EType type)
|
|||
case Metadata::FMD_URL: return "url";
|
||||
case Metadata::FMD_WEBSITE: return "website";
|
||||
case Metadata::FMD_INTERNET: return "internet_access";
|
||||
case Metadata::FMD_ELE: return "elevation";
|
||||
case Metadata::FMD_ELE: return "ele";
|
||||
case Metadata::FMD_TURN_LANES: return "turn:lanes";
|
||||
case Metadata::FMD_TURN_LANES_FORWARD: return "turn:lanes:forward";
|
||||
case Metadata::FMD_TURN_LANES_BACKWARD: return "turn:lanes:backward";
|
||||
|
|
|
@ -181,4 +181,5 @@ public:
|
|||
};
|
||||
} // namespace feature
|
||||
|
||||
// Prints types in osm-friendly format.
|
||||
string DebugPrint(feature::Metadata::EType type);
|
||||
|
|
Loading…
Add table
Reference in a new issue