ARCGIS二维三维放大缩小

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

ESRI.ArcGIS.SystemUI.ICommand com2d = new ControlsMapZoomPanTool();
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/3193455.html