ArcGIS Pro添加一个图片

时间:2020-03-18 22:10:13   收藏:0   阅读:116
   // 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);         

 

原文:https://www.cnblogs.com/gisoracle/p/12520160.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!