ArcGIS Pro添加一个图片
作者:互联网
// get the current mapview and point var mapView = MapView.Active; if (mapView == null) return; var pictureGraphic = new CIMPictureGraphic(); pictureGraphic.PictureURL = @"file:///E:/Stuff/gisoracle.png"; pictureGraphic.Box = envelope; _graphic = mapView.AddOverlay(pictureGraphic);
标签:pictureGraphic,point,Pro,CIMPictureGraphic,ArcGIS,添加,file,var,mapView 来源: https://www.cnblogs.com/gisoracle/p/12520160.html