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);