<?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: Labels display but Symbology doesn't in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319903#M3771</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the full analysis and interim workaround please see the comment in this thread:&amp;nbsp;&lt;A _jive_internal="true" href="https://community.esri.com/thread/235365-feature-layer-not-displaying-in-explorer-app-but-displays-in-ago#comment-862229"&gt;https://community.esri.com/thread/235365-feature-layer-not-displaying-in-explorer-app-but-displays-in-ago#comment-862229&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Jul 2019 22:45:45 GMT</pubDate>
    <dc:creator>MichaelBranscomb</dc:creator>
    <dc:date>2019-07-08T22:45:45Z</dc:date>
    <item>
      <title>Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319896#M3764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to add and view a single feature layer from our service with the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="font-size: 11px;"&gt;_viewModel.AddLayerFromUrl(&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; "http://orbittest.miner.com:6080/arcgis/rest/services/GRU_ElectricDistribution/MapServer/1", "Support Structure");&lt;/SPAN&gt;

&lt;SPAN style="font-size: 11px;"&gt;_viewModel.AddLayerFromUrl(&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; "http://orbittest.miner.com:6080/arcgis/rest/services/GRU_ElectricDistribution/MapServer/15", "Lines");&lt;/SPAN&gt;

&lt;SPAN style="font-size: 11px;"&gt;public void AddLayerFromUrl(string layerUrl, string name)&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; {&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; var layer = new FeatureLayer(new Uri(layerUrl))&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; {&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; Id = name,&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; Name = name,&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; IsVisible = true,&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; ScaleSymbols = false&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; };&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; Map.OperationalLayers.Add(layer);&lt;/SPAN&gt;
&lt;SPAN style="font-size: 11px;"&gt; }&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The "Lines" layer displays fine in the map.&amp;nbsp; The "Support Structure" labels appear, but the actual symbols / graphics do not.&amp;nbsp; I have tried with ScaleSymbols set to true and false.&amp;nbsp; I am using 100.5.&amp;nbsp; I have reproduced this in the Sample App WPF provided by Esri.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See attached screenshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also attached the json for the troublesome layer.&amp;nbsp; Note that there are multiple layers on this service that demonstrate this behavior.&amp;nbsp; I also attached the .json for Anchor Guy which is a simple layer that reproduces the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:20:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319896#M3764</guid>
      <dc:creator>DarleneRouleau</dc:creator>
      <dc:date>2021-12-12T16:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319897#M3765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dariene,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please try to use ServiceFeaturetable.&lt;SPAN class=""&gt;UseAdvancedSymbology property and set to "false". I have seen few issues have been reported and adding that property makes symbology appears.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;A href="https://developers.arcgis.com/net/latest/wpf/api-reference/html/P_Esri_ArcGISRuntime_Data_ArcGISFeatureTable_UseAdvancedSymbology.htm"&gt;https://developers.arcgis.com/net/latest/wpf/api-reference/html/P_Esri_ArcGISRuntime_Data_ArcGISFeatureTable_UseAdvancedSymbology.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By default this property is true and this is applicable if you use only ArcGIS Pro Symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/net/latest/android/guide/symbol-types-described.htm"&gt;https://developers.arcgis.com/net/latest/android/guide/symbol-types-described.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jun 2019 15:53:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319897#M3765</guid>
      <dc:creator>NagmaYasmin</dc:creator>
      <dc:date>2019-06-26T15:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319898#M3766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&amp;nbsp; That fixed our specific issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, how do I know, as a client app developer with my app distributed to various organizations if this should be set to true or false?&amp;nbsp; For example, organization A does use ArcGIS Pro Symbology and organization B does not use ArcGIS Pro Symbology - if I hardcode this value to false then what happens to organization A?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jun 2019 17:57:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319898#M3766</guid>
      <dc:creator>DarleneRouleau</dc:creator>
      <dc:date>2019-06-26T17:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319899#M3767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Darlene,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just so you know, this is just a workaround and we are aware of this issue. The development team is looking at this. The issue may be related with recent Windows update, but not sure at this moment. I will keep you posted to this thread what I find. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jun 2019 18:14:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319899#M3767</guid>
      <dc:creator>NagmaYasmin</dc:creator>
      <dc:date>2019-06-26T18:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319900#M3768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a bug number I should follow to know the final resolution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jun 2019 17:03:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319900#M3768</guid>
      <dc:creator>DarleneRouleau</dc:creator>
      <dc:date>2019-06-28T17:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319901#M3769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Darlene,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still working on this with other resources and definitely let you know as soon as I have any update. Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jun 2019 18:22:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319901#M3769</guid>
      <dc:creator>NagmaYasmin</dc:creator>
      <dc:date>2019-06-28T18:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319902#M3770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Be aware that some of our clients have started seeing the same issue. We'll likely ship this workaround to them as a temporary hot-fix. But, we'll be very interested in the version of Runtime that has the full fix.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jul 2019 22:40:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319902#M3770</guid>
      <dc:creator>JeremyBridges</dc:creator>
      <dc:date>2019-07-08T22:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319903#M3771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the full analysis and interim workaround please see the comment in this thread:&amp;nbsp;&lt;A _jive_internal="true" href="https://community.esri.com/thread/235365-feature-layer-not-displaying-in-explorer-app-but-displays-in-ago#comment-862229"&gt;https://community.esri.com/thread/235365-feature-layer-not-displaying-in-explorer-app-but-displays-in-ago#comment-862229&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jul 2019 22:45:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319903#M3771</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2019-07-08T22:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319904#M3772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for pointing that out. Unfortunately, we also see the behavior in iOS when using the Xamarin.Forms Runtime. Any thoughts for our next steps there? We've put in place the workaround, but don't know when we can remove it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jul 2019 23:02:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319904#M3772</guid>
      <dc:creator>JeremyBridges</dc:creator>
      <dc:date>2019-07-08T23:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319905#M3773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jeremy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We're working closely with Microsoft to resolve this issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The current recommended workaround documented in the other thread is to remove the listed Windows Updates (KBs) from Windows servers that host services consumed by Runtime applications or Windows desktops where ArcMap is used to generate Runtime Content.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jul 2019 23:21:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319905#M3773</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2019-07-08T23:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319906#M3774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, but Xamarin.Forms Runtime wouldn't involve the Windows OS when the iOS app is running. And, the app is built on a Mac. I want to be sure this bit of evidence makes it into your case. It appears to us that something more is going on here that doesn't just involve Windows or a KB that was installed there. Does the dev teams at esri have a theory for the symptoms we are seeing in iOS?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jul 2019 06:09:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319906#M3774</guid>
      <dc:creator>JeremyBridges</dc:creator>
      <dc:date>2019-07-09T06:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319907#M3775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The underlying issue is actually on the server-side when&amp;nbsp;responding to the client API requests or on the desktop when creating Runtime Content - in both cases the CIM JSON symbol generation is failing&amp;nbsp;which results&amp;nbsp;in a valid symbol definition (color, size, etc) but no symbol geometry to render.&amp;nbsp;Setting UseAdvancedSymbology to false&amp;nbsp;on the ServiceFeatureTable bypasses he server-side symbol&amp;nbsp;generation/vectorization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe that explains what you're seeing on iOS?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2019 15:48:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319907#M3775</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2019-07-10T15:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Labels display but Symbology doesn't</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319908#M3776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the latest information on this issue please see&amp;nbsp;&lt;A _jive_internal="true" href="https://community.esri.com/thread/235365-feature-layer-not-displaying-in-explorer-app-but-displays-in-ago"&gt;https://community.esri.com/thread/235365-feature-layer-not-displaying-in-explorer-app-but-displays-in-ago&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2019 16:08:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/labels-display-but-symbology-doesn-t/m-p/319908#M3776</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2019-07-10T16:08:24Z</dc:date>
    </item>
  </channel>
</rss>

