刷新图层:
pMap.PartialRefresh(esriViewGeography, pLayer, null);
刷新所有图层:
pMap.PartialRefresh(esriViewGeography, null, null);
刷新所选择的对象:
pMap.PartialRefresh(esriViewGeoSelection, null, null);
刷新标注:
pMap.PartialRefresh(esriViewGraphics, null, null);
刷新图元
pLayout.PartialRefresh(esriViewGraphics, pElement, null);
刷新所有图元
pLayout.PartialRefresh(esriViewGraphics, null, null);
刷新所选择的图元
pLayout.PartialRefresh(esriViewGraphicSelection, null, null);
本文详细介绍了在GIS应用中如何使用ArcGIS API进行地图和布局图元的局部刷新操作,包括刷新单个图层、所有图层、选择对象、标注以及图元等,以提高应用程序的响应性和性能。
326

被折叠的 条评论
为什么被折叠?



