<?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 3.8 Circles &amp;amp;amp; Border Smoothness in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3-8-circles-amp-amp-border-smoothness/m-p/404252#M37213</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello -&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We've created circles with the JS API in the past using buffer.&amp;nbsp; One issue we have with these is at certain zoom levels, the circle border gets choppy.&amp;nbsp; This is likely because there are too many or too few points, depending on the circle size and zoom level.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We were hopeful that the new Circle API would remedy this, and somehow always have smooth borders regardless of zoom level and circle size.&amp;nbsp; This doesn't seem to be the case (see attached for 3.8 circle example).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are there any plans to try to shape the new circles so they're "smooth" regardless of size/zoom? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-Brian&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Jan 2014 14:33:24 GMT</pubDate>
    <dc:creator>BrianRassier</dc:creator>
    <dc:date>2014-01-24T14:33:24Z</dc:date>
    <item>
      <title>3.8 Circles &amp;amp; Border Smoothness</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3-8-circles-amp-amp-border-smoothness/m-p/404252#M37213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello -&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We've created circles with the JS API in the past using buffer.&amp;nbsp; One issue we have with these is at certain zoom levels, the circle border gets choppy.&amp;nbsp; This is likely because there are too many or too few points, depending on the circle size and zoom level.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We were hopeful that the new Circle API would remedy this, and somehow always have smooth borders regardless of zoom level and circle size.&amp;nbsp; This doesn't seem to be the case (see attached for 3.8 circle example).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are there any plans to try to shape the new circles so they're "smooth" regardless of size/zoom? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-Brian&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jan 2014 14:33:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3-8-circles-amp-amp-border-smoothness/m-p/404252#M37213</guid>
      <dc:creator>BrianRassier</dc:creator>
      <dc:date>2014-01-24T14:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: 3.8 Circles &amp; Border Smoothness</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3-8-circles-amp-amp-border-smoothness/m-p/404253#M37214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Brian,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can tweak the parameter "numberOfPoints". By default it's 60. I think 90~180 would be a good number for a smooth user experience on any zoom level.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jan 2014 19:51:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3-8-circles-amp-amp-border-smoothness/m-p/404253#M37214</guid>
      <dc:creator>JianHuang</dc:creator>
      <dc:date>2014-01-24T19:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: 3.8 Circles &amp; Border Smoothness</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3-8-circles-amp-amp-border-smoothness/m-p/404254#M37215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Unfortunately, it's not as simple as increasing the number of points used to create a circle. That's a good option when you're seeing the specific segments used to create a circle, like here:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="http://jsbin.com/AnIQEqO/1/edit"&gt;http://jsbin.com/AnIQEqO/1/edit&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But when the issue is something like what Brian has described, using more points won't improve display quality. Instead, consider using a point with a marker symbol to represent your data rather than a circle when at small scales (zoomed way out). The underlying issue is that the API is trying to draw many vertices in a small area which makes the feature look saturated or jaggy. You can see the same thing when you put highly-detailed polygons on a small scale map as shown in one of the screen shots in our feature layer doc on best practices:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/jshelp/best_practices_feature_layers.html"&gt;https://developers.arcgis.com/javascript/jshelp/best_practices_feature_layers.html&lt;/A&gt;&lt;SPAN&gt; (look at the western border of Mississippi in the last screen shot).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jan 2014 20:43:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3-8-circles-amp-amp-border-smoothness/m-p/404254#M37215</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2014-01-24T20:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: 3.8 Circles &amp; Border Smoothness</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3-8-circles-amp-amp-border-smoothness/m-p/404255#M37216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I see what the issue is. SVG curves may be a good solution in the future.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jan 2014 22:00:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3-8-circles-amp-amp-border-smoothness/m-p/404255#M37216</guid>
      <dc:creator>JianHuang</dc:creator>
      <dc:date>2014-01-24T22:00:02Z</dc:date>
    </item>
  </channel>
</rss>

