ArcGIS 基本函数(地图操作)
ArcGIS 基本函数(地图操作)
获得焦点
axMapControl1.Focus();
设置中心点
axMapControl1.CenterAt(pt);
设定比例尺
int scale = 1000;
axMapControl1.MapScale = scale;
得到图层数量
int layerCnt = axMapControl1.LayerCount;
按照索引得到当前图层
ILayer layer = axMapControl1.get_Layer(i);
闪烁某个元素
IGeometry iGeometry pGeometry= ppt as IGeometry;
mapControl.FlashShape(iGeometry, 3, 200, iSymbol);
删除某个图层
axMapControl1.DeleteLayer(i);
隐藏某个图层
layer.Visible = false;