当前位置:   article > 正文

打开和保存mapcontrol中的地图_axmapcontrol导出地图

axmapcontrol导出地图
#region 一些相关引用
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using ESRI.ArcGIS.Carto;
using ESRI.ArcGIS.esriSystem;
using ESRI.ArcGIS.ADF;
using ESRI.ArcGIS.SystemUI;

#endregion


namespace mapcontrol
{
    public partial class Form1 : Form
    {
        //定义的全局变量
        private System.Windows.Forms.OpenFileDialog openFileDialog1;
        private System.Windows.Forms.SaveFileDialog saveFileDialog1;
        private IMapDocument m_MapDocument;
       
     
        public Form1()
        {
            InitializeComponent();
        }
            

       private void 打开ToolStripMenuItem_Click(object sender, EventArgs e)
        {

            //打开对话框的设置
            openFileDialog1= new OpenFileDialog() ;
            openFileDialog1.Title = "Open Map Document";
            openFileDialog1.Filter = "Map Documents (*.mxd)|*.mxd";
            openFileDialog1.ShowDialog();

            // 判断打开路径是否为空
            string sFilePath = openFileDialog1.FileName;
            if (sFilePath == "")
            {
                return;
            }

            //打开文档,调用OpenDocument()函数
            OpenDocument((sFilePath));  
        }
        private void OpenDocument(string sFilePath)
        {
            //创建m_Mapdocument
            m_MapDocument = new MapDocumentClass();
            m_MapDocument.Open(sFilePath, "");
            //遍历每个map对象
            for (int i = 0; i < m_MapDocument.MapCount; i++)
            {
                axMapControl1.Map = m_MapDocument.get_Map(i);
               
            }

        }

        private void 退出XToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }

        private void 保存ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SaveDocument();                   //调用SaveDocument 函数
        }

       

        private void 另存为ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //打开保存对话框
            saveFileDialog1=new SaveFileDialog();
            saveFileDialog1.Title = "保存地图文档";
            saveFileDialog1.Filter = "Map Documents (*.mxd)|*.mxd";
            saveFileDialog1.ShowDialog();

            //判断打开路径是否为空
            string sFilePath = saveFileDialog1.FileName;
            if (sFilePath == "")
            {
                return;
            }

            if (sFilePath == m_MapDocument.DocumentFilename)
            {
                //保存变更后文档
                SaveDocument();
            }
            else
            {
                //另存
                m_MapDocument.SaveAs(sFilePath, true, true);
                //打开另存文件
                OpenDocument((sFilePath));
                MessageBox.Show("保存成功!");
            }
        }

        private void SaveDocument()
        {
            //判断文档是否为只读文件

            if (m_MapDocument.get_IsReadOnly(m_MapDocument.DocumentFilename) == true)
            {
                MessageBox.Show("这个地图文档是只读文件!");
                return;
            }
            //保存
            m_MapDocument.Save(m_MapDocument.UsesRelativePaths, true);
            MessageBox.Show("保存成功!");
        }

    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号