<?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: 3D SceneView - Feature Layer not visible but getting loaded in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374611#M34753</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi George,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will check with a sample service from &lt;A href="https://sampleserver6.arcgisonline.com/arcgis/rest/services"&gt;sample server 6&lt;/A&gt; using a sample app for sceneview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the network shows that the layer has been called, then most of the time, it can be the browser cache problem too, in not showing the layer. Can you clear the cache or open the web app in Incognito mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the geometry of your feature layer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jun 2020 20:28:44 GMT</pubDate>
    <dc:creator>KavishGhime</dc:creator>
    <dc:date>2020-06-10T20:28:44Z</dc:date>
    <item>
      <title>3D SceneView - Feature Layer not visible but getting loaded</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374608#M34750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team / &lt;A href="https://community.esri.com/migrated-users/3856"&gt;Ken Buja&lt;/A&gt; /&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/248861"&gt;Raluca Nicola&lt;/A&gt; / &lt;A href="https://community.esri.com/migrated-users/9440"&gt;John Grayson&lt;/A&gt;&amp;nbsp;/ &lt;A href="https://community.esri.com/migrated-users/105703"&gt;Kristian Ekenes&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Map and a SceneView and trying to load a FeatureLayer with a UniqueValueRenderer (tried with a SimpleRenderer also)&lt;/P&gt;&lt;P&gt;However, I can see that the layers are successfully getting queried but not getting displayed on the UI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In console, I however see this error/warning and the loading of the basemap itself is taking a lot of time.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="496110" alt="" class="jive-emoji image-1 jive-image j-img-original" src="/legacyfs/online/496110_Screenshot 2020-06-10 at 12.29.39 PM.png" /&gt;&lt;/P&gt;&lt;P&gt;Is this the reason why my layers are not visible or something else?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately I do not have a public URL for the Feature Layer to share. Below is a snippet of the code. The WKID is in 102100 for the Feature Layer, so I believe that should not be a problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are about ~1500 features in the layer which is to be rendered.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var map = new Map({&lt;BR /&gt; basemap: "topo-vector"&lt;BR /&gt; // ground: "world-elevation"&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var view = new SceneView({&lt;BR /&gt; map: map,&lt;BR /&gt; container: "viewDiv",&lt;BR /&gt;camera: {&lt;BR /&gt; position: {&lt;BR /&gt; x: -90.02,&lt;BR /&gt; y: 20.745,&lt;BR /&gt; z: 2000 // meters&lt;BR /&gt; },&lt;BR /&gt; tilt: 75&lt;BR /&gt; }&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var pipelineRenderer = {&lt;BR /&gt; type: "unique-value",&amp;nbsp;&lt;BR /&gt; field: "PRODUCT",&lt;BR /&gt; defaultSymbol: {&lt;BR /&gt; type: "line-3d",&lt;BR /&gt; symbolLayers: [{&lt;BR /&gt; material: {&lt;BR /&gt; color: "blue"&lt;BR /&gt; },&lt;BR /&gt; type:"path",&lt;BR /&gt; profile: "circle",&lt;BR /&gt; width:30,&lt;BR /&gt; height: 30,&lt;BR /&gt; join:"miter",&lt;BR /&gt; cap: "round"&lt;BR /&gt; }],&lt;BR /&gt;},&amp;nbsp;&lt;BR /&gt; uniqueValueInfos: [{&lt;BR /&gt; value: "OIL",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "line-3d",&amp;nbsp;&lt;BR /&gt; symbolLayers: [{&lt;BR /&gt; material: {&lt;BR /&gt; color: "green"&lt;BR /&gt; },&lt;BR /&gt; type:"path",&lt;BR /&gt; profile: "circle",&lt;BR /&gt; width:30,&lt;BR /&gt; height: 30,&lt;BR /&gt; join:"miter",&lt;BR /&gt; cap: "round"&lt;BR /&gt; }],&lt;BR /&gt;}&lt;BR /&gt; }, {&lt;BR /&gt; value: "GAS",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "line-3d",&amp;nbsp;&lt;BR /&gt; symbolLayers: [{&lt;BR /&gt; material: {&lt;BR /&gt; color: "red"&lt;BR /&gt; },&lt;BR /&gt; type:"path",&lt;BR /&gt; profile: "circle",&lt;BR /&gt; width:30,&lt;BR /&gt; height: 30,&lt;BR /&gt; join:"miter",&lt;BR /&gt; cap: "round"&lt;BR /&gt; }],&lt;BR /&gt;}&lt;BR /&gt; }]&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var pipelineSimpleRenderer = {&lt;BR /&gt; type: "simple",&amp;nbsp;&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "line-3d",&amp;nbsp;&lt;BR /&gt; symbolLayers: [{&lt;BR /&gt; type:"path",&lt;BR /&gt; profile: "circle",&lt;BR /&gt; width:30,&lt;BR /&gt; height: 30,&lt;BR /&gt; material: {&lt;BR /&gt; color: "red"&lt;BR /&gt; },&lt;BR /&gt; join:"miter",&lt;BR /&gt; cap: "round"&lt;BR /&gt;}]&lt;BR /&gt; }&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var&amp;nbsp;pipelineLayer = new FeatureLayer({&lt;BR /&gt;url: &lt;EM&gt;&amp;lt;URL&amp;gt;&lt;/EM&gt;,&lt;BR /&gt; outFields: ["*"],&lt;BR /&gt; token: accessToken,&lt;BR /&gt; elevationInfo: {&lt;BR /&gt; mode: "relative-to-scene",&lt;BR /&gt; offset: 0&lt;BR /&gt; },&lt;BR /&gt;renderer: pipelineRenderer //pipelineSimpleRenderer&lt;BR /&gt; });&lt;BR /&gt; map.add(&lt;SPAN style="background-color: #f6f6f6;"&gt;pipelineLayer&lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;NOTE:&lt;/STRONG&gt;&lt;/SPAN&gt; I have some other feature layers which I am very well able to view with extrude in renderer and the 3D visualisation works fine, so WebGL rendering on Chrome is not an issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2020 07:24:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374608#M34750</guid>
      <dc:creator>GeorgeAbraham</dc:creator>
      <dc:date>2020-06-10T07:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: 3D SceneView - Feature Layer not visible but getting loaded</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374609#M34751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi George,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some troubleshooting you can do to narrow down the issue:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Are you getting any network error or console errors when the layers are not getting displayed using developer tool?&lt;/LI&gt;&lt;LI&gt;Can you narrow down the issue by testing just the feature layer using following sample app:&lt;BR /&gt;&lt;BR /&gt;&lt;UL&gt;&lt;LI&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/layers-featurelayer/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/layers-featurelayer/index.html"&gt;Intro to FeatureLayer | ArcGIS API for JavaScript 4.15&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Testing both with 2D mapview and 3D sceneview&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2020 17:25:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374609#M34751</guid>
      <dc:creator>KavishGhime</dc:creator>
      <dc:date>2020-06-10T17:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: 3D SceneView - Feature Layer not visible but getting loaded</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374610#M34752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/299123"&gt;Kavish Ghime&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;Sorry for not mentioning in my initial query itself.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;No console/network error other that the Memory violation warnings which I see&lt;/LI&gt;&lt;LI&gt;The Pipeline Feature layer works perfects fine in 2D even in the starter/sample app, but the moment I shift to SceneView, the layer doesn't show up on map. However, the 0?f=pjson&amp;amp;token=&amp;lt;&amp;gt; URL in Network tab - which is the layer URL gets called successfully and no issues. Even port queries work fine.&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2020 19:35:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374610#M34752</guid>
      <dc:creator>GeorgeAbraham</dc:creator>
      <dc:date>2020-06-10T19:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: 3D SceneView - Feature Layer not visible but getting loaded</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374611#M34753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi George,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will check with a sample service from &lt;A href="https://sampleserver6.arcgisonline.com/arcgis/rest/services"&gt;sample server 6&lt;/A&gt; using a sample app for sceneview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the network shows that the layer has been called, then most of the time, it can be the browser cache problem too, in not showing the layer. Can you clear the cache or open the web app in Incognito mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the geometry of your feature layer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2020 20:28:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374611#M34753</guid>
      <dc:creator>KavishGhime</dc:creator>
      <dc:date>2020-06-10T20:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: 3D SceneView - Feature Layer not visible but getting loaded</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374612#M34754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi George,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created this following sample app which narrows down the workflow in displaying a feature layer using scene view:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://jsfiddle.net/0tp4bmoj/"&gt;Sample App&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;I am able to see the sample feature layer and the network also shows the query successfully&lt;/LI&gt;&lt;LI&gt;Could you test your feature layer against this sample app?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2020 20:42:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374612#M34754</guid>
      <dc:creator>KavishGhime</dc:creator>
      <dc:date>2020-06-10T20:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: 3D SceneView - Feature Layer not visible but getting loaded</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374613#M34755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/299123"&gt;Kavish Ghime&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;Pasting below the simplified code which I did try in the sample app (minus the Token and URL)&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&amp;lt;html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;head&amp;gt;&lt;BR /&gt; &amp;lt;meta charset="utf-8" /&amp;gt;&lt;BR /&gt; &amp;lt;meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" /&amp;gt;&lt;BR /&gt; &amp;lt;title&amp;gt;Intro to FeatureLayer - 4.15&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;link rel="stylesheet" href="https://js.arcgis.com/4.15/esri/themes/light/main.css" /&amp;gt;&lt;BR /&gt; &amp;lt;script src="https://js.arcgis.com/4.15/"&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;style&amp;gt;&lt;BR /&gt; html,&lt;BR /&gt; body,&lt;BR /&gt; #viewDiv {&lt;BR /&gt; padding: 0;&lt;BR /&gt; margin: 0;&lt;BR /&gt; height: 100%;&lt;BR /&gt; width: 100%;&lt;BR /&gt; }&lt;BR /&gt; &amp;lt;/style&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script&amp;gt;&lt;BR /&gt; require([&lt;BR /&gt; "esri/Map",&lt;BR /&gt; "esri/views/MapView",&lt;BR /&gt; "esri/layers/FeatureLayer",&lt;BR /&gt; "esri/views/SceneView",&lt;BR /&gt; "esri/identity/IdentityManager",&lt;BR /&gt; ], function(Map, MapView, FeatureLayer, SceneView, IdentityManager) {&lt;BR /&gt; var map = new Map({&lt;BR /&gt; basemap: "hybrid"&lt;BR /&gt; });&lt;BR /&gt; var view = new SceneView({&lt;BR /&gt; container: "viewDiv",&lt;BR /&gt; map: map,&lt;BR /&gt; camera: {&lt;BR /&gt; position: {&lt;BR /&gt; x: -90.02,&lt;BR /&gt; y: 20.745,&lt;BR /&gt; z: 500 // meters&lt;BR /&gt; },&lt;BR /&gt; tilt: 75&lt;BR /&gt; }&lt;BR /&gt; });&lt;BR /&gt; var accessToken = {&lt;BR /&gt; 'server': 'https://&lt;EM&gt;&amp;lt;host&amp;gt;&lt;/EM&gt;/arcgis/rest/services',&lt;BR /&gt; 'token': '&lt;EM&gt;&amp;lt;token&amp;gt;&lt;/EM&gt;',&lt;BR /&gt; };&lt;BR /&gt; IdentityManager.registerToken(accessToken);&lt;BR /&gt; &lt;BR /&gt; var featureLayer = new FeatureLayer({&lt;BR /&gt; url: "https://&lt;EM&gt;&amp;lt;host&amp;gt;&lt;/EM&gt;/arcgis/rest/services/LAND/Pipeline_Routes/FeatureServer/0",&lt;BR /&gt; token: accessToken&lt;BR /&gt; });&lt;BR /&gt; map.add(featureLayer);&lt;BR /&gt; });&lt;BR /&gt; &amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;&lt;BR /&gt; &amp;lt;div id="viewDiv"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Output:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Just the basemap with the camera tilted loads.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="496199" class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/496199_pastedImage_11.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Feature Details:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class="" style="color: #881391;"&gt;geometryType&lt;/SPAN&gt;&lt;SPAN style="color: #212121;"&gt;:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="color: #c41a16;"&gt;&lt;SPAN class="" style="color: #222222;"&gt;"&lt;/SPAN&gt;esriGeometryPolyline&lt;SPAN class="" style="color: #222222;"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;&lt;SPAN class="" style="color: #881391;"&gt;spatialReference&lt;/SPAN&gt;:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;{wkid: 102100, latestWkid: 3857}&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;HasZ: true&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;&lt;SPAN class="" style="color: #000000; background-color: #ffffff; font-size: 14.4px;"&gt;&lt;STRONG&gt;Drawing Info:&amp;nbsp; &amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;EM&gt;Renderer:&lt;/EM&gt;&lt;EM&gt;Simple Renderer:&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Symbol:&lt;/EM&gt;&lt;EM&gt;Style:&lt;SPAN&gt;&amp;nbsp;esriSLSSolid&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Color:&lt;SPAN&gt;&amp;nbsp;[85, 255, 0, 255]&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Width:&lt;SPAN&gt;&amp;nbsp;2&lt;BR /&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;EM&gt;Label:&lt;SPAN&gt;&amp;nbsp;N/A&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Description:&lt;SPAN&gt;&amp;nbsp;N/A&lt;BR /&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;EM&gt;Transparency:&lt;SPAN&gt;&amp;nbsp;0&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Labeling Info:&lt;/EM&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;OL class="" style="color: #212121; padding-left: 12px;"&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I even tried with adding a simple renderer of line-3d, but then the Memory Exception starts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&amp;lt;html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;head&amp;gt;&lt;BR /&gt; &amp;lt;meta charset="utf-8" /&amp;gt;&lt;BR /&gt; &amp;lt;meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" /&amp;gt;&lt;BR /&gt; &amp;lt;title&amp;gt;Intro to FeatureLayer - 4.15&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;link rel="stylesheet" href="https://js.arcgis.com/4.15/esri/themes/light/main.css" /&amp;gt;&lt;BR /&gt; &amp;lt;script src="https://js.arcgis.com/4.15/"&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;style&amp;gt;&lt;BR /&gt; html,&lt;BR /&gt; body,&lt;BR /&gt; #viewDiv {&lt;BR /&gt; padding: 0;&lt;BR /&gt; margin: 0;&lt;BR /&gt; height: 100%;&lt;BR /&gt; width: 100%;&lt;BR /&gt; }&lt;BR /&gt; &amp;lt;/style&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script&amp;gt;&lt;BR /&gt; require([&lt;BR /&gt; "esri/Map",&lt;BR /&gt; "esri/views/MapView",&lt;BR /&gt; "esri/layers/FeatureLayer",&lt;BR /&gt; "esri/views/SceneView",&lt;BR /&gt; "esri/identity/IdentityManager",&lt;BR /&gt; ], function(Map, MapView, FeatureLayer, SceneView, IdentityManager) {&lt;BR /&gt; var map = new Map({&lt;BR /&gt; basemap: "hybrid"&lt;BR /&gt; });&lt;BR /&gt; var view = new SceneView({&lt;BR /&gt; container: "viewDiv",&lt;BR /&gt; map: map,&lt;BR /&gt; camera: {&lt;BR /&gt; position: {&lt;BR /&gt; x: -90.02,&lt;BR /&gt; y: 20.745,&lt;BR /&gt; z: 500 // meters&lt;BR /&gt; },&lt;BR /&gt; tilt: 75&lt;BR /&gt; }&lt;BR /&gt; });&lt;BR /&gt; var accessToken = {&lt;BR /&gt; 'server': 'https://&amp;lt;token&amp;gt;/arcgis/rest/services',&lt;BR /&gt; 'token': '&lt;EM&gt;&amp;lt;token&amp;gt;&lt;/EM&gt;',&lt;BR /&gt; };&lt;BR /&gt; var pipelineSimpleRenderer = {&lt;BR /&gt; type: "simple",&lt;BR /&gt; symbol: {&lt;BR /&gt; type: "line-3d",&lt;BR /&gt; symbolLayers: [{&lt;BR /&gt; type: "path",&lt;BR /&gt; profile: "circle",&lt;BR /&gt; width: 10,&lt;BR /&gt; height: 10,&lt;BR /&gt; material: {&lt;BR /&gt; color: "red"&lt;BR /&gt; },&lt;BR /&gt; join: "miter",&lt;BR /&gt; cap: "round"&lt;BR /&gt; }]&lt;BR /&gt; }&lt;BR /&gt; };&lt;BR /&gt; IdentityManager.registerToken(accessToken);&lt;BR /&gt; var featureLayer = new FeatureLayer({&lt;BR /&gt; url: "https://&lt;EM&gt;&amp;lt;host&amp;gt;&lt;/EM&gt;/arcgis/rest/services/LAND/Pipeline_Routes/FeatureServer/0",&lt;BR /&gt; token: accessToken,&lt;BR /&gt; elevationInfo: {&lt;BR /&gt; mode: "relative-to-scene",&lt;BR /&gt; offset: 0&lt;BR /&gt; },&lt;BR /&gt; renderer: pipelineSimpleRenderer&lt;BR /&gt; });&lt;BR /&gt; map.add(featureLayer);&lt;BR /&gt; });&lt;BR /&gt; &amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;&lt;BR /&gt; &amp;lt;div id="viewDiv"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Output:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Memory warnings:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="496198" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/496198_pastedImage_10.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Label from Pipeline coming up but not pipeline:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;&lt;IMG __jive_id="496197" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/496197_pastedImage_9.png" /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2020 04:30:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374613#M34755</guid>
      <dc:creator>GeorgeAbraham</dc:creator>
      <dc:date>2020-06-11T04:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: 3D SceneView - Feature Layer not visible but getting loaded</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374614#M34756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/3101"&gt;Robert Scheitlin, GISP&lt;/A&gt;&amp;nbsp;/ &lt;A href="https://community.esri.com/migrated-users/3856"&gt;Ken Buja&lt;/A&gt;/ &lt;A href="https://community.esri.com/migrated-users/248861"&gt;Raluca Nicola&lt;/A&gt;&amp;nbsp;- anything any of you could help here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jun 2020 08:18:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374614#M34756</guid>
      <dc:creator>GeorgeAbraham</dc:creator>
      <dc:date>2020-06-12T08:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: 3D SceneView - Feature Layer not visible but getting loaded</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374615#M34757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;Anyone has any idea what could be the issue for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2020 05:01:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374615#M34757</guid>
      <dc:creator>GeorgeAbraham</dc:creator>
      <dc:date>2020-06-16T05:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: 3D SceneView - Feature Layer not visible but getting loaded</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374616#M34758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the vertical reference of your feature layer, and the ground elevation of the Scene. I often get point cloud feature layers that don't show up due to vertical reference. In Scene viewer you can add an Offset in the layer style, and/or configure the ground to have no color and choose No basemap in the basemap gallery -- then you'll see if your layer is drawing below ground.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2020 17:26:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374616#M34758</guid>
      <dc:creator>CarolSousa</dc:creator>
      <dc:date>2020-06-16T17:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: 3D SceneView - Feature Layer not visible but getting loaded</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374617#M34759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/4062"&gt;Carol Sousa&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Offset/Elevation was indeed the issue - though I had tried initially with "relative-to-scene" but had to change it to "on-the-ground" and it started working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2020 19:33:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/3d-sceneview-feature-layer-not-visible-but-getting/m-p/374617#M34759</guid>
      <dc:creator>GeorgeAbraham</dc:creator>
      <dc:date>2020-06-17T19:33:32Z</dc:date>
    </item>
  </channel>
</rss>

