<?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: SimpleMarkerSymbole path on SceneView in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1015176#M71333</link>
    <description>&lt;P&gt;Sorry to bother you with one more question.&lt;/P&gt;&lt;P&gt;Unless I'm just overlooking it (completely possible), I can't seem to find an angle property to rotate the symbol. I could transform it in the svg, but a simple angle would be easier.&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;</description>
    <pubDate>Fri, 08 Jan 2021 19:24:40 GMT</pubDate>
    <dc:creator>AaronWD</dc:creator>
    <dc:date>2021-01-08T19:24:40Z</dc:date>
    <item>
      <title>SimpleMarkerSymbole path on SceneView</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1014812#M71323</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Currently I have a SimpleMarkerSymbol that uses an SVG path to draw a symbol on a map view.&lt;/P&gt;&lt;P&gt;I am currently trying to transition to a SceneView but am having some difficulty with this.&lt;/P&gt;&lt;P&gt;Simply moving my existing code over doesn't work as I receive the warning "&lt;SPAN class="message-body-wrapper"&gt;&lt;SPAN class="message-flex-body"&gt;&lt;SPAN class="message-body devtools-monospace"&gt;&lt;SPAN class="objectBox objectBox-string"&gt;[esri.symbols.IconSymbol3DLayer]&lt;/SPAN&gt; &lt;SPAN class="objectBox objectBox-string"&gt;path cannot be mapped to Icon symbol. Fallback to "circle"".&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I've looked through the documentation but am having some difficulty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could someone point me in the right direction to achieve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Aaron&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2021 19:48:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1014812#M71323</guid>
      <dc:creator>AaronWD</dc:creator>
      <dc:date>2021-01-07T19:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbole path on SceneView</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1014815#M71324</link>
      <description>&lt;P&gt;Have you tried passing an href to your SVG ?&lt;/P&gt;&lt;P&gt;See&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-IconSymbol3DLayer.html#resource" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-IconSymbol3DLayer.html#resource&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2021 19:55:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1014815#M71324</guid>
      <dc:creator>VictorBerchet</dc:creator>
      <dc:date>2021-01-07T19:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbole path on SceneView</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1015159#M71328</link>
      <description>&lt;P&gt;I have, but with no luck so far.&lt;/P&gt;&lt;P&gt;for reference, here is the code that defines my symbol, along with what's in the svg.&lt;/P&gt;&lt;P&gt;Any thoughts as to what I'm doing wrong?&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var iconSymbol = {
	type: "point-3d",
	symbolLayers: [
		{
			type: "icon",
			size: 12,
			resource: {
				href: "Images/test.svg"
			},
			material: {
				color: "green"
			},
			outline: {
				color: "white",
				size: 1
			}
		}
	]
};

&amp;lt;svg height="210" width="400"&amp;gt;
  &amp;lt;path d="M150 0 L75 200 L225 200 Z" /&amp;gt;
&amp;lt;/svg&amp;gt; &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2021 18:51:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1015159#M71328</guid>
      <dc:creator>AaronWD</dc:creator>
      <dc:date>2021-01-08T18:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbole path on SceneView</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1015165#M71330</link>
      <description>&lt;P&gt;I got it. It had to do with the formatting of my svg file.&lt;/P&gt;&lt;P&gt;I didn't realize some of the header information was necessary.&lt;/P&gt;&lt;P&gt;Thanks again for the help.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2021 19:05:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1015165#M71330</guid>
      <dc:creator>AaronWD</dc:creator>
      <dc:date>2021-01-08T19:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbole path on SceneView</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1015167#M71331</link>
      <description>&lt;P&gt;It's working for me in this &lt;A href="https://codepen.io/vicb-the-lessful/pen/NWRBvxN?editors=1000" target="_self"&gt;CodePen.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;(I have inlined the SVG using a data url)&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2021 19:05:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1015167#M71331</guid>
      <dc:creator>VictorBerchet</dc:creator>
      <dc:date>2021-01-08T19:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbole path on SceneView</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1015176#M71333</link>
      <description>&lt;P&gt;Sorry to bother you with one more question.&lt;/P&gt;&lt;P&gt;Unless I'm just overlooking it (completely possible), I can't seem to find an angle property to rotate the symbol. I could transform it in the svg, but a simple angle would be easier.&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2021 19:24:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1015176#M71333</guid>
      <dc:creator>AaronWD</dc:creator>
      <dc:date>2021-01-08T19:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: SimpleMarkerSymbole path on SceneView</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1015197#M71335</link>
      <description>&lt;P&gt;The API does not seem to allow rotating an&amp;nbsp;IconSymbol3DLayer (maybe you can enter a feature request - this should be possible to implement using CSS transforms).&lt;/P&gt;&lt;P&gt;For now what you could do is to &lt;A href="https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/transform" target="_self"&gt;transform the SVG&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;An other possibility is to use a 3d model. &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-ObjectSymbol3DLayer.html#properties-summary" target="_self"&gt;ObjectSymbol3dLayer&lt;/A&gt; has tilt, roll and heading to rotate the model in 3d.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2021 20:23:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/simplemarkersymbole-path-on-sceneview/m-p/1015197#M71335</guid>
      <dc:creator>VictorBerchet</dc:creator>
      <dc:date>2021-01-08T20:23:57Z</dc:date>
    </item>
  </channel>
</rss>

