其他分享
首页 > 其他分享> > ArcGIS Pro弹出菜单

ArcGIS Pro弹出菜单

作者:互联网

var mapView = MapView.Active;
            if (mapView == null)
                return;

            //Create custom popup content
            var popups = new List<PopupContent>();
            popups.Add(new PopupContent("<b>This text is bold.</b>", "Custom tooltip from HTML string"));
            popups.Add(new PopupContent(new Uri("http://www.esri.com/"), "Custom tooltip from Uri"));

            mapView.ShowCustomPopup(popups);

 

标签:popups,Pro,Custom,ArcGIS,Add,弹出,PopupContent,new,mapView
来源: https://www.cnblogs.com/gisoracle/p/16053989.html