forked from organicmaps/organicmaps
Parse URL s= parameter as style.
This commit is contained in:
parent
f9f5807b5e
commit
7b6e7d3f36
2 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -17,6 +17,7 @@ struct ApiPoint
|
|||
double m_lon;
|
||||
string m_name;
|
||||
string m_id;
|
||||
string m_style;
|
||||
};
|
||||
|
||||
class Uri;
|
||||
|
|
Loading…
Add table
Reference in a new issue