public void ShowCustomPopup( IEnumerable<PopupContent> popupContent )
Public Overloads Sub ShowCustomPopup( _ ByVal popupContent As IEnumerable(Of PopupContent) _ )
Parameters
- popupContent
- The content to be displayed in the pop-up.
public void ShowCustomPopup( IEnumerable<PopupContent> popupContent )
Public Overloads Sub ShowCustomPopup( _ ByVal popupContent As IEnumerable(Of PopupContent) _ )
Exception | Description |
---|---|
System.InvalidOperationException | Popups must be created on the UI thread |
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("http://www.esri.com/"), "Custom tooltip from Uri")); mapView.ShowCustomPopup(popups); }
Target Platforms: Windows 10, Windows 8.1