整理了 MapConrol各基本功能的实现代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Windows.Forms; using ESRI.ArcGIS.Controls;
using ESRI.ArcGIS.esriSystem;
using ESRI.ArcGIS.Carto;
using ESRI.ArcGIS.Geometry;
using ESRI.ArcGIS.Display;
using ESRI.ArcGIS.Geodatabase; namespace MapCtrol    //直接引用时需替换成自己当前的命名空间
{
public class MapBaseOperate
{
/// <summary>
/// 添加SHP文当
/// </summary>
/// <param name="mapControl"></param>
public static void AddShapeFile(IMapControlDefault mapControl)
{
OpenFileDialog openfileDlg = new OpenFileDialog();
openfileDlg.Title = "添加shp图层文件";
openfileDlg.Filter = "map document (*.shp)|*.shp";
openfileDlg.ShowDialog();
string filepath = openfileDlg.FileName; bool exist = File.Exists(filepath);
if (!exist)
{
MessageBox.Show("路径不存在!");
return;
} string path;
string filename;
//int istart = filepath.LastIndexOf("\\");
//int iend = filepath.LastIndexOf(".");
//path = filepath.Substring(0, istart);
//filename = filepath.Substring(istart + 1, iend - istart - 1); FileInfo fileinfo = new FileInfo(filepath);
path = filepath.Substring(0, filepath.Length - fileinfo.Name.Length);
filename = fileinfo.Name;
try
{
//加载图层文件
mapControl.AddShapeFile(path, filename); //设置MapControl的显示范围到数据的全局范围
mapControl.Extent = mapControl.FullExtent;
}
catch (System.Exception ex)
{
MessageBox.Show("添加图层文件失败!" + ex.Message);
} } /// <summary>
/// 添加LYR文当
/// </summary>
/// <param name="mapControl"></param>
public static void AddLayerFile(IMapControlDefault mapControl)
{
OpenFileDialog openfileDlg = new OpenFileDialog();
openfileDlg.Title = "添加lyr图层文件";
openfileDlg.Filter = "map documents (*.lyr)|*.lyr";
openfileDlg.ShowDialog();
string filepath = openfileDlg.FileName; bool exist = File.Exists(filepath);
if (!exist)
{
MessageBox.Show("路径不存在!");
return;
}
try
{
mapControl.AddLayerFromFile(filepath); //设置MapControl的显示范围到数据的全局范围
mapControl.Extent = mapControl.FullExtent;
}
catch (System.Exception ex)
{
MessageBox.Show("添加图层文件失败!" + ex.Message);
}
} /// <summary>
/// 删除地图所有图层
/// </summary>
public static void DeleteAllLayers(IMapControlDefault mapControl)
{
try
{
for (int i = mapControl.LayerCount - 1; i >= 0; i-- )
{
mapControl.DeleteLayer(i);
}
}
catch (System.Exception ex)
{
MessageBox.Show("删除图层失败!" + ex.Message);
}
} /// <summary>
/// 将最底图层,移动到最上层
/// </summary>
public static void MoveLayerToTop(IMapControlDefault mapControl)
{ try
{
if (mapControl.LayerCount > 0)
{
mapControl.MoveLayerTo(mapControl.LayerCount - 1, 0);
}
}
catch (System.Exception ex)
{
MessageBox.Show("移动图层失败!" + ex.Message);
}
} /// <summary>
/// 加载地图文当
/// </summary>
/// <param name="mapControl"></param>
public static void LoadMapDocument(IMapControlDefault mapControl)
{
OpenFileDialog openfileDlg = new OpenFileDialog();
openfileDlg.Title = "加载地图文当";
openfileDlg.Filter = "map document (*.mxd)|*.mxd";
openfileDlg.ShowDialog();
string filepath = openfileDlg.FileName;
if (mapControl.CheckMxFile(filepath))
{
mapControl.MousePointer = esriControlsMousePointer.esriPointerHourglass;
mapControl.LoadMxFile(filepath, 0, Type.Missing);
mapControl.MousePointer = esriControlsMousePointer.esriPointerDefault;
}
else
{
MessageBox.Show(filepath + "不是有效的地图文当!");
}
} /// <summary>
/// 加载特定地图文当
/// </summary>
/// <param name="mapControl"></param>
public static void LoadSpecificMapDocument(IMapControlDefault mapControl, string specificMapName)
{
OpenFileDialog openfileDlg = new OpenFileDialog();
openfileDlg.Title = "加载特定地图文当";
openfileDlg.Filter = "map document (*.mxd)|*.mxd";
openfileDlg.ShowDialog();
string filepath = openfileDlg.FileName; if (mapControl.CheckMxFile(filepath))
{
if (string.IsNullOrWhiteSpace(specificMapName))
{
int istart = filepath.LastIndexOf("\\");
int iend = filepath.LastIndexOf(".");
specificMapName = filepath.Substring(istart + 1, iend - istart - 1);
} IArray arrayMap = mapControl.ReadMxMaps(filepath, Type.Missing);
for (int i = 0; i < arrayMap.Count; i++)
{
IMap map = arrayMap.get_Element(i) as IMap;
if (specificMapName == map.Name)
{
mapControl.MousePointer = esriControlsMousePointer.esriPointerHourglass;
mapControl.LoadMxFile(filepath, 0, Type.Missing);
mapControl.MousePointer = esriControlsMousePointer.esriPointerDefault;
break;
}
}
}
else
{
MessageBox.Show(filepath + "不是有效的地图文当!");
}
} /// <summary>
/// By MapDocument
/// </summary>
public static IMapDocument LoadMapDoc(IMapControlDefault mapControl)
{
MapDocument mapdoc = new MapDocument(); try
{
OpenFileDialog openfileDlg = new OpenFileDialog();
openfileDlg.Title = "加载地图文当";
openfileDlg.Filter = "map document (*.mxd)|*.mxd";
openfileDlg.ShowDialog();
string filepath = openfileDlg.FileName; mapdoc.Open(filepath, ""); for (int i = 0; i < mapdoc.MapCount; i++ )
{
mapControl.Map = mapdoc.get_Map(i);
}
mapControl.Refresh();
}
catch (System.Exception ex)
{
MessageBox.Show("加载地图文当失败" + ex.Message);
mapdoc = null;
}
return mapdoc; } /// <summary>
/// By MapDocument
/// </summary>
/// <param name="mapDoc"></param>
public static void SaveMapDoc(IMapDocument mapDoc)
{
if (null == mapDoc)
{
MessageBox.Show("保存地图文档失败!");
return;
} if (mapDoc.get_IsReadOnly(mapDoc.DocumentFilename) == true)
{
MessageBox.Show("文档只读无法保存!");
} try
{
mapDoc.Save(mapDoc.UsesRelativePaths,true);
MessageBox.Show("保存地图文档成功!"); }
catch (System.Exception ex)
{
MessageBox.Show("保存地图文档失败!" + ex.Message);
} } /// <summary>
/// By MapDocument
/// </summary>
/// <param name="mapDoc"></param>
public static void SaveAsMapDoc(IMapDocument mapDoc)
{
if (null == mapDoc)
{
MessageBox.Show("保存地图文档失败!");
return;
} if (mapDoc.get_IsReadOnly(mapDoc.DocumentFilename) == true)
{
MessageBox.Show("文档只读无法保存!");
} SaveFileDialog savefiledlg = new SaveFileDialog();
savefiledlg.Title = "保存地图文当";
savefiledlg.Filter = "map document (*.mxd)|*.mxd";
savefiledlg.ShowDialog();
string filepath = savefiledlg.FileName;
try
{
mapDoc.SaveAs(filepath,mapDoc.UsesRelativePaths,true);
MessageBox.Show("保存地图文档成功!"); }
catch (System.Exception ex)
{
MessageBox.Show("保存地图文档失败!" + ex.Message);
} } /// <summary>
/// 缩小
/// </summary>
/// <param name="mapControl"></param>
public static void ZoomOut(IMapControlDefault mapControl)
{
try
{
mapControl.MousePointer = esriControlsMousePointer.esriPointerPageZoomOut;
              //IEnvelope ipEnv = mapControl.TrackRectangle();
              IEnvelope ipEnv = mapControl.Extent;
              ipEnv.Expand(2, 2, true);
              mapControl.Extent = ipEnv;
}
catch (System.Exception ex)
{
MessageBox.Show("缩小失败!" + ex.Message);
}
} /// <summary>
/// 放大
/// </summary>
/// <param name="mapControl"></param>
public static void ZoomIn(IMapControlDefault mapControl)
{
try
{
mapControl.MousePointer = esriControlsMousePointer.esriPointerPageZoomIn;
              IEnvelope ipEnv = mapControl.TrackRectangle();
              if (ipEnv.IsEmpty)
              {
                  ipEnv = mapControl.Extent;
                  ipEnv.Expand(0.5, 0.5, true);
              }
              mapControl.Extent = ipEnv;                  
}
catch (System.Exception ex)
{
MessageBox.Show("放大失败!" + ex.Message);
}
} /// <summary>
/// 漫游
/// </summary>
/// <param name="mapControl"></param>
public static void Pan(IMapControlDefault mapControl)
{
try
{
mapControl.MousePointer = esriControlsMousePointer.esriPointerPagePan;
//IEnvelope ipEnv = mapControl.Extent;
mapControl.Pan();
}
catch (System.Exception ex)
{
MessageBox.Show("漫游失败!" + ex.Message);
}
} /// <summary>
/// 全图
/// </summary>
/// <param name="mapControl"></param>
public static void FullExtent(IMapControlDefault mapControl)
{
try
{
mapControl.Extent = mapControl.FullExtent;
}
catch (System.Exception ex)
{
MessageBox.Show("全图失败!" + ex.Message);
}
} /// <summary>
/// 写文字(待优化)
/// </summary>
/// <param name="mapControl"></param>
/// <param name="pGeom"></param>
/// <param name="pColor"></param>
/// <param name="text"></param>
public static void DrawMapText(IMapControlDefault mapControl, IGeometry pGeom, IRgbColor pColor, string text)
{
try
{
if (null == pColor)
{
pColor = new RgbColorClass();
pColor.Red = 255;
pColor.Green = 0;
pColor.Blue = 0;
}
ITextSymbol textsymbol = new TextSymbolClass();
textsymbol.Color = pColor;
if (null == text)
{
text = "Draw Text";
}
textsymbol.Text = "Text";
object symbol = textsymbol;
mapControl.DrawText(pGeom, text, ref symbol);
}
catch (System.Exception ex)
{
MessageBox.Show("写文字失败!" + ex);
} } /// <summary>
/// 画图
/// </summary>
/// <param name="mapControl"></param>
/// <param name="pGeom"></param>
/// <param name="pColor"></param>
/// <param name="width"></param>
public static void DrawMapShape(IMapControlDefault mapControl, IGeometry pGeom, IRgbColor pColor, int width)
{
try
{
if (null == pColor)
{
pColor = new RgbColorClass();
pColor.Red = 255;
pColor.Green = 255;
pColor.Blue = 0;
} if (width < 1 || width > 20)
{
width = 5;
}
object symbol = null;
if (pGeom.GeometryType == esriGeometryType.esriGeometryPolyline)
{
ISimpleLineSymbol simpleLine = new SimpleLineSymbolClass();
simpleLine.Color = pColor;
simpleLine.Width = width;
symbol = simpleLine;
}
else
{
ISimpleFillSymbol simpleFill = new SimpleFillSymbolClass();
simpleFill.Color = pColor;
symbol = simpleFill;
} mapControl.DrawShape(pGeom, ref symbol);
}
catch (System.Exception ex)
{
MessageBox.Show("画图失败!" + ex);
}
} /// <summary>
/// 颜色
/// </summary>
/// <param name="r"></param>
/// <param name="g"></param>
/// <param name="b"></param>
/// <param name="t"></param>
/// <returns></returns>
public static IRgbColor GetColor(int r, int g, int b, int t)
{
IRgbColor rgbcolor = new RgbColorClass();
rgbcolor.Red = r;
rgbcolor.Green = g;
rgbcolor.Blue = b;
rgbcolor.Transparency = (byte)t;
return rgbcolor;
} /// <summary>
/// 框选指定区域(鹰眼功能)
/// </summary>
/// <param name="envelope">e.NewEnvelope</param>
/// <param name="mapControl"></param>
public static void ShowRectangleByEnvelope(IEnvelope envelope, IMapControlDefault mapControl)
{
try
{
IGraphicsContainer graphicsContainer = mapControl.Map as IGraphicsContainer;
IActiveView activeView = graphicsContainer as IActiveView; //在绘制前,清除axMapControl2中的任何图像元素
graphicsContainer.DeleteAllElements();
IElement element = new RectangleElementClass();
element.Geometry = envelope;
//设置鹰眼中的红线
//产生一个符号对象
ILineSymbol outLineSymbol = new SimpleLineSymbolClass();
outLineSymbol.Width = 2;
outLineSymbol.Color = GetColor(255, 0, 0, 255); //设置颜色属性
//设置填充符号属性
IFillSymbol fillsymbol = new SimpleFillSymbolClass();
fillsymbol.Color = GetColor(9, 0, 0, 0);
fillsymbol.Outline = outLineSymbol;
IFillShapeElement fillShapeElement = element as IFillShapeElement;
fillShapeElement.Symbol = fillsymbol;
graphicsContainer.AddElement((IElement)fillShapeElement, 0);
activeView.PartialRefresh(esriViewDrawPhase.esriViewGraphics, null, null);
}
catch (System.Exception ex)
{
MessageBox.Show("框选指定区域失败!" + ex);
}
} /// <summary>
/// 清除选择
/// </summary>
/// <param name="mapControl"></param>
public static void ClearSelection(IMapControlDefault mapControl)
{
try
{
IActiveView activeView = (IActiveView)mapControl.Map;
//清除数据集前必须先刷新
activeView.PartialRefresh(esriViewDrawPhase.esriViewGeoSelection, mapControl.get_Layer(0), null);
mapControl.Map.ClearSelection();
activeView.PartialRefresh(esriViewDrawPhase.esriViewGeoSelection, mapControl.get_Layer(0), null);
}
catch (System.Exception ex)
{
MessageBox.Show("清除选择失败!" + ex);
}
} /// <summary>
/// 名称查询
/// </summary>
/// <param name="mapControl"></param>
/// <param name="value"></param>
public static void SelectByName(IMapControlDefault mapControl, string field, string value)
{
try
{
string selectName = value.Trim();
ILayer layer = mapControl.Map.get_Layer(0);
IFeatureLayer featureLayer = layer as IFeatureLayer;
IFeatureClass featureClass = featureLayer.FeatureClass;
IQueryFilter queryFilter = new QueryFilterClass();
IFeatureCursor featureCursor;
IFeature feature = null; ;
queryFilter.WhereClause = field + " = " + value;
featureCursor = featureClass.Search(queryFilter, true);
feature = featureCursor.NextFeature();
if (null != feature)
{
mapControl.Map.SelectFeature(layer, feature);
mapControl.Refresh(esriViewDrawPhase.esriViewGeoSelection, null, null);
}
}
catch (System.Exception ex)
{
MessageBox.Show("依据名称查询选中要素失败!" + ex);
}
} /// <summary>
/// 依据指定的Geometry(Shape)选中要素
/// </summary>
/// <param name="mapControl"></param>
/// <param name="geometry"></param>
public static void SelectByShape(IMapControlDefault mapControl, IGeometry geometry)
{
try
{
mapControl.Map.SelectByShape(geometry, null, false);
mapControl.Refresh(esriViewDrawPhase.esriViewGeoSelection, null, null);
}
catch (System.Exception ex)
{
MessageBox.Show("依据指定的Geometry(Shape)选中要素失败!" + ex);
}
} /// <summary>
/// 同步到MapControl控件
/// </summary>
public static void CopyToMapControl(IMapControlDefault mapControl, IMapControlDefault toMapControl)
{
try
{
IObjectCopy objCopy = new ObjectCopyClass();
object copyFromMap = mapControl.Map;
object copyMap = objCopy.Copy(copyFromMap);
object copyToMap = toMapControl.ActiveView.FocusMap;
objCopy.Overwrite(copyMap, ref copyToMap);
toMapControl.Extent = mapControl.FullExtent;
}
catch (System.Exception ex)
{
MessageBox.Show("Map间数据同步失败!" + ex);
} } /// <summary>
/// 同步到PageLayout控件
/// </summary>
public static void CopyToPageLayout(IMapControlDefault mapControl, IPageLayoutControlDefault pageLayoutControl)
{
try
{
IObjectCopy objCopy = new ObjectCopyClass();
object copyFromMap = mapControl.Map;
object copyMap = objCopy.Copy(copyFromMap);
object copyToMap = pageLayoutControl.ActiveView.FocusMap;
objCopy.Overwrite(copyMap, ref copyToMap);
}
catch (System.Exception ex)
{
MessageBox.Show("Map与PageLayout数据同步失败!" + ex);
} } /// <summary>
/// 屏幕变化后刷新屏幕
/// </summary>
/// <param name="mapControl"></param>
public static void AfterScreenDraw(IMapControlDefault mapControl)
{
try
{
IActiveView activeView = (IActiveView)mapControl.ActiveView.FocusMap;
IDisplayTransformation displayTransformation = activeView.ScreenDisplay.DisplayTransformation;
displayTransformation.VisibleBounds = mapControl.Extent;
mapControl.ActiveView.Refresh();
}
catch (System.Exception ex)
{
MessageBox.Show("刷新屏幕失败!" + ex);
} }
}
}

C#:MapControl基本操作代码整理的更多相关文章

  1. Smtp邮件发送系统公用代码整理—总结

    1.前言 a.在软件开发中,我们经常能够遇到给用户或者客户推送邮件,推送邮件也分为很多方式,比如:推送一句话,推送一个网页等等.那么在系统开发中我们一般在什么情况下会使用邮件发送呢?下面我简单总结了一 ...

  2. Chrome应用技巧之代码整理。

    我们有时候在看别人站点代码时往往是经过压缩的,代码都在一行上了,调试非常是困难,今天给大家介绍一种基本Chrome浏览器的代码整理方法.请看图:

  3. NSIS常用代码整理

    原文 NSIS常用代码整理 这是一些常用的NSIS代码,少轻狂特意整理出来,方便大家随时查看使用.不定期更新哦~~~ 1 ;获取操作系统盘符 2 ReadEnvStr $R0 SYSTEMDRIVE ...

  4. material design 的android开源代码整理

    material design 的android开源代码整理 1 android (material design 效果的代码库) 地址请点击:MaterialDesignLibrary 效果: 2 ...

  5. 一些 NSArray 的基本操作代码例子

    一些 NSArray 的基本操作代码例子 数组可以说是软件开发人员每天都要面对的基本操作,下面就分享一些 NSArray 的基本操作代码例子供苹果开发初学者参考,每段代码第一行会以注释方式说明该段代码 ...

  6. HTTP请求代码整理

    HTTP请求代码整理 类别 代码 注释 1xx – 信息提示 100 继续 101 切换协议 2xx - 成功 200 确定.客户端请求已成功 201 已创建 202 已接受 203 非权威性信息 2 ...

  7. SQL代码整理

    --SQL代码整理: create database mingzi--创建数据库go--连接符(可省略)create table biao--创建表( lieming1 int not null,-- ...

  8. IOS常用代码整理

    常用代码整理: 12.判断邮箱格式是否正确的代码: //利用正则表达式验证 -(BOOL)isValidateEmail:(NSString *)email { NSString *emailRege ...

  9. html Css PC 移动端 公用部分样式代码整理

    css常用公用部分样式代码整理: body, html, div, blockquote, img, label, p, h1, h2, h3, h4, h5, h6, pre, ul, ol, li ...

随机推荐

  1. C++异常机制知识点

     在这里总结一下,C++中的异常机制,以及如何使用异常的知识点 C++中处理异常的过程是这样的:在执行程序发生异常,可以不在本函数中处理,而是抛出一个错误信息,把它传递给上一级的函数来解决,上一级解决 ...

  2. zookeeper数据迁移

    在不停机的情况下,实现集群之间数据迁移代码: private void create(ZooKeeper zk1, ZooKeeper zk2, String path) throws Excepti ...

  3. Android -- TouchEvent的分发和截获方式

    Android系统中的每个ViewGroup的子类都具有下面三个和TouchEvent处理密切相关的方法: public boolean dispatchTouchEvent(MotionEvent ...

  4. 点亮led【转载】

    http://linux-sunxi.org/Cubieboard/Programming/StatusLEDs Accessing the status LEDs The Cubieboard ha ...

  5. AxMicrosoft.Office.Interop.Owc11.AxSpreadsheet控件在C#中的引用

    这几天要是用AxMicrosoft.Office.Interop.Owc11.AxSpreadsheet控件做查询,发现一系列问题,一点点记录下来吧,以备后查: 第一.相关属性:http://www. ...

  6. vs2012 condition_variable notify_one 崩溃

    vs2012项目中用到 condition_variable系统方法,程序运行过程过程中偶尔出现notify_one崩溃, 程序运行的服务器系统版本是windows server 2008 R2 SP ...

  7. 【转载】C++——CString用法大全

    CString常用方法简介 作者:webmaster 出处:无 CString::Compareint Compare( LPCTSTR lpsz ) const;返回值  字符串一样 返回0     ...

  8. c++new和new()区别(了解)

    我们在C++程序中经常看到两种new的使用方式:new A以及new A().那么这两种究竟有什么区别呢? 调用new分配的内存有时候会被初始化,而有时候不会,这依赖于A的类型是否是POD(Plain ...

  9. js添加事件、移除事件、阻止冒泡、阻止浏览器默认行为等写法(兼容IE/FF/CHROME)

    转自:http://blog.csdn.net/itchiang/article/details/7769341 添加事件   var addEvent = function( obj, type, ...

  10. 查看Linux下*.a库文件中文件、函数、变量等情况

    在Linux 下经常需要链接一些 *.a的库文件,那怎么查看这些*.a 中包 含哪些文件.函数.变量: 1. 查看文件:ar -t *.a 2. 查看函数.变里:nm *.a