<?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: Best approach for rendering large amounts of polygons on map in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1138527#M76156</link>
    <description>&lt;P&gt;I assume they are not hosted as a FeatureService? If you upload them as a FeatureService, you can enable caching, and greatly improve performance.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.esri.com/arcgis-blog/products/js-api-arcgis/mapping/performance-improvements-for-jsapi-4-21/" target="_blank" rel="noopener"&gt;https://www.esri.com/arcgis-blog/products/js-api-arcgis/mapping/performance-improvements-for-jsapi-4-21/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jan 2022 20:12:26 GMT</pubDate>
    <dc:creator>ReneRubalcava</dc:creator>
    <dc:date>2022-01-28T20:12:26Z</dc:date>
    <item>
      <title>Best approach for rendering large amounts of polygons on map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1138492#M76155</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I don't know if this is an unreasonable task that I'm attempting to do but I'm trying to render around 550,000 polygons on a SceneView or MapView but every method that I go with seems to render either too slowly or break the view.&lt;/P&gt;&lt;P&gt;Here are the 2 methods I've tried so far:&lt;/P&gt;&lt;P&gt;- Download all data client side and create a GeoJSON layer based on a client side blob URL&lt;/P&gt;&lt;P&gt;- Upload all data to a hosted FeatureLayer service on ArcGIS&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jan 2022 19:09:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1138492#M76155</guid>
      <dc:creator>avecchi</dc:creator>
      <dc:date>2022-01-28T19:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Best approach for rendering large amounts of polygons on map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1138527#M76156</link>
      <description>&lt;P&gt;I assume they are not hosted as a FeatureService? If you upload them as a FeatureService, you can enable caching, and greatly improve performance.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.esri.com/arcgis-blog/products/js-api-arcgis/mapping/performance-improvements-for-jsapi-4-21/" target="_blank" rel="noopener"&gt;https://www.esri.com/arcgis-blog/products/js-api-arcgis/mapping/performance-improvements-for-jsapi-4-21/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jan 2022 20:12:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1138527#M76156</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2022-01-28T20:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Best approach for rendering large amounts of polygons on map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1138535#M76157</link>
      <description>&lt;P&gt;Is the layer dynamic, or will the features basically stay as they are? Do they vary in size? If there are very small features, you might try setting up a scale-based filter on them, too. Or is there some other reason that all features need to be rendered at once?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jan 2022 20:29:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1138535#M76157</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-01-28T20:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: Best approach for rendering large amounts of polygons on map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1138537#M76158</link>
      <description>&lt;P&gt;They were hosted as a FeatureService but unfortunately I don't think caching will help me as I need to be able to dynamically add new sets of those polygons.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jan 2022 20:35:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1138537#M76158</guid>
      <dc:creator>avecchi</dc:creator>
      <dc:date>2022-01-28T20:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Best approach for rendering large amounts of polygons on map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1138538#M76159</link>
      <description>&lt;P&gt;The layer is dynamic, the plan is to insert packets of around 2000 polygons at a time every 30 seconds.&lt;/P&gt;&lt;P&gt;The polygons are all 30m x 30m squares.&amp;nbsp;&lt;/P&gt;&lt;P&gt;A scale based filter might work but I would need the scale to be pretty high as the idea is to paint a sort of picture on the ground with these squares and be able to click on a square to display its' value.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jan 2022 20:38:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1138538#M76159</guid>
      <dc:creator>avecchi</dc:creator>
      <dc:date>2022-01-28T20:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Best approach for rendering large amounts of polygons on map</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1517877#M85286</link>
      <description>&lt;P&gt;I am facing a similar issue where we need to dynamically add a large set of features to an existing feature layer on the map. Were you able to find a solution to the problem you were facing?&lt;/P&gt;</description>
      <pubDate>Sat, 10 Aug 2024 15:39:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/best-approach-for-rendering-large-amounts-of/m-p/1517877#M85286</guid>
      <dc:creator>MassoudAhmadi</dc:creator>
      <dc:date>2024-08-10T15:39:44Z</dc:date>
    </item>
  </channel>
</rss>

