forked from organicmaps/organicmaps
Framework::CreateMapObjectAtViewportCenter.
This commit is contained in:
parent
07f5ac4f9e
commit
0eddd0e659
2 changed files with 13 additions and 0 deletions
|
@ -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())
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue