arcgis0基础 中如何添加MXD

Posted Simple Programmer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arcgis0基础 中如何添加MXD相关的知识,希望对你有一定的参考价值。

1,第一种方法 MapControl  直接添加

 

if (!axMapControl1.CheckMxFile(FileName))
{
MessageBox.Show("文件不合法");
return;
}
else
{

axMapControl1.LoadMxFile(FileName);
}

  

第二种方法:通过MapDocument  进行添加

   string FileName = open.FileName;
                IMapDocument mapDoc = new MapDocument();
                mapDoc.Open(FileName, "");
                axMapControl1.Map = mapDoc.ActiveView.FocusMap;
                axMapControl1.ActiveView.Refresh();

  

以上是关于arcgis0基础 中如何添加MXD的主要内容,如果未能解决你的问题,请参考以下文章

如何在Sublime Text中添加代码片段

如何在 Reactjs 中添加丰富的代码片段?

ArcGIS Engine c#如何实现另存为Mxd地图文档的功能,,求代码

python 将MXD中的所有要素类添加到地理数据库

如何将按钮功能添加到片段中

如何将arcgis的mxd文档存储为相对路径