Parameters
- mapMember
- The MapMember containing the feature.
- featureID
- The object id of the feature.
- popupDef
- A class to set additional properties for the popup. When set to null, default values will be used.
| Exception | Description |
|---|---|
| System.InvalidOperationException | Popups must be created on the UI thread |
{
if (mapView == null) return;
// Sample code: https://github.com/ArcGIS/arcgis-pro-sdk-community-samples/blob/master/Map-Exploration/CustomIdentify/CustomIdentify.cs
var topLeftCornerPoint = new System.Windows.Point(200, 200);
var popupDef = new PopupDefinition()
{
Append = true, // if true new record is appended to existing (if any)
Dockable = true, // if true popup is dockable - if false Append is not applicable
Position = topLeftCornerPoint, // Position of top left corner of the popup (in pixels)
Size = new System.Windows.Size(200, 400) // size of the popup (in pixels)
};
mapView.ShowPopup(mapMember, objectID, popupDef);
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)