| 732 | } |
| 733 | |
| 734 | void Framework::FillNotMatchedPlaceInfo(place_page::Info & info, m2::PointD const & mercator, |
| 735 | std::string const & customTitle /* = {} */) const |
| 736 | { |
| 737 | if (customTitle.empty()) |
| 738 | info.SetCustomNameWithCoordinates(mercator, m_stringsBundle.GetString("core_placepage_unknown_place")); |
| 739 | else |
| 740 | info.SetCustomName(customTitle); |
| 741 | info.SetCanEditOrAdd(CanEditMapForPosition(mercator)); |
| 742 | info.SetMercator(mercator); |
| 743 | } |
| 744 | |
| 745 | void Framework::FillPostcodeInfo(string const & postcode, m2::PointD const & mercator, place_page::Info & info) const |
| 746 | { |
nothing calls this directly
no test coverage detected