<?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: How to Set the rotation info on the stream service using the renderer in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565662#M52803</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kristian,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Now, I am using latest release of ArcGIS api for javascript 4.0.Using the above rotation code I have achieved the rotation of the features of the stream service in 2D view.But I failed to achieve this on the scene view.Please guide me in this regard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 May 2016 04:55:01 GMT</pubDate>
    <dc:creator>kishorekumar1</dc:creator>
    <dc:date>2016-05-10T04:55:01Z</dc:date>
    <item>
      <title>How to Set the rotation info on the stream service using the renderer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565659#M52800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have a stream service which has a particular field which represents the angle(heading) of the feature. Now, I want to use that field values as the rotation angle for all the stream service features using the renderer. In 3.15 javascript version there is a method setRotationInfo() in Class SimpleRederer but this method is missing in 4.0 JavaScript beta. So, how can I set the rotation info for the renderer so that it can be levied on the stream service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kishore Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Apr 2016 10:33:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565659#M52800</guid>
      <dc:creator>kishorekumar1</dc:creator>
      <dc:date>2016-04-13T10:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the rotation info on the stream service using the renderer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565660#M52801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe this isn't available yet in the 4.0 API beta. By digging around the objects, the Rotation Info object is still present in the renderer as it was before, but isn't documented and probably isn't implemented or ready for prime-time. It should show up in one of the future releases, keep an eye on our blog for when it does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SMALL&gt;(Disclaimer, I don't work for the API team)&lt;/SMALL&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 21:32:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565660#M52801</guid>
      <dc:creator>DavidBlanchard</dc:creator>
      <dc:date>2016-04-14T21:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the rotation info on the stream service using the renderer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565661#M52802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The rotation visual variable will be available in 4.0 final so you should be able to do something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var rotRenderer = new SimpleRenderer({
&amp;nbsp; symbol: picSym,
&amp;nbsp; visualVariables: [{
&amp;nbsp;&amp;nbsp;&amp;nbsp; type: "rotation",
&amp;nbsp;&amp;nbsp;&amp;nbsp; field: "heading",
&amp;nbsp;&amp;nbsp;&amp;nbsp; rotationType: "geographic"
&amp;nbsp; }]
});

var streamLayer = new StreamLayer({
&amp;nbsp; url: svcUrl,
&amp;nbsp; renderer: rotRenderer,
});&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:22:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565661#M52802</guid>
      <dc:creator>KristianEkenes</dc:creator>
      <dc:date>2021-12-12T00:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the rotation info on the stream service using the renderer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565662#M52803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kristian,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Now, I am using latest release of ArcGIS api for javascript 4.0.Using the above rotation code I have achieved the rotation of the features of the stream service in 2D view.But I failed to achieve this on the scene view.Please guide me in this regard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2016 04:55:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565662#M52803</guid>
      <dc:creator>kishorekumar1</dc:creator>
      <dc:date>2016-05-10T04:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the rotation info on the stream service using the renderer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565663#M52804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rotation is not supported in SceneView for 4.0. We're discussing plans for support in a future release.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2016 18:17:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565663#M52804</guid>
      <dc:creator>KristianEkenes</dc:creator>
      <dc:date>2016-05-10T18:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the rotation info on the stream service using the renderer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565664#M52805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is this supported in current version. If yes, please help me with code snippet how to achieve rotation in Scene View for Stream Service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to rotate picture marker symbol for Stream Service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Nov 2017 11:43:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565664#M52805</guid>
      <dc:creator>KrishV</dc:creator>
      <dc:date>2017-11-22T11:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the rotation info on the stream service using the renderer</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565665#M52806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SceneView supports rotation if&amp;nbsp;a symbol contains an&amp;nbsp;ObjectSymbol3DLayer is used, so PictureMarkerSymbols aren't supported. The documentation states the following limitations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background-color: #f8f8f8;"&gt;In a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-SceneView.html" style="color: #0079c1; background-color: #f8f8f8; text-decoration: none;"&gt;SceneView&lt;/A&gt;&lt;SPAN style="color: #4c4c4c; background-color: #f8f8f8;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;rotation visual variables are not supported with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-MarkerSymbol.html" style="color: #0079c1; background-color: #f8f8f8; text-decoration: none;"&gt;marker symbols&lt;/A&gt;&lt;SPAN style="color: #4c4c4c; background-color: #f8f8f8;"&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-TextSymbol.html" style="color: #0079c1; background-color: #f8f8f8; text-decoration: none;"&gt;text symbols&lt;/A&gt;&lt;SPAN style="color: #4c4c4c; background-color: #f8f8f8;"&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-IconSymbol3DLayer.html" style="color: #0079c1; background-color: #f8f8f8; text-decoration: none;"&gt;3D icon symbol layers&lt;/A&gt;&lt;SPAN style="color: #4c4c4c; background-color: #f8f8f8;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-TextSymbol3DLayer.html" style="color: #0079c1; background-color: #f8f8f8; text-decoration: none;"&gt;3D text symbol layers&lt;/A&gt;&lt;SPAN style="color: #4c4c4c; background-color: #f8f8f8;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background-color: #f8f8f8;"&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-Renderer.html#RotationVisualVariable" title="https://developers.arcgis.com/javascript/latest/api-reference/esri-renderers-Renderer.html#RotationVisualVariable"&gt;Renderer | API Reference | ArcGIS API for JavaScript 4.5&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2017 20:38:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-set-the-rotation-info-on-the-stream-service/m-p/565665#M52806</guid>
      <dc:creator>KristianEkenes</dc:creator>
      <dc:date>2017-11-28T20:38:08Z</dc:date>
    </item>
  </channel>
</rss>

