forked from organicmaps/organicmaps
[bookmarks] Save position of bookmark instead of position of tap to placepage buildinfo MAPSME-13837 MAPSME-13838
This commit is contained in:
parent
d2dc0b2b75
commit
95e3e1539b
2 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -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; }
|
||||
|
|
Loading…
Add table
Reference in a new issue