Hello,
I'm trying to generate an Envelope object, passing it x and y coordinates min and max.
Using this object I am trying to generate a polygon but I can't get it.
Envelope extent = new Envelope(enteredPointMin.X, enteredPointMin.Y, enteredPointMax.X, enteredPointMax.Y);
Is it possible to generate a polygon object from an envelope element or extent? or from XY Min/Max coordinates??
In the JS API it is allowed to generate a polygon form Extent, but in .NET SDK maybe not.
Thanks !