当前位置:网站首页>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);
}
}
边栏推荐
猜你喜欢
随机推荐
ViewModel 记录下 +
Roson的Qt之旅#106 QML在图片上方放置按钮并实现点击按钮切换图片
Roson的Qt之旅#104 QML Image控件
sqlite 日期字段加一天
ArcEngine(三)通过MapControl控件实现放大缩小全图漫游
mysql的innodb存储引擎和myisam存储引擎的区别
How to choose a reliable and formal training institution for the exam in September?
如何使用电子邮件营销在五个步骤中增加产品评论
集群
9月考,如何选择靠谱正规的培训机构?
jolt语法
mysql 8.0.12 安装配置方法并--设置修改密码
LeetCode 264:丑数
Logic Pro X自带音色库列表
实时目标检测新高地之#YOLOv7#更快更强的目标检测器
2022年 SQL 优化大全总结详解
MySQL or使索引失效
Shell运维开发基础(一)
【图像去雾】基于matlab暗通道和非均值滤波图像去雾【含Matlab源码 2011期】
[ 漏洞复现篇 ] yapi 代码执行 getshell 漏洞复现详解









