当前位置:网站首页>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);
}
}
边栏推荐
猜你喜欢
训练正常&异常的GAN损失函数loss变化应该是怎么样的
Dapr 与 NestJs ,实战编写一个 Pub & Sub 装饰器
AI中台序列标注任务:三个数据集构造过程记录
酷雷曼上新6大功能,全景营销持续加码
[ 漏洞复现篇 ] yapi 代码执行 getshell 漏洞复现详解
Golang协程goroutine的调度与状态变迁分析
Charles抓包工具学习记录
Postman will return to the interface to generate a json file to the local
mysql5.7服务器The innodb_system data file 'ibdata1' must be writable导致无法启动服务器
“碳中和”愿景下,什么样的数据中心才是我们需要的?
随机推荐
mysql的innodb存储引擎和myisam存储引擎的区别
【云原生--Kubernetes】Pod容器与镜像拉取策略
001-进程与线程
rust 学习笔记
sqlite 日期字段加一天
“唯一索引允许为空“ 的说法是不严谨的
用diskpart的offline命令弹出顽固硬盘
mysqlbinlog: unknown variable 'default-character-set=utf8'
vs 2022无法安装 vc_runtimeMinmum_x86错误
LeetCode 264:丑数
DeFi明斯基时刻:压力测试与启示
推荐系统-排序层-精排模型:LR、GBDT、Wide&Deep、DCN、DIN、DIEN、MMOE、PLE
How to choose a reliable and formal training institution for the exam in September?
第十二天&接口和协议
ViewModel 记录下 +
boot - SSE
调用feign报错openfeign/feign-core/10.4.0/feign-core-10.4.0.jar
Taro框架-微信小程序-内嵌h5页面
ArcEngine(四)MapControl_OnMouseDown的使用
Detailed explanation of cause and effect diagram of test case design method