<?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: FontAwesome in SceneView in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/fontawesome-in-sceneview/m-p/1237653#M79548</link>
    <description>&lt;P&gt;Thank you for your response, this is helpful.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Insofar as using a FA icon on the map as an icon (not in a label), I assume this would be done with an &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-IconSymbol3DLayer.html#resource" target="_self"&gt;IconSymbol3DLayer&lt;/A&gt; and an external resource pointing to a hosted SVG?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Dec 2022 00:44:09 GMT</pubDate>
    <dc:creator>quooston</dc:creator>
    <dc:date>2022-12-05T00:44:09Z</dc:date>
    <item>
      <title>FontAwesome in SceneView</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/fontawesome-in-sceneview/m-p/1236706#M79514</link>
      <description>&lt;P&gt;It would be good if someone posted a modern working example of using FontAwesome in a SceneView that actually works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's so common to use FontAwesome and when we're embedding maps into apps that can use FA it would be very nice to easily know how to place FA icons into a map and also for labels.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 07:04:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/fontawesome-in-sceneview/m-p/1236706#M79514</guid>
      <dc:creator>quooston</dc:creator>
      <dc:date>2022-12-01T07:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: FontAwesome in SceneView</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/fontawesome-in-sceneview/m-p/1237540#M79542</link>
      <description>&lt;P&gt;Try this:&amp;nbsp;&lt;A href="https://codepen.io/arnofiva/pen/ExRONxX" target="_blank" rel="noopener"&gt;https://codepen.io/arnofiva/pen/ExRONxX&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It's based on the online documentation, showing how to load and use fonts in label:&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/labeling/#fonts-for-sceneview" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/javascript/latest/labeling/#fonts-for-sceneview&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CSS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf")
    format("truetype");
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;JavaScript&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;labelingInfo = [{
  labelPlacement: "above-center",
  labelExpressionInfo: {
    expression: `"\uf024 " + $feature.NAME`
  },
  symbol: {
    type: "label-3d",
    symbolLayers: [
      {
        type: "text",
        material: {
          color: "black"
        },
        font: {
          family: "FontAwesome, Avenir Next",
          weight: "bold"
        },
        size: 10
      }
    ]}
}];&lt;/LI-CODE&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="Screenshot 2022-12-03 at 11.22.21 AM.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/57592i302788DEF6ECC7B8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-12-03 at 11.22.21 AM.png" alt="Screenshot 2022-12-03 at 11.22.21 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2022 10:40:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/fontawesome-in-sceneview/m-p/1237540#M79542</guid>
      <dc:creator>ArnoFiva</dc:creator>
      <dc:date>2022-12-03T10:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: FontAwesome in SceneView</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/fontawesome-in-sceneview/m-p/1237653#M79548</link>
      <description>&lt;P&gt;Thank you for your response, this is helpful.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Insofar as using a FA icon on the map as an icon (not in a label), I assume this would be done with an &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-symbols-IconSymbol3DLayer.html#resource" target="_self"&gt;IconSymbol3DLayer&lt;/A&gt; and an external resource pointing to a hosted SVG?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 00:44:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/fontawesome-in-sceneview/m-p/1237653#M79548</guid>
      <dc:creator>quooston</dc:creator>
      <dc:date>2022-12-05T00:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: FontAwesome in SceneView</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/fontawesome-in-sceneview/m-p/1237709#M79553</link>
      <description>&lt;P&gt;I don't have a running example of that but yes, if you can extract an SVG, IconSymbol3DLayer should be able to render it.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 11:13:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/fontawesome-in-sceneview/m-p/1237709#M79553</guid>
      <dc:creator>ArnoFiva</dc:creator>
      <dc:date>2022-12-05T11:13:29Z</dc:date>
    </item>
  </channel>
</rss>

