I’m having trouble viewing the NoaaWeatherWarningsFeatureLayer. I use the following code to add it to my map, but nothing shows up.
NoaaWeatherWarningsFeatureLayer wwaLayer =
new
NoaaWeatherWarningsFeatureLayer();
wwaLayer.DrawingException +=
this
.layer_DrawingException;
wwaLayer.DrawingFeatures += wwaLayer_DrawingFeatures;
weatherOverlay.Layers.Add(
“WWA”
, wwaLayer);
Right after that I refresh the overlay section of the map, but nothing seems to draw. I know there are items that should be showing up. When I add a handler to NoaaWeatherWarningsFeatureSource.WarningsUpdated I can see a list of all the features which have been added, but the layer won’t display properly. Is there something that I’m missing?