AE 打开Shp文件

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using ESRI.ArcGIS.Carto;
using ESRI.ArcGIS.DataSourcesFile;
using ESRI.ArcGIS.Geodatabase;

namespace addshp
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void menuAddshpToolStripMenuItem_Click(object sender, EventArgs e)
        {//menuestrip.click
           

            OpenFileDialog opfd1 = new OpenFileDialog();
            opfd1.Filter = "shapefile(*.shp)|*.shp|allfile(*.*)|*.*";
            opfd1.Multiselect = false;
            opfd1.InitialDirectory = @"F:\temp\Nautical & FME 论文\tempResult";
            DialogResult diaLres = opfd1.ShowDialog();           
            if (diaLres != DialogResult.OK)
                return;                      
            string path1 = opfd1.FileName;
            //openfiledialog 常规使用

            string pFolder = Path.GetDirectoryName(path1);
            string pFileName = Path.GetFileName(path1);
            //System.IO.Path

            IWorkspaceFactory pworkspaceFactory = new ShapefileWorkspaceFactory();
            //创建工作空间工厂
            
           IWorkspace pWorkspace= pworkspaceFactory.OpenFromFile(pFolder, 0);
            //打开shpfile工作空间

           IFeatureWorkspace pFeatureWorkspace = pWorkspace as IFeatureWorkspace;
           IFeatureClass pFC = pFeatureWorkspace.OpenFeatureClass(pFileName);
            //打开要素类 

           IFeatureLayer pFLayer = new FeatureLayerClass();
            //创建要素图层

           pFLayer.FeatureClass = pFC;
           pFLayer.Name = pFC.AliasName;
           ILayer pLayer = pFLayer as ILayer;
            //以上三行:关联图层和要素类

           IMap pmap = axMapControl1.Map;
           pmap.AddLayer(pLayer);
           axMapControl1.ActiveView.Refresh();           
        }

        private void menuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
        {
            //NULL
        }

        private void propertiesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form2 fm = new Form2(axMapControl1);
            fm.ShowDialog();
        }
    }
}
转载于AE入门基础教程,示例
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值