<?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: Change Character Marker Symbol at runtime with SDK for .Net in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460112#M5680</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px;"&gt;You only answered to one of my questions. Could you please verify the sample about TextSymbol and UniqueValueRenderer that I posted on January the 7th and come back to me ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Jan 2015 13:59:42 GMT</pubDate>
    <dc:creator>LaurentSIBILLE</dc:creator>
    <dc:date>2015-01-16T13:59:42Z</dc:date>
    <item>
      <title>Change Character Marker Symbol at runtime with SDK for .Net</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460106#M5674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are modifying symbology at runtime with the .net SDK for a DynamicLayer using a unique values Symbology. I get informations on the renderer with this code :&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white;"&gt;Dim&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black; background: white;"&gt; layerDescr = &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white;"&gt;DirectCast&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black; background: white;"&gt;(layer.Value, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: #2b91af; background: white;"&gt;FeatureServiceLayerInfo&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black; background: white;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white;"&gt;Dim&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black; background: white;"&gt; renderer = &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white;"&gt;DirectCast&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black; background: white;"&gt;(layer.Value.DrawingInfo.Renderer, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: #2b91af; background: white;"&gt;UniqueValueRenderer&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: #2b91af;"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white;"&gt;Dim&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black; background: white;"&gt; valueInfo as UniqueValueInfo = renderer.Infos.SingleOrDefault(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white;"&gt;Function&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black; background: white;"&gt;&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/info.png" /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: blue; background: white;"&gt;CStr&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black; background: white;"&gt;(i.Values(0)) = item.Libelle)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black; background: white;"&gt;And modify the symbol on the UniqueValueInfo object :&lt;/SPAN&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black; background: white;"&gt;valueInfo.Symbol = &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; font-family: Consolas; color: black;"&gt;newSymbol&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works if Simple Marker Symbols&amp;nbsp; are defined in ArcMap for the symbology, I can change properties (color, style…) and see changes on the map after renderer modification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if I define a Character Marker Symbol in ArcMap, the type of the Symbol return by the SDK is PictureMarkerSymbol. So I’am not able to change Font or Text for a symbol. Is this normal ? I was expecting a TextSymbol in place of PictureMarkerSymbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Furthermore,&amp;nbsp; if I create a TextSymbol dynamically and affect it to the renderer the points are not rendered on the map any more, is this type of symbol is supposed to be handled by the .net SDK ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you answer,&lt;/P&gt;&lt;P&gt;Best Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 11:22:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460106#M5674</guid>
      <dc:creator>LaurentSIBILLE</dc:creator>
      <dc:date>2015-01-06T11:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Change Character Marker Symbol at runtime with SDK for .Net</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460107#M5675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How are Character Marker Symbol defined in the FeatureService JSON after you publish it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text symbols should work, i suppose that you have already checked the &lt;A href="https://github.com/Esri/arcgis-runtime-samples-dotnet/blob/master/src/Desktop/ArcGISRuntimeSDKDotNet_DesktopSamples/Samples/Symbology/TextSymbols.xaml.cs"&gt;sample&lt;/A&gt;. Can you create a simple reproducer for me to test the functionality?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 11:46:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460107#M5675</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2015-01-06T11:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Change Character Marker Symbol at runtime with SDK for .Net</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460108#M5676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;I checked with JSON format and the symbol is also returned as an image if Character Marker Symbol is defined in ArcMap :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;"uniqueValueInfos": [&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "symbol": {&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "type": "esriPMS",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "url": "d171442e3fd737565627f5cfcb68b286",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "imageData": "iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IB2cksfwAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAJJJREFUGJVtj7EOAVEURI/kyU287ipFlFrFFhqFP/CzGh+g2gQfoFdwuxdmkWhsrDDtmZzMJD6ZmtkQGEjaA2eABPTMbCnpKGkL4O4VMIqIQwJWktZA06oiogbGZrZIZnaR1PCbEzBJOeerpD5w71IzqyTVKSJ27j57a786wC0Bj1KKu/u8S0spz/YFkjaS/syAFwMaQEyBPFrsAAAAAElFTkSuQmCC",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "contentType": "image/png",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "width": 6,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "height": 6,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "angle": 0,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "xoffset": 0,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "yoffset": 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; },&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "value": "Armoire EP",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "label": "Armoire EP",&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; "description": ""&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt; },&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the TextSymbol :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effectively, I saw the sample using TextSymbol and it works when the TextSymbol is added on the graphicsOverlay but it doesn’t in my case when the TextSymbol replace the symbol in a UniqueValueInfo. I’ll try to create a sample.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 13:59:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460108#M5676</guid>
      <dc:creator>LaurentSIBILLE</dc:creator>
      <dc:date>2015-01-06T13:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Change Character Marker Symbol at runtime with SDK for .Net</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460109#M5677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The server converts these to picture marker symbol, because there isn't a guarantee the client supports the particular font or style options.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 18:10:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460109#M5677</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2015-01-06T18:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Change Character Marker Symbol at runtime with SDK for .Net</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460110#M5678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I made a sample based on ArcGISRuntime.Toolkit.Samples. I changed the Dynamic Legend sample (samples\WinDesktop\ArcGISRuntime.Toolkit.Samples\Legend\LegendByScaleSample.xaml.cs).&lt;/P&gt;&lt;P&gt;In order to reproduce, choose Toolkit / Legend / Dynamic Legend in Menu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After loading :&lt;/P&gt;&lt;P&gt;If you click&amp;nbsp; on Change Renderer With SimpleMarkerSymbol, Circle Symbols are replaced with red square Symbols after map refresh.&lt;/P&gt;&lt;P&gt;If you click on Change Renderer with TextSymbol, you can repoduce the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NB : It works when the same TextSymbol is added on GraphicsOverlays after a click on the map.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2015 08:46:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460110#M5678</guid>
      <dc:creator>LaurentSIBILLE</dc:creator>
      <dc:date>2015-01-07T08:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: Change Character Marker Symbol at runtime with SDK for .Net</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460111#M5679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, Thanks for your answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2015 08:49:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460111#M5679</guid>
      <dc:creator>LaurentSIBILLE</dc:creator>
      <dc:date>2015-01-07T08:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Change Character Marker Symbol at runtime with SDK for .Net</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460112#M5680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px;"&gt;You only answered to one of my questions. Could you please verify the sample about TextSymbol and UniqueValueRenderer that I posted on January the 7th and come back to me ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 13px;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jan 2015 13:59:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460112#M5680</guid>
      <dc:creator>LaurentSIBILLE</dc:creator>
      <dc:date>2015-01-16T13:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Change Character Marker Symbol at runtime with SDK for .Net</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460113#M5681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: arial, sans-serif; color: #222222;"&gt;You only answered to one of my questions. Could you please verify the sample about TextSymbol and UniqueValueRenderer that I posted on January the 7th and come back to me ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: arial, sans-serif; color: #222222;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 09:08:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/change-character-marker-symbol-at-runtime-with-sdk/m-p/460113#M5681</guid>
      <dc:creator>LaurentSIBILLE</dc:creator>
      <dc:date>2015-01-21T09:08:28Z</dc:date>
    </item>
  </channel>
</rss>

