I think this is a bug with the GeoRssLayer objectSo GeoRss:box Esri georsslayer converts this to a Envelope. (See first post thumbnail) (box is part of the georss spec .. see http://georss.org/simple)That is cool, however, envelopes don't seem to draw on the map.. (like points/lines/polygons do)Looks like others have found that envelopes don't draw also..http://forums.esri.com/Thread.asp?c=158&f=2455&t=298616here is some sample code I wrote.. //POLY WORKS
System.Windows.Media.SolidColorBrush orangecolor = new SolidColorBrush(Colors.Orange);
SimpleFillSymbol sampleFillSymbolorange = new SimpleFillSymbol() { Fill = orangecolor, BorderBrush = orangecolor, BorderThickness = 3, };
GraphicsLayer graphicslayerPoly = new GraphicsLayer() { ID = "PolygonWorks", Opacity = .5 };
ESRI.ArcGIS.Client.Geometry.PointCollection circlePts = new ESRI.ArcGIS.Client.Geometry.PointCollection();
circlePts.Add(new MapPoint() { X = -60, Y = -30 });
circlePts.Add(new MapPoint() { X = -30, Y = 00 });
circlePts.Add(new MapPoint() { X = 00, Y = 00 });
circlePts.Add(new MapPoint() { X = 00, Y = -30 });
circlePts.Add(new MapPoint() { X = -30, Y = -60 });
ESRI.ArcGIS.Client.Geometry.Polygon isolationZonePts = new ESRI.ArcGIS.Client.Geometry.Polygon();
isolationZonePts.Rings.Add(circlePts);
isolationZonePts.SpatialReference = new SpatialReference() { WKID = 4326 };
//ENVELOPE DOESN'T
graphicslayerPoly.Graphics.Add(new Graphic() { Geometry = isolationZonePts, Symbol = sampleFillSymbolorange });
System.Windows.Media.SolidColorBrush purplecolor = new SolidColorBrush(Colors.Purple);
SimpleFillSymbol sampleFillSymbol = new SimpleFillSymbol() { Fill = purplecolor, BorderBrush = purplecolor, BorderThickness = 20 };
GraphicsLayer graphicslayerEnvelope = new GraphicsLayer() { ID = "EnvelopeFails", Opacity = .5 };
Envelope envelope = new Envelope(30, 30, 0, 0);
MyMap.Layers.Add(graphicslayerPoly);
MyMap.Layers.Add(graphicslayerEnvelope);
[ATTACH=CONFIG]17038[/ATTACH]