Howdy,
I've been building an app for a few years now and it has been utilizing the older versions of the Windows WPF SDK up until recently. In changing some code in the model view over to use the newer BasemapStyle model, my map shows no detail - only a black screen.
I've gone as far as downloading the sample apps and tried running the simplest of all and it displays just a white background with "Powered by ESRI" in the lower right corner.
Did ESRI implement a different SDK key/licensing setup?
Old code: (Displays correctly
[Obsolete]
private Map _map = new Map(BasemapType.StreetsNightVector, _defaultLat, _defaultLon, _defaultZoom)
{
MinScale = Configs.MaxZoomOutScale,
MaxScale = Configs.MaxZoomInScale
};
New code: (Shows black screen, nothing else)
_map = new Map(BasemapStyle.ArcGISStreetsNight);