<?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: featureLayerView: table-not-supported , table feature layer can't be displayed in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338756#M82479</link>
    <description>&lt;P&gt;Tried that, but didnt work. The graphics do not load. I am wondering if there is a need to set symbol like this and even it didnt work.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;featuresArray.push({
            geometry:{
              longitude: node.getAttribute('lng'),
              latitude: node.getAttribute('lat'),
              type:'point'
            },
            symbol: {
              type: "simple-marker", // autocasts as new SimpleMarkerSymbol()
              color: "blue",
              size: 10,
              outline: { // autocasts as new SimpleLineSymbol()
                width: 0.5,
                color: "darkblue"
              }
            },
            attributes:{
              id:parseInt(node.getAttribute('id'),10)
            }
          });&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Oct 2023 17:57:31 GMT</pubDate>
    <dc:creator>Rohit_Venkat_GandhiMendadhala3</dc:creator>
    <dc:date>2023-10-17T17:57:31Z</dc:date>
    <item>
      <title>featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338456#M82474</link>
      <description>&lt;P&gt;I am trying to create a featureLayer from an XML response where lat,lon are stored in a featureArray. Instead of creating this as point graphic, I would like to create them as a pointFeatureLayer. However, when I do that I get an error saying table feature layer cant be displayed. I am creating the featureLayer from featuresArray by loading it as FeatureLayerCollection containing lat,lon and id.&lt;BR /&gt;Here is the snapshot of the code, I have used.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;   fetch(url,{
      method: 'GET',
      mode:'cors',
    }).then((response) =&amp;gt; response.text())
    .then(str =&amp;gt; new window.DOMParser().parseFromString(str, 'text/xml'))
    .then(async data =&amp;gt; {
      const nodes = data.getElementsByTagName('tower');
      const featuresArray = [];
      for (const node of nodes){
          featuresArray.push({
            longitude: node.getAttribute('lng'),
            latitude: node.getAttribute('lat'),
            id:node.getAttribute('id')
          });
        }
      console.log(featuresArray);
      const featureLayer = await this.esri.FeatureLayer({
        source:featuresArray,
        objectIdField:'id',
        title:'TestLayer'
      });
      this.mvs.addToMap(featureLayer);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 21:43:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338456#M82474</guid>
      <dc:creator>Rohit_Venkat_GandhiMendadhala3</dc:creator>
      <dc:date>2023-10-16T21:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338482#M82476</link>
      <description>&lt;P&gt;I think the problem lies in the structure of the objects in your featuresArray.&amp;nbsp; Perhaps try the following instead:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;for (const node of nodes) {
	featuresArray.push({
		geometry: {
			longitude: node.getAttribute("lng"),
			latitude: node.getAttribute("lat"),
			type: "point"
		},
		attributes: {
			id: node.getAttribute("id")
		}
	});
}&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 17 Oct 2023 02:00:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338482#M82476</guid>
      <dc:creator>JoelBennett</dc:creator>
      <dc:date>2023-10-17T02:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338682#M82477</link>
      <description>&lt;P&gt;Thank you, that worked ok to resolve the error. However the points do not display or load on the webmap.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 16:00:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338682#M82477</guid>
      <dc:creator>Rohit_Venkat_GandhiMendadhala3</dc:creator>
      <dc:date>2023-10-17T16:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338749#M82478</link>
      <description>&lt;P&gt;It may be because the ObjectID values are expected to be numeric, so you might need to use the following instead:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;		attributes: {
			id: parseInt(node.getAttribute("id"), 10)
		}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or you could also generate your own:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var oid = 1;

for (const node of nodes) {
	featuresArray.push({
		geometry: {
			longitude: node.getAttribute("lng"),
			latitude: node.getAttribute("lat"),
			type: "point"
		},
		attributes: {
			id: oid++,
			featureID: node.getAttribute("id")
		}
	});
}&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 17 Oct 2023 17:31:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338749#M82478</guid>
      <dc:creator>JoelBennett</dc:creator>
      <dc:date>2023-10-17T17:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338756#M82479</link>
      <description>&lt;P&gt;Tried that, but didnt work. The graphics do not load. I am wondering if there is a need to set symbol like this and even it didnt work.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;featuresArray.push({
            geometry:{
              longitude: node.getAttribute('lng'),
              latitude: node.getAttribute('lat'),
              type:'point'
            },
            symbol: {
              type: "simple-marker", // autocasts as new SimpleMarkerSymbol()
              color: "blue",
              size: 10,
              outline: { // autocasts as new SimpleLineSymbol()
                width: 0.5,
                color: "darkblue"
              }
            },
            attributes:{
              id:parseInt(node.getAttribute('id'),10)
            }
          });&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 17:57:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338756#M82479</guid>
      <dc:creator>Rohit_Venkat_GandhiMendadhala3</dc:creator>
      <dc:date>2023-10-17T17:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338758#M82480</link>
      <description>&lt;P&gt;Yes, FeatureLayers will ignore the symbol properties on individual graphics.&amp;nbsp; You'll likely need to set the &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#renderer" target="_self"&gt;renderer&lt;/A&gt; property on the FeatureLayer.&amp;nbsp; For example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;const featureLayer = await this.esri.FeatureLayer({
	source: featuresArray,
	objectIdField: "id",
	title: "TestLayer",
	renderer: {
		type: "simple",  // autocasts as new SimpleRenderer()
		symbol: {
			type: "simple-marker",  // autocasts as new SimpleMarkerSymbol()
			color: "blue",
			size: 10,
			outline: {  // autocasts as new SimpleLineSymbol()
				width: 0.5,
				color: "darkblue"
			}
		}
	}
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 18:05:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338758#M82480</guid>
      <dc:creator>JoelBennett</dc:creator>
      <dc:date>2023-10-17T18:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338772#M82481</link>
      <description>&lt;P&gt;Tried it. However I receive a type error this time.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rohit_Venkat_GandhiMendadhala3_1-1697566838799.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/83279i9FCEC381F9853889/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Rohit_Venkat_GandhiMendadhala3_1-1697566838799.png" alt="Rohit_Venkat_GandhiMendadhala3_1-1697566838799.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 18:20:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338772#M82481</guid>
      <dc:creator>Rohit_Venkat_GandhiMendadhala3</dc:creator>
      <dc:date>2023-10-17T18:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338786#M82482</link>
      <description>&lt;P&gt;That's a compilation error, as opposed to a runtime error...so you'll need to make the compiler happy.&amp;nbsp; You may need to import the &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-SimpleRenderer.html" target="_self"&gt;SimpleRenderer,&lt;/A&gt;&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleMarkerSymbol.html" target="_self"&gt;SimpleMarkerSymbol&lt;/A&gt;, and &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-SimpleLineSymbol.html" target="_self"&gt;SimpleLineSymbol&lt;/A&gt; modules, and use their constructors to instantiate the renderer and its symbol instead of autocasting.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 18:42:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338786#M82482</guid>
      <dc:creator>JoelBennett</dc:creator>
      <dc:date>2023-10-17T18:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338851#M82484</link>
      <description>&lt;P&gt;Try to wrap your coords in Number(node.getAttribute('lng')), see if that helps. Although I think you would get a different error if the coords as string was an issue. What if you assign the y/x instead of lat/lon?&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you had a small sample in codepen or similar to debug, would help.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 20:15:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338851#M82484</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2023-10-17T20:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338868#M82485</link>
      <description>&lt;P&gt;Tried importing it, but still didnt work.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt; const featureLayer = await this.esri.FeatureLayer({
        source:featuresArray,
        objectIdField:'id',
        title:'TestLayer'
      });
      const simpleMarker = await this.esri.SimpleMarkerSymbol({
        color: 'blue',
        size: 25,
        outline: {
          width: 0.5,
          color: 'darkblue'
        }
      });
      const simpleRenderer = await this.esri.SimpleRenderer({
        symbol: simpleMarker
      });
      featureLayer.renderer = simpleRenderer;

      this.mvs.addToMap(featureLayer);&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 17 Oct 2023 20:43:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338868#M82485</guid>
      <dc:creator>Rohit_Venkat_GandhiMendadhala3</dc:creator>
      <dc:date>2023-10-17T20:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338874#M82486</link>
      <description>&lt;P&gt;Are you getting a new error, the same one, or nothing?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 20:48:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338874#M82486</guid>
      <dc:creator>JoelBennett</dc:creator>
      <dc:date>2023-10-17T20:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338879#M82487</link>
      <description>&lt;P&gt;Well I&amp;nbsp; tried that, but it didnt work as well.&lt;/P&gt;&lt;P&gt;Here is sample of the featuresArray.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rohit_Venkat_GandhiMendadhala3_0-1697575841852.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/83303i4A81B6FC9FCEBFC4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Rohit_Venkat_GandhiMendadhala3_0-1697575841852.png" alt="Rohit_Venkat_GandhiMendadhala3_0-1697575841852.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 20:50:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338879#M82487</guid>
      <dc:creator>Rohit_Venkat_GandhiMendadhala3</dc:creator>
      <dc:date>2023-10-17T20:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338886#M82488</link>
      <description>&lt;P&gt;No errors, code runs fine but layer doesnt display (points dont show up). The title displays in the map options, but points do not show up. Unfortunately, this is part of a big code base, cant upload the codebase&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rohit_Venkat_GandhiMendadhala3_0-1697576123380.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/83306i3E354DC5326D26A6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Rohit_Venkat_GandhiMendadhala3_0-1697576123380.png" alt="Rohit_Venkat_GandhiMendadhala3_0-1697576123380.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rohit_Venkat_GandhiMendadhala3_1-1697576181504.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/83307i25A187D28A54206C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Rohit_Venkat_GandhiMendadhala3_1-1697576181504.png" alt="Rohit_Venkat_GandhiMendadhala3_1-1697576181504.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 20:56:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338886#M82488</guid>
      <dc:creator>Rohit_Venkat_GandhiMendadhala3</dc:creator>
      <dc:date>2023-10-17T20:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338889#M82489</link>
      <description>&lt;P&gt;It was good to convert the lat and long to numbers as Rene suggested, but I see in your screenshot the "id" values are still strings.&amp;nbsp; I've seen features not render in cases of duplicate or invalid objectid values, so you should probably convert those to integers as well, whether via Number or parseInt.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 20:59:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338889#M82489</guid>
      <dc:creator>JoelBennett</dc:creator>
      <dc:date>2023-10-17T20:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338903#M82490</link>
      <description>&lt;P&gt;Well, I did that too&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 21:11:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338903#M82490</guid>
      <dc:creator>Rohit_Venkat_GandhiMendadhala3</dc:creator>
      <dc:date>2023-10-17T21:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338907#M82491</link>
      <description>&lt;P&gt;Ok, I have just changed the id to a diff field and it loads just one point, that too with a mismatch of spatial reference. Any recommendations on this?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rohit_Venkat_GandhiMendadhala3_0-1697577391888.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/83315iBEC0E0757DC4403D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Rohit_Venkat_GandhiMendadhala3_0-1697577391888.png" alt="Rohit_Venkat_GandhiMendadhala3_0-1697577391888.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 21:16:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338907#M82491</guid>
      <dc:creator>Rohit_Venkat_GandhiMendadhala3</dc:creator>
      <dc:date>2023-10-17T21:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338912#M82492</link>
      <description>&lt;P&gt;There could be some invalid data. If I add NaN values to coords, no points will display. The one valid point will display if you change to NaN to null though.&lt;/P&gt;&lt;P&gt;&lt;A href="https://codepen.io/odoe/pen/ZEVdNBJ?editors=1000" target="_blank"&gt;https://codepen.io/odoe/pen/ZEVdNBJ?editors=1000&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You might need to filter the data to validate it before you create the layer.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 21:22:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338912#M82492</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2023-10-17T21:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338914#M82493</link>
      <description>&lt;P&gt;Is it really just one point, or a load of points stacked on one another?&amp;nbsp; If it is just one point, I would recommend autogenerating the objectID values as in a previous response.&lt;/P&gt;&lt;P&gt;As for the wrong location, it looks like it's treating your long/lat values as Web Mercator x/y values.&amp;nbsp; You may have to project the coordinates into Web Mercator, which is easily done with&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-geometry-support-webMercatorUtils.html#lngLatToXY" target="_self"&gt;webMercatorUtils.lngLatToXY&lt;/A&gt;&amp;nbsp;and then use "x" and "y" properties instead of "latitude" and "longitude".&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 21:27:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338914#M82493</guid>
      <dc:creator>JoelBennett</dc:creator>
      <dc:date>2023-10-17T21:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338916#M82494</link>
      <description>&lt;P&gt;Yes, I expected that. So here is NaN value I found.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rohit_Venkat_GandhiMendadhala3_0-1697578025244.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/83318i42712C8459987B98/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Rohit_Venkat_GandhiMendadhala3_0-1697578025244.png" alt="Rohit_Venkat_GandhiMendadhala3_0-1697578025244.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is there a way to filter this down.. I did something like this.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;featuresArray = featuresArray.filter((obj)=&amp;gt; !isNaN(obj.geometry.latitude || obj.geometry.longitude))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 21:31:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338916#M82494</guid>
      <dc:creator>Rohit_Venkat_GandhiMendadhala3</dc:creator>
      <dc:date>2023-10-17T21:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: featureLayerView: table-not-supported , table feature layer can't be displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338920#M82495</link>
      <description>&lt;P&gt;Do the check on both values like&amp;nbsp;!isNaN(obj.geometry.latitude) &amp;amp;&amp;amp; !isNaN(obj.geometry.longitude)&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 21:40:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featurelayerview-table-not-supported-table-feature/m-p/1338920#M82495</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2023-10-17T21:40:14Z</dc:date>
    </item>
  </channel>
</rss>

