ARCGIS二维三维导航

在使用代码前需要先安装arcgis10.0    或者10.1都可以    不过本人建议初学者安装10.0比较容易安装。。

安装方式和二维三维地图的加载网上都有,就不在此一一赘述了。

先从基本的功能开始:

private void Navigation()
{
ESRI.ArcGIS.SystemUI.ICommand com = new ControlsGlobeNavigateTool();
com.OnCreate(this._GlobeControl.Object);
this._GlobeControl.CurrentTool = com as ESRI.ArcGIS.SystemUI.ITool;

ESRI.ArcGIS.SystemUI.ICommand com2d = new ControlsMapPanTool();
com2d.OnCreate(this._MapControl.Object);
this._MapControl.CurrentTool = com2d as ESRI.ArcGIS.SystemUI.ITool;
}

  前三行为三维地图的导航

后三行为二维地图的导航

WPF、AE技术交流群:94234450  

群链接:http://wp.qq.com/wpa/qunwpa?idkey=14e3d476b4a53a3a1502183e5a384d94b8be74b7510c0a76e67c4dec61f23781
原文地址:https://www.cnblogs.com/BeiJing-Net-DaiDai/p/3191257.html