• 大小: 12.65MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-07-08
  • 语言: 其他
  • 标签: AE  ArcEngine  

资源简介

ArcEngine地理信息系统开发入门到精通第二版 光盘源代码

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Sample
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);
            InitializeComponent();
            string path = @“D:\World\“;
            string fileName = @“World.mxd“;
            //加载图层文件
            axMapControl1.LoadMxFile(path+fileName);
            //设置MapControl显示范围到数据的全局范围
            axMapControl1.Extent = axMapControl1.FullExtent;
            

        }

        private void axToolbarControl1_onmousedown(object sender ESRI.ArcGIS.Controls.IToolbarControlEvents_onmousedownEvent e)
        {

        }
    }
}

评论

共有 条评论