コード例 #1
0
ファイル: osm_editor.cpp プロジェクト: tsd-kikkawa/omim
bool Editor::CreatePoint(uint32_t type, m2::PointD const & mercator, MwmSet::MwmId const & id, EditableMapObject & outFeature)
{
  ASSERT(id.IsAlive(), ("Please check that feature is created in valid MWM file before calling this method."));
  outFeature.SetMercator(mercator);
  outFeature.SetID(GenerateNewFeatureId(id));
  outFeature.SetType(type);
  outFeature.SetEditableProperties(GetEditablePropertiesForTypes(outFeature.GetTypes()));
  // Only point type features can be created at the moment.
  outFeature.SetPointType();
  return true;
}
コード例 #2
0
ファイル: osm_editor.cpp プロジェクト: rokuz/omim
bool Editor::CreatePoint(uint32_t type, m2::PointD const & mercator, MwmSet::MwmId const & id, EditableMapObject & outFeature)
{
    ASSERT(id.IsAlive(), ("Please check that feature is created in valid MWM file before calling this method."));
    if (!id.GetInfo()->m_limitRect.IsPointInside(mercator))
    {
        LOG(LERROR, ("Attempt to create a feature outside of the MWM's bounding box."));
        return false;
    }
    outFeature.SetMercator(mercator);
    outFeature.SetID(GenerateNewFeatureId(id));
    outFeature.SetType(type);
    outFeature.SetEditableProperties(GetEditablePropertiesForTypes(outFeature.GetTypes()));
    // Only point type features can be created at the moment.
    outFeature.SetPointType();
    return true;
}