[bookmarks] Save position of bookmark instead of position of tap to placepage buildinfo MAPSME-13837 MAPSME-13838

This commit is contained in:
Anatoliy Tomilov 2020-06-10 12:22:01 +05:00 committed by Vladimir Byko-Ianko
parent d2dc0b2b75
commit 95e3e1539b
2 changed files with 7 additions and 1 deletions

View file

@ -95,6 +95,12 @@ void Info::SetFromFeatureType(FeatureType & ft)
m_hotelType = ftypes::IsHotelChecker::Instance().GetHotelType(ft);
}
void Info::SetMercator(m2::PointD const & mercator)
{
m_mercator = mercator;
m_buildInfo.m_mercator = mercator;
}
std::string Info::FormatSubtitle(bool withType) const
{
std::vector<std::string> subtitle;

View file

@ -306,7 +306,7 @@ public:
void SetDescription(std::string && description) { m_description = std::move(description); }
void SetMercator(m2::PointD const & mercator) { m_mercator = mercator; }
void SetMercator(m2::PointD const & mercator);
std::vector<std::string> GetRawTypes() const { return m_types.ToObjectNames(); }
std::optional<ftypes::IsHotelChecker::Type> GetHotelType() const { return m_hotelType; }