I need to add to my ArcGIS Pro add-in a standalone map control to display in a dialog box, that is independent from the map panes. In the ArcMap days, I would have used the ArcEngine SDK. The closest thing appears to be the ArcGIS Maps SDK's, and I am using the .NET edition. I tried to add the API key to the module's Initialized function :
protected override bool Initialize()
{
base.Initialize();
ArcGISRuntimeEnvironment.ApiKey = "MyAPIKEY";
return true;
}
and had no luck. I tried adding it to the constructor of the dialog box, and no luck there. I keep getting the "Licensed for Developers Use Only" on the map. What am I missing here, or is it not possible to use the ArcGIS Map SDK's MapView control inside of ArcGIS Pro?
Steve