<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Drawing oddities in 3.20 API in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253247#M23430</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tyrone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Did the link I provide not work for you? There really would not be any samples as this is such a simple method, just create the GeometryEngine class and then run the isSimple(geometry) method and it returns a boolean.&amp;nbsp;G&lt;SPAN style="background-color: #ffffff;"&gt;eometryEngineAsync is just another class that run async instead of synchronous.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Apr 2017 21:01:47 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2017-04-12T21:01:47Z</dc:date>
    <item>
      <title>Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253235#M23418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a draw tool using the draw and edit toolbar classes. The idea is that the user can draw a shape on the map. There is a UI that allows the user to select the drawn shape from a list. There is a context menu to edit the shape. The problem is with rectangle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the user starts to draw a rectangle and drags down and to the right, everything is fine. The edit UI displays, showing the top left point of the rectangle and the bottom right. However, the user cannot edit the bottom right point, to a point that is north of the top left point with out buggy behavior. In fact, if the once bottom right point (now top right) is edited a second time, the rectangle turns into a line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And, this rectangle to line issue can be replicated by drawing a rectangle upside down. If the user clicks and drags north east, to make the rectangle, the top left point ends up being the bottom left.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope I explained this well enough. I understand this to be all in how the expected clockwise creation of points of a shape? Is there anything I can do to make cleaner shapes so they can be edited?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 16:13:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253235#M23418</guid>
      <dc:creator>TyroneBiggums</dc:creator>
      <dc:date>2017-04-10T16:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253236#M23419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe if I asked this differently. In code I have: &lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;toolbar.on("draw-end", addGraphic);&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The graphic object is passed to addGraphic. &lt;/P&gt;&lt;P&gt;To grab the top left point of a rectangle, I have this in code:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;item.Geometry.Polygon.Rings[0][0][0] = x; // top-left x&lt;BR /&gt;item.Geometry.Polygon.Rings[0][0][1] = y; // top-left y&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Since [0][0][0], [0][0][1] is the x, y of the first point drawn (where the user first clicks the map) to begin drawing the rectangle, x, y is not always the top left point of the rectangle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to draw, or re-draw, a shape clockwise from the top left most point on the map (that doesn't interfere with the API)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe the best way is to not go by array position but geo-math?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 18:10:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253236#M23419</guid>
      <dc:creator>TyroneBiggums</dc:creator>
      <dc:date>2017-04-12T18:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253237#M23420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tyrone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Since you are working with it as a polygon have you tried to run a GeometryService simplify on it is the polygon.isclockwise(ring) is false?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 18:26:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253237#M23420</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-04-12T18:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253238#M23421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert, I am using a GeometryService.simplify on it to measure. Thank you for directing me at isClockwise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 18:45:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253238#M23421</guid>
      <dc:creator>TyroneBiggums</dc:creator>
      <dc:date>2017-04-12T18:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253239#M23422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/rscheitlin"&gt;rscheitlin&lt;/A&gt;‌, kind of weird... if I draw a rectangle while clicking and dragging to the NW, the isClockwise returns true. If I click and drag NE or SW, isClockwise returns false. If I click and drag SE or NW, isClockwise will return true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, it was a start, but I'm still a little stuck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 19:26:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253239#M23422</guid>
      <dc:creator>TyroneBiggums</dc:creator>
      <dc:date>2017-04-12T19:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253240#M23423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oops, actually... that's just using the draw toolbar. GeometryService.simplify puts everything in clockwise as if it is redrawn? isClockwise is true for every way I draw it, and the ring's points are in different positions compared to the draw toolbar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 19:38:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253240#M23423</guid>
      <dc:creator>TyroneBiggums</dc:creator>
      <dc:date>2017-04-12T19:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253241#M23424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tyrone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Strange. What about running the isSimple GeometryEngine method?&lt;/P&gt;&lt;P&gt;&lt;A class="link-bare" href="https://developers.arcgis.com/javascript/3/jsapi/esri.geometry.geometryengine-amd.html#issimple" title="https://developers.arcgis.com/javascript/3/jsapi/esri.geometry.geometryengine-amd.html#issimple"&gt;https://developers.arcgis.com/javascript/3/jsapi/esri.geometry.geometryengine-amd.html#issimple&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 19:44:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253241#M23424</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-04-12T19:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253242#M23425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure it this helps, but using the Draw and Edit toolbars seems to allow for this functionality:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://jsbin.com/xisupo/edit?html,output" title="https://jsbin.com/xisupo/edit?html,output"&gt;JS Bin - Draw and Edit Toolbars&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 20:00:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253242#M23425</guid>
      <dc:creator>JohnGrayson</dc:creator>
      <dc:date>2017-04-12T20:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253243#M23426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, but I'm allowing the user to fine-tune their polygons to the decimal point, with input fields. To keep it a rectangle, I'm only allowing them to modify two opposite points (top-left and bottom-right). Using the straight toolbars, you can turn the rectangle upside down and inside out and it won't care. The only issue I have found is updating the graphic with new rings, and finding the right points to edit in the first place.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 20:06:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253243#M23426</guid>
      <dc:creator>TyroneBiggums</dc:creator>
      <dc:date>2017-04-12T20:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253244#M23427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you're just dealing with an extent, I wonder if you could re-assemble it by finding the new xmin, ymin, xmax, and ymax. Just compare the previous and new values and keep the appropriate ones. &amp;nbsp;For example, something kind of like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var updatedXmin = Math.min(previousXmin, newXmin);&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;var updatedYmin = Math.min(previousYmin, newYmin);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;var updatedXmax = Math.max(previousXmax, newXmax);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;var updatedYmax = Math.max(previousYmax, newYmax);&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 20:23:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253244#M23427</guid>
      <dc:creator>JohnGrayson</dc:creator>
      <dc:date>2017-04-12T20:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253245#M23428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is that a 3.20 thing? The ref says added in 3.13 but Google doesn't have any results for "geometryEngineAsync issimple 3.20", the ref has no samples and geometryEngineAsync.isSimple (in code) isn't a thing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 20:28:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253245#M23428</guid>
      <dc:creator>TyroneBiggums</dc:creator>
      <dc:date>2017-04-12T20:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253246#M23429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will play around with this idea. Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 20:56:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253246#M23429</guid>
      <dc:creator>TyroneBiggums</dc:creator>
      <dc:date>2017-04-12T20:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253247#M23430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tyrone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Did the link I provide not work for you? There really would not be any samples as this is such a simple method, just create the GeometryEngine class and then run the isSimple(geometry) method and it returns a boolean.&amp;nbsp;G&lt;SPAN style="background-color: #ffffff;"&gt;eometryEngineAsync is just another class that run async instead of synchronous.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 21:01:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253247#M23430</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-04-12T21:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253248#M23431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The link worked, however, the isSimple method gives me: TypeError: Object doesn't support property or method 'isSimple' TypeError: Object doesn't support property or method 'isSimple'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Apr 2017 21:24:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253248#M23431</guid>
      <dc:creator>TyroneBiggums</dc:creator>
      <dc:date>2017-04-12T21:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253249#M23432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tyrone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;You are creating a GeometryEngine object right?&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="token function"&gt;require&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"esri/geometry/geometryEngine"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;geometryEngine&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt; 
&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; isSimple &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; geometryEngine&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;isSimple&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Geometry&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:32:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253249#M23432</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T12:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253250#M23433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, right, so it works if I spell it right. But, it's just as odd. If I check if isSimple within the geoSvc, it's always true. If I check if isSimple after I draw a rectangle, half the time it's true, half it's false, just as above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I'm going to have to check the min/max x/y like John Grayson mentioned.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Apr 2017 12:53:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253250#M23433</guid>
      <dc:creator>TyroneBiggums</dc:creator>
      <dc:date>2017-04-13T12:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing oddities in 3.20 API</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253251#M23434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tyrone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; So when you draw and you check if it is simple and it is not then you run the simplify before you add it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Apr 2017 13:00:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/drawing-oddities-in-3-20-api/m-p/253251#M23434</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-04-13T13:00:06Z</dc:date>
    </item>
  </channel>
</rss>

