ArcGIS Pro弹出菜单


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

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

            mapView.ShowCustomPopup(popups);

相关