http://blog.csdn.net/zdb330906531
设置左边和右边的地图分别为axMapLeft、axMapRight,在平移的时候出现联动效果。
要实现联动效果,需要使用OnViewRefreshed事件,关键代码
private void axMapLeft_OnViewRefreshed(object sender, ESRI.ArcGIS.Controls.IMapControlEvents2_OnViewRefreshedEvent e) { axMapRight.Extent = axMapLeft.Extent; axMapRight.ActiveView.Refresh(); }
时间: 2024-10-12 09:40:26