Parse URL s= parameter as style.

This commit is contained in:
Keith Wansbrough 2015-10-21 21:58:30 +01:00
parent f9f5807b5e
commit 7b6e7d3f36
2 changed files with 9 additions and 0 deletions

View file

@ -70,6 +70,7 @@ bool ParsedMapApi::Parse(Uri const & uri)
ApiMarkPoint * mark = static_cast<ApiMarkPoint *>(m_controller->CreateUserMark(glPoint));
mark->SetName(p.m_name);
mark->SetID(p.m_id);
mark->SetStyle(style::GetSupportedStyle(p.m_style, p.m_name));
}
return true;
@ -134,6 +135,13 @@ void ParsedMapApi::AddKeyValue(string key, string const & value, vector<ApiPoint
else
LOG(LWARNING, ("Map API: Point url with no point. 'll' should come first!"));
}
else if (key == "s")
{
if (!points.empty())
points.back().m_style = value;
else
LOG(LWARNING, ("Map API: Point style with no point. 'll' should come first!"));
}
else if (key == "backurl")
{
// Fix missing :// in back url, it's important for iOS

View file

@ -17,6 +17,7 @@ struct ApiPoint
double m_lon;
string m_name;
string m_id;
string m_style;
};
class Uri;