ArcEngine将地图上的点元素转为Feature并获得坐标
比如我通过IElement在地图上点了几个点,现在想知道这些点元素在地图上的坐标并存储为.shp图层,怎么做?...
比如我通过IElement在地图上点了几个点,现在想知道这些点元素在地图上的坐标并存储为.shp图层,怎么做?
展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏10(财富值+成长值)
若以下回答无法解决问题,邀请你更新回答
1个回答
展开全部
IGraphicsContainer pGraphicsContainer = axMapControl1.ActiveView.GraphicsContainer;
pGraphicsContainer.Reset();
IElement ele = pGraphicsContainer.Next();
while(ele!=null)
{
if (ele.Geometry is IPoint)
{
IFeature feature = pointFeatureClass.CreateFeature();
feature.Shape = ele.Geometry;
//feature.set_Value(0, value);
feature.Store();
}
ele = pGraphicsContainer.Next();
}
pGraphicsContainer.Reset();
IElement ele = pGraphicsContainer.Next();
while(ele!=null)
{
if (ele.Geometry is IPoint)
{
IFeature feature = pointFeatureClass.CreateFeature();
feature.Shape = ele.Geometry;
//feature.set_Value(0, value);
feature.Store();
}
ele = pGraphicsContainer.Next();
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询