<?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 use an image as Feature style? in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/how-use-an-image-as-feature-style/m-p/555271#M6812</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Only FeatureCollectionTables supports per-feature symbology:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;myTable.SetSymbolOverride(feature, symbol);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just be aware that creating individual picture marker symbols for each feature could use up a significant amount of texture memory on your GPU and exhaust its resources, so don't do this for 1000s of features.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jan 2018 19:51:21 GMT</pubDate>
    <dc:creator>dotMorten_esri</dc:creator>
    <dc:date>2018-01-10T19:51:21Z</dc:date>
    <item>
      <title>How use an image as Feature style?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-use-an-image-as-feature-style/m-p/555270#M6811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In arcgis online I can change the symbol for all the features in the layer to be a png image.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://i.stack.imgur.com/CeQVD.png" style="width: 620px; height: 250px;" /&gt;&lt;/P&gt;&lt;P&gt;But I want every feature be a different symbol. Most like it the picture in user profile. So I will have the image url from the user information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see In this example &lt;A href="https://developers.arcgis.com/net/latest/uwp/guide/symbols-and-renderers.htm" title="https://developers.arcgis.com/net/latest/uwp/guide/symbols-and-renderers.htm"&gt;Symbols and renderers—ArcGIS Runtime SDK for .NET | ArcGIS for Developers&lt;/A&gt;&amp;nbsp; you can create a pictureMarkerSym then use it to create a Graphic and add it to an Overlays.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;SPAN class="" style="color: #aa0d91;"&gt;&amp;nbsp; &amp;nbsp; var&lt;/SPAN&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt; graphic = &lt;/SPAN&gt;&lt;SPAN class="" style="color: #aa0d91;"&gt;new&lt;/SPAN&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt; Graphic(location, pictureMarkerSym); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;&amp;nbsp; &amp;nbsp; MyMapView.GraphicsOverlays[&lt;/SPAN&gt;&lt;SPAN class="" style="color: #1c00cf;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;].Graphics.Add(graphic);&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;But right now I only have a FeatureLayer?&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P style="border: 0px;"&gt;var attributes = new Dictionary&amp;lt;string, object&amp;gt;&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; { "worker_id", 3 },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; { "x_lat", -66.88 },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; { "y_long", 10.55 },&lt;BR /&gt;&amp;nbsp; &amp;nbsp; { "time", "2017-12-24 18:00:00" }&lt;BR /&gt;};&lt;/P&gt;&lt;P style="border: 0px;"&gt;MapPoint structureLocation = new MapPoint(-66.88, 10.55);&lt;/P&gt;&lt;P style="border: 0px;"&gt;// create a new feature in the damage table, pass in the attributes and geometry&lt;BR /&gt;Feature newFeature = tblWorkers.CreateFeature(attributes, structureLocation);&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Do I need create an extra Overlay Layer to show the symbol of each feature? Or I can change the Feature symbol as in ArcGis Online?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2018 19:00:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-use-an-image-as-feature-style/m-p/555270#M6811</guid>
      <dc:creator>JuanOropeza</dc:creator>
      <dc:date>2018-01-10T19:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: How use an image as Feature style?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-use-an-image-as-feature-style/m-p/555271#M6812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Only FeatureCollectionTables supports per-feature symbology:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;myTable.SetSymbolOverride(feature, symbol);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just be aware that creating individual picture marker symbols for each feature could use up a significant amount of texture memory on your GPU and exhaust its resources, so don't do this for 1000s of features.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2018 19:51:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-use-an-image-as-feature-style/m-p/555271#M6812</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2018-01-10T19:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: How use an image as Feature style?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-use-an-image-as-feature-style/m-p/555272#M6813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, that layer have very few feature. I will check it out. Please if you can take a look again to my previous question. Still have problem with adding the features.&amp;nbsp;&lt;A href="https://community.esri.com/message/740729-re-how-add-style-to-the-new-feature-on-a-servicefeaturetable"&gt;https://community.esri.com/message/740729-re-how-add-style-to-the-new-feature-on-a-servicefeaturetable&lt;/A&gt;&amp;nbsp; Still not sure if is a problem with style or georeferencing the new feature.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2018 23:25:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-use-an-image-as-feature-style/m-p/555272#M6813</guid>
      <dc:creator>JuanOropeza</dc:creator>
      <dc:date>2018-01-10T23:25:40Z</dc:date>
    </item>
  </channel>
</rss>

