public void ShowCustomPopup()
{
//Get the active map view.
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("https://www.cnblogs.com/gisoracle/"), "Custom tooltip from Uri"));
mapView.ShowCustomPopup(popups);
}
protected override void OnClick()
{
ShowCustomPopup();
}
原文地址:https://www.cnblogs.com/gisoracle/p/12639849.html
时间: 2024-10-10 12:26:06