- 1、本文档共145页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
ArcGIS Engine 开发课件
;组件化程序设计;;;;组件对象模型;.NET平台概述;ArcObjects简介;ArcGIS Engine简介;ArcGIS Engine简介-体系结构;ArcGIS 控件介绍;;ArcGIS Engine 中的控件;制图控件介绍;;3D控件介绍;;框架控件介绍;;;基于.NET的ArcGIS Engine的开发;;;;;;;桌面GIS 应用程序框架的建立;;;;;;;;;ArcGIS Engine介绍-类库;;;;;;;;;;;;;;;;;地图文档加载、shp文件的加载;;; private void button1_Click(object sender, EventArgs e)
{
loadMapDocument();
}
//加载地图文档
private void loadMapDocument()
{
System.Windows.Forms.OpenFileDialog
OpenFileDialog;
OpenFileDialog = new OpenFileDialog();
OpenFileDialog.Title = 打开地图文档;
OpenFileDialog.Filter = map
documents(*.mxd)|*.mxd;
OpenFileDialog.ShowDialog();
string filepath = OpenFileDialog.FileName;
;if (axMapControl1.CheckMxFile(filepath))
{
axMapControl1.MousePointer = esriControlsMousePointer.esriPointerHourglass;
axMapControl1.LoadMxFile(filepath, 0, Type.Missing);
axMapControl1.MousePointer = esriControlsMousePointer.esriPointerDefault;
}
else
{
MessageBox.Show(filepath + 不是有效的地图文档);
}
}
; private void button2_Click(object sender, EventArgs e)
{
addShapeFile();
}
//加载SHP文件
private void addShapeFile()
{
System.Windows.Forms.OpenFileDialog openFileDialog;
openFileDialog = new OpenFileDialog();
openFileDialog.Title = 打开图层文件;
openFileDialog.Filter = map documents(*.shp)|*.shp;
openFileDialog.ShowDialog();
; FileInfo fileInfo = new FileInfo(openFileDialog.FileName);
string path = openFileDialog.FileName.Substring(0, openFileDialog.FileName.Length - fileInfo.Name.Length);
try
{
axMapControl1.AddShapeFile(path, fileInfo.Name);
}
catch (Exception e)
文档评论(0)