Framework::CreateMapObjectAtViewportCenter.

This commit is contained in:
Alex Zolotarev 2016-03-01 13:35:08 +03:00 committed by Sergey Yershov
parent 07f5ac4f9e
commit 0eddd0e659
2 changed files with 13 additions and 0 deletions

View file

@ -2305,6 +2305,16 @@ bool Framework::ParseEditorDebugCommand(search::SearchParams const & params)
return false;
}
bool Framework::CreateMapObjectAtViewportCenter(uint32_t const featureType, osm::EditableMapObject & emo) const
{
m2::PointD const mercator = GetViewportCenter();
MwmSet::MwmId const mwmId = m_model.GetIndex().GetMwmIdByCountryFile(
platform::CountryFile(m_infoGetter->GetRegionCountryId(mercator)));
if (!mwmId.IsAlive())
return false;
return osm::Editor::Instance().CreatePoint(featureType, mercator, mwmId, emo);
}
bool Framework::GetEditableMapObject(FeatureID const & fid, osm::EditableMapObject & emo) const
{
if (!fid.IsValid())

View file

@ -612,6 +612,9 @@ public:
public:
/// @name Editor interface.
//@{
/// Initializes feature for Create Object UI.
/// @returns false in case when viewport center is in the ocean or mwm is not downloaded.
bool CreateMapObjectAtViewportCenter(uint32_t const featureType, osm::EditableMapObject & emo) const;
/// @returns false if feature is invalid or can't be edited.
bool GetEditableMapObject(FeatureID const & fid, osm:: EditableMapObject & emo) const;
osm::Editor::SaveResult SaveEditedMapObject(osm:: EditableMapObject const & emo) const;