<?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: Feature Reduction not working for dynamic Feature Layer in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303278#M8076</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did the changes. I updated the WAB version from 2.5 to 2.6 with AGS 3.23.. But no luck.. same error &lt;SPAN style="background-color: #ffffff;"&gt;"Cannot read property 'call' of undefined" while executing my widget.&lt;SPAN&gt;" . if i comment the&amp;nbsp; above line (i.e. on FeatureLayer load event), it works fine. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;while debugging it is going smoothly to the last line of the "_getStateResults" method without any exception.After that, error&amp;nbsp;added on console.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Jan 2018 12:41:57 GMT</pubDate>
    <dc:creator>ShaikhRizuan</dc:creator>
    <dc:date>2018-01-05T12:41:57Z</dc:date>
    <item>
      <title>Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303274#M8072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am adding large amount of points as a dynamic feature layer, and try to cluster those point features by using the below code:&lt;/P&gt;&lt;P&gt;.............................................................................&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;var jsonFS = new Object();&lt;BR /&gt; jsonFS.geometryType = "esriGeometryPoint";&lt;BR /&gt; jsonFS.features = features;&lt;BR /&gt; var featureSet = new FeatureSet(jsonFS);&lt;BR /&gt; var featureCollection = {&lt;BR /&gt; layerDefinition:&lt;BR /&gt; {&lt;BR /&gt; "displayFieldName": "",&lt;BR /&gt; "geometryType": "esriGeometryPoint",&lt;BR /&gt; "spatialReference": {&lt;BR /&gt; "latestWkid": 4326,&lt;BR /&gt; "wkid": 4326&lt;BR /&gt; },&lt;BR /&gt; &lt;BR /&gt; "fields": [&lt;BR /&gt; {&lt;BR /&gt; "name": "objectid",&lt;BR /&gt; "type": "esriFieldTypeOID",&lt;BR /&gt; "alias": "objectid"&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "name": "AGE",&lt;BR /&gt; "type": "esriFieldTypeString",&lt;BR /&gt; "alias": "AGE"&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "name": "SEX",&lt;BR /&gt; "type": "esriFieldTypeString",&lt;BR /&gt; "alias": "SEX"&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "name": "HS_NM",&lt;BR /&gt; "type": "esriFieldTypeString",&lt;BR /&gt; "alias": "HS_NM",&lt;BR /&gt; "length": 54&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "name": "HS_NMBR",&lt;BR /&gt; "type": "esriFieldTypeString",&lt;BR /&gt; "alias": "HS_NMBR",&lt;BR /&gt; "length": 24&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "name": "DED_PAN",&lt;BR /&gt; "type": "esriFieldTypeString",&lt;BR /&gt; "alias": "DED_PAN",&lt;BR /&gt; "length": 24&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "name": "PAY_AMNT",&lt;BR /&gt; "type": "esriFieldTypeInteger",&lt;BR /&gt; "alias": "PAY_AMNT"&lt;BR /&gt; },&lt;BR /&gt; {&lt;BR /&gt; "name": "shape",&lt;BR /&gt; "type": "esriFieldTypeGeometry",&lt;BR /&gt; "alias": "shape"&lt;BR /&gt; }&lt;BR /&gt; ],&lt;BR /&gt; },featureSet: featureSet};&lt;BR /&gt; var infoTemplate = new InfoTemplate("PAN : ${DED_PAN}", "AGE : ${AGE}&amp;lt;br&amp;gt;GENDER: ${SEX}&amp;lt;br&amp;gt;HOUSE NAME: ${HS_NM}&amp;lt;br&amp;gt;HOUSE NO.: ${HS_NMBR}&amp;lt;br&amp;gt;POI: ${POI}&amp;lt;br&amp;gt;PAYMENT AMOUNT: ${PAY_AMNT}&amp;lt;br&amp;gt;" );&lt;BR /&gt; this.dynamicFL=null;&lt;BR /&gt; //this.dynamicFL = new FeatureLayer(hsFeatureCollection, featureLayerOptions);&lt;BR /&gt; var featureLayerOptions ={&lt;BR /&gt; mode: FeatureLayer.MODE_SNAPSHOT,&lt;BR /&gt; outFields: ["*"],&lt;BR /&gt; infoTemplate: infoTemplate,&lt;BR /&gt;//featureReduction:{type="cluster"},&lt;BR /&gt; id: "Entity Map"&lt;BR /&gt; };&lt;BR /&gt; this.dynamicFL = new FeatureLayer(featureCollection,featureLayerOptions);&lt;BR /&gt; var extent = graphicsUtils.graphicsExtent(featureSet.features);&lt;BR /&gt; this.map.setExtent(extent.expand(1.2));&lt;/P&gt;&lt;P&gt;this.&lt;SPAN&gt;dynamicFL.enableFeatureReduction();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;this.&lt;/SPAN&gt;&lt;SPAN&gt;dynamicFL.setFeatureReduction({&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;type:"cluster",&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;clusterRadius:20&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;});&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting this error : &lt;STRONG&gt;this.dynamicFL.enableFeatureReduction is not a function&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Error" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/392009_FeatureReductionError.png" style="width: 620px; height: 348px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do feature reduction supports for dynamic layer?? How can i achieve this??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2018 05:56:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303274#M8072</guid>
      <dc:creator>ShaikhRizuan</dc:creator>
      <dc:date>2018-01-03T05:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303275#M8073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shaikh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;That feature as added at 3.22 so it is not available in 3.21 API you are using.&lt;/P&gt;&lt;P&gt;&lt;A class="link-bare" href="https://developers.arcgis.com/javascript/3/jsapi/featurelayer-amd.html#enablefeaturereduction" title="https://developers.arcgis.com/javascript/3/jsapi/featurelayer-amd.html#enablefeaturereduction"&gt;https://developers.arcgis.com/javascript/3/jsapi/featurelayer-amd.html#enablefeaturereduction&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So you need to use the latest version of WAB instead.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2018 13:46:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303275#M8073</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-01-03T13:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303276#M8074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;I am using WAB 2.5 ver. and have changed the JS API&amp;nbsp; from 3.21 to 3.23. After updating only the API, I am getting this error: "Cannot read property 'call' of undefined" while executing my widget. PFB Image of the error.&lt;/DIV&gt;&lt;DIV&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/392130_APIError.png" style="width: 620px; height: 348px;" /&gt;&lt;/DIV&gt;&lt;DIV&gt;Do I need to upgrade the WAB (i.e. WAB 2.6) also??&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;In case, if it should work after upgrading the JS API, then kindly help me. I am attaching my widget.js file. Here, i am trying to create class break renderer and adding context menu to the dynamic feature layer on "Load" event. While debugging, I found that if i comment the below line its working fine.&lt;/DIV&gt;&lt;DIV&gt;this.eventListner = this.dynamicFL.on("load",this.createToolbarContextMenu("state",this.secValueName,this.dbSelectCategory.options[this.dbSelectCategory.value].label,this.dbSelectSubCategory.options[this.dbSelectSubCategory.value].label));&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2018 09:42:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303276#M8074</guid>
      <dc:creator>ShaikhRizuan</dc:creator>
      <dc:date>2018-01-04T09:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303277#M8075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;I would say you need to update WAB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2018 12:31:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303277#M8075</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-01-04T12:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303278#M8076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did the changes. I updated the WAB version from 2.5 to 2.6 with AGS 3.23.. But no luck.. same error &lt;SPAN style="background-color: #ffffff;"&gt;"Cannot read property 'call' of undefined" while executing my widget.&lt;SPAN&gt;" . if i comment the&amp;nbsp; above line (i.e. on FeatureLayer load event), it works fine. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;while debugging it is going smoothly to the last line of the "_getStateResults" method without any exception.After that, error&amp;nbsp;added on console.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2018 12:41:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303278#M8076</guid>
      <dc:creator>ShaikhRizuan</dc:creator>
      <dc:date>2018-01-05T12:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303279#M8077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shaikh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; From what I understand feature reduction does not work on FeatureLayers coming from FeatureCollections.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2018 13:49:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303279#M8077</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-01-05T13:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303280#M8078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK.. Actually after configuring, I am not able to run the widget due to above error. How can I make my widget work??&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2018 13:53:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303280#M8078</guid>
      <dc:creator>ShaikhRizuan</dc:creator>
      <dc:date>2018-01-05T13:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303281#M8079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried with JS API 3.22 with WAB 2.6. Its working without any issue !!! But why its not working with 3.23 with WAB 2.6 ??&lt;/P&gt;&lt;P&gt;Also is there any scope to show the "featureReduction" feature for dynamically added points??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2018 14:09:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303281#M8079</guid>
      <dc:creator>ShaikhRizuan</dc:creator>
      <dc:date>2018-01-05T14:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303282#M8080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WAB 2.6 has not been tested to work with JS API 3.23. It is only validated to work with 3.22. You will need WAB 2.7 if you want a WAB that has been validated with 3.23.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Also is there any scope to show the "featureReduction" feature for dynamically added points??&lt;/BLOCKQUOTE&gt;&lt;P&gt;I do not understand...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2018 14:26:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303282#M8080</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-01-05T14:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303283#M8081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;In my requirement, I have to show more than lakhs of points on map. Where these points shall be uploaded from excel sheet or from flat table with lat-long. Also i have to perform class break renderer analysis on those points.&lt;/P&gt;&lt;P&gt;Drawing all those points at a time lead to performance degradation. So, i would like to cluster those points, along with renderer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2018 16:42:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303283#M8081</guid>
      <dc:creator>ShaikhRizuan</dc:creator>
      <dc:date>2018-01-05T16:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303284#M8082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shaikh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Oh, I thought you said you got feature reduction to work.&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I have tried with JS API 3.22 with WAB 2.6. Its working without any issue !!!&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2018 16:55:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303284#M8082</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-01-05T16:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303285#M8083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually&amp;nbsp;i got rid of this "&lt;SPAN style="background-color: #ffffff;"&gt;Cannot read property 'call' of undefined" earlier.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now after setting&amp;nbsp;cluster radius properly its working fine...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shaikh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2018 17:52:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303285#M8083</guid>
      <dc:creator>ShaikhRizuan</dc:creator>
      <dc:date>2018-01-05T17:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303286#M8084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shaikh,&lt;/P&gt;&lt;P&gt;I realise that this was a while ago now, but do you remember how you set the "cluster radius properly"?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gill&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2019 10:33:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303286#M8084</guid>
      <dc:creator>GillPaterson</dc:creator>
      <dc:date>2019-06-05T10:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303287#M8085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gill,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its depends on how your points closed to each other, I did it based on the visualization.&amp;nbsp;Please refer the below link&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/3/jsapi/featurelayer-amd.html#setfeaturereduction"&gt;https://developers.arcgis.com/javascript/3/jsapi/featurelayer-amd.html#setfeaturereduction&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shaikh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2019 11:43:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303287#M8085</guid>
      <dc:creator>ShaikhRizuan</dc:creator>
      <dc:date>2019-07-02T11:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Feature Reduction not working for dynamic Feature Layer</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303288#M8086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Aug 2019 02:37:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/feature-reduction-not-working-for-dynamic-feature/m-p/303288#M8086</guid>
      <dc:creator>GillPaterson</dc:creator>
      <dc:date>2019-08-13T02:37:28Z</dc:date>
    </item>
  </channel>
</rss>

