I am trying to render a rectangle graphics box onto the map, given the center location of an polygonal feature and the extent dimensions (length and width) in meters. The feature has the spatial reference of its shape set to WGS84 though.
I am able to get the location of the feature (an IPoint) by taking its centroid. Is there then a straightforward way to accomplish the drawing of such a box with meter-dimensions around that point?
Looking at the API, IEnvelope seems to be what I need, but will I have issues with unit-conversions (since I need the extent dimensions to be in meters)? And how should I go about rendering the IEnvelope?
Any help is appreciated, thanks!

IConstructGeodeticcould be of help. – Petr Krebs Oct 9 '12 at 18:42IConstructGeodetic.ConstructGeodesicEllipse) around the point with the semi-major and semi-minor axes corresponding to the half of the width and length, respectively, then get an envelope of that geometry. – Petr Krebs Oct 9 '12 at 18:50