当前位置:网站首页>ArcEngine (1) Loading vector data
ArcEngine (1) Loading vector data
2022-08-03 08:02:00 【Prospector in the rice field】
利用MarControlControls add vector data
private void 加载矢量数据ToolStripMenuItem_Click(object sender, EventArgs e)
{
//打开文件对话框
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.Title = "加载shapefile数据";//设置title
openFileDialog.Filter = "(*.shp)|*.shp";//Set the filter mode
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
//设置路径
string fullPath = openFileDialog.FileName;//全部路径
string path = fullPath.Substring(0,fullPath.LastIndexOf("\\"));//截取字符串:Except for the data before the name
string name = fullPath.Substring(fullPath.LastIndexOf("\\")+1);//一直截取到末尾
//添加图层
MapControl.AddShapeFile(path, name);
//Refresh basemap
MapControl.Refresh();
MessageBox.Show("文件加载成功", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
边栏推荐
猜你喜欢
随机推荐
Postman will return to results generated CSV file to the local interface
集群
亿流量大考(1):日增上亿数据,把MySQL直接搞宕机了...
rust 学习笔记
跨域嵌套传递信息(iframe)
sqlserver2019安装失败
frp:开源内网穿透工具
volta管理node版本
标准输入流
“碳中和”愿景下,什么样的数据中心才是我们需要的?
【图像边缘检测】基于matlab灰度图像的积累加权边缘检测【含Matlab源码 2010期】
从学生到职场的转变
“唯一索引允许为空“ 的说法是不严谨的
流行和声基础大笔记
工控机防勒索病毒浅析
tolower函数
STL - string
001-进程与线程
Poke the myth of Web3?Poke the iron plate.
mysql 8.0.12 安装配置方法并--设置修改密码