Added missing API ID for selected point to use in Android intents.

This commit is contained in:
Alex Zolotarev 2016-03-11 13:01:52 +03:00 committed by Sergey Yershov
parent be6d47fd55
commit b167513276
2 changed files with 3 additions and 0 deletions

View file

@ -659,6 +659,7 @@ void Framework::FillPointInfo(m2::PointD const & mercator, string const & custom
void Framework::FillApiMarkInfo(ApiMarkPoint const & api, place_page::Info & info) const
{
FillPointInfo(api.GetPivot(), api.GetName(), info);
info.m_apiId = api.GetID();
info.m_apiUrl = GenerateApiBackUrl(api);
}

View file

@ -56,6 +56,8 @@ public:
string m_customName;
/// If not empty, bookmark is bound to this place page.
BookmarkAndCategory m_bac = MakeEmptyBookmarkAndCategory();
/// Api ID passed for the selected object. It's automatically included in api url below.
string m_apiId;
/// [Deep] link to open when "Back" button is pressed in a Place Page.
string m_apiUrl;
bool m_isMyPosition = false;