码迷,mamicode.com
首页 > 其他好文 > 详细

ArcGIS Pro自己做一个弹出菜单

时间:2020-04-06 00:01:25      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:public   ring   get   add   content   arc   active   view   pup   

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

}

ArcGIS Pro自己做一个弹出菜单

标签:public   ring   get   add   content   arc   active   view   pup   

原文地址:https://www.cnblogs.com/gisoracle/p/12639849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!