<?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: CompositeSymbol don't display on ArcGISMapImageSublayer in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/compositesymbol-don-t-display-on/m-p/60937#M660</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Feature layers are rendered client side so that is why it works. So are feature layers linked to tables in a local Runtime Geodatabase, so you can use that too.&lt;/P&gt;&lt;P&gt;File Geodatabases needs to be converted to runtime geodatabases, and then you'll be able to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Jul 2017 15:52:00 GMT</pubDate>
    <dc:creator>dotMorten_esri</dc:creator>
    <dc:date>2017-07-31T15:52:00Z</dc:date>
    <item>
      <title>CompositeSymbol don't display on ArcGISMapImageSublayer</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/compositesymbol-don-t-display-on/m-p/60934#M657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I Add a FileGeodatabase in the localserver,then i display it on map&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;String mapServiceURL = _emptyMpkPath;&lt;BR /&gt; LocalMapService localMapService = new LocalMapService(mapServiceURL);&lt;/P&gt;&lt;P&gt;//create a gdb workspace&lt;BR /&gt; FileGeodatabaseWorkspace geodatabaseWorkspace = new FileGeodatabaseWorkspace(uniqueId, directoryPath);&lt;/P&gt;&lt;P&gt;// add the dynamic workspace to the localMapService&lt;/P&gt;&lt;P&gt;localMapService.SetDynamicWorkspaces(new DynamicWorkspace[] { geodatabaseWorkspace });&lt;/P&gt;&lt;P&gt;await localMapService.StartAsync();&lt;/P&gt;&lt;P&gt;// create a layersource that represents the actual gdb on disk&lt;BR /&gt; TableSublayerSource source = new TableSublayerSource(geodatabaseWorkspace.Id, fileName);&lt;BR /&gt; // create a sublayer instance from the source&lt;BR /&gt; ArcGISMapImageSublayer shapefileSublayer = new ArcGISMapImageSublayer(0, source);&lt;BR /&gt; &lt;BR /&gt; // ready to add the shapefile layer to the map. Create a map image layer using url&lt;BR /&gt; ArcGISMapImageLayer imageLayer = new ArcGISMapImageLayer(localMapService.Url);&lt;BR /&gt; &lt;BR /&gt; imageLayer.Sublayers.Clear();&lt;BR /&gt; imageLayer.Sublayers.Add(shapefileSublayer);&lt;BR /&gt; // add the sub layer to the image layer&lt;BR /&gt; imageLayer.LoadStatusChanged += ((s, e) =&amp;gt;&lt;BR /&gt; {&lt;BR /&gt; if (imageLayer.LoadStatus == LoadStatus.Loaded)&lt;BR /&gt; {&lt;BR /&gt; shapefileSublayer.LoadStatusChanged += ((a, b) =&amp;gt;&lt;BR /&gt; {&lt;BR /&gt; if (shapefileSublayer.LoadStatus == LoadStatus.Loaded)&lt;BR /&gt; {&lt;BR /&gt; var layerInfo = shapefileSublayer.MapServiceSublayerInfo;&lt;BR /&gt; shapefileSublayer.Renderer =&amp;nbsp;new SimpleRenderer()&lt;BR /&gt; {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;Symbol =&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;new CompositeSymbol(new List&amp;lt;SimpleMarkerSymbol&amp;gt;() {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;new SimpleMarkerSymbol(){&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Color = GetRandomColor(),&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Style = SimpleMarkerSymbolStyle.Circle,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Size = 8&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}})&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/P&gt;&lt;P&gt;});&lt;BR /&gt; shapefileSublayer.LoadAsync();&lt;BR /&gt; }&lt;BR /&gt; });&lt;BR /&gt; await imageLayer.LoadAsync();&lt;/P&gt;&lt;P&gt;&amp;nbsp;mapView.Map.OperationalLayers.Add(, layer);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this is nothing in the map,is there any way to add filegdb source and render it use&amp;nbsp;&lt;SPAN&gt;CompositeSymbol?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jul 2017 09:26:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/compositesymbol-don-t-display-on/m-p/60934#M657</guid>
      <dc:creator>HTKSHI</dc:creator>
      <dc:date>2017-07-28T09:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: CompositeSymbol don't display on ArcGISMapImageSublayer</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/compositesymbol-don-t-display-on/m-p/60935#M658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The CompositeSymbol is only supported for client side rendering. I've logged an issue to make this clearer in the documentation and also perhaps look into providing some sort of error message / warning&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Jul 2017 16:25:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/compositesymbol-don-t-display-on/m-p/60935#M658</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2017-07-28T16:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: CompositeSymbol don't display on ArcGISMapImageSublayer</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/compositesymbol-don-t-display-on/m-p/60936#M659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But there is rendered by featurelayer&lt;/P&gt;&lt;P&gt;Uri featureServiceUri = new Uri(&lt;BR /&gt;&lt;SPAN&gt; "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fsampleserver6.arcgisonline.com%2Farcgis%2Frest%2Fservices%2FDamageAssessment%2FFeatureServer%2F0" rel="nofollow" target="_blank"&gt;http://sampleserver6.arcgisonline.com/arcgis/rest/services/DamageAssessment/FeatureServer/0&lt;/A&gt;&lt;SPAN&gt;");&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;// Initialize feature table using a url to feature server url&lt;BR /&gt; var featureTable = new ServiceFeatureTable(featureServiceUri);&lt;/P&gt;&lt;P&gt;// Initialize a new feature layer based on the feature table&lt;BR /&gt; _featureLayer = new FeatureLayer(featureTable);&lt;/P&gt;&lt;P&gt;// Set the selection color for feature layer&lt;BR /&gt; _featureLayer.SelectionColor = Colors.Cyan;&lt;BR /&gt; _featureLayer.Renderer= new Esri.ArcGISRuntime.Symbology.SimpleRenderer()&lt;BR /&gt; {&lt;BR /&gt; Symbol =&lt;BR /&gt; new Esri.ArcGISRuntime.Symbology.CompositeSymbol(new List&amp;lt;Esri.ArcGISRuntime.Symbology.Symbol&amp;gt;() { new Esri.ArcGISRuntime.Symbology.SimpleMarkerSymbol()&lt;BR /&gt; {&lt;BR /&gt; Color = Colors.Red,&lt;BR /&gt; Style = Esri.ArcGISRuntime.Symbology.SimpleMarkerSymbolStyle.Circle,&lt;BR /&gt; Size = 8&lt;BR /&gt; },new Esri.ArcGISRuntime.Symbology.SimpleMarkerSymbol()&lt;BR /&gt; {&lt;BR /&gt; Color = Colors.Blue,&lt;BR /&gt; Style = Esri.ArcGISRuntime.Symbology.SimpleMarkerSymbolStyle.Circle,&lt;BR /&gt; Size = 4&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; )&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P&gt;is there anyway to add filegeodatabase(.gdb) source,and render it use CompositeSymbol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2017 01:13:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/compositesymbol-don-t-display-on/m-p/60936#M659</guid>
      <dc:creator>HTKSHI</dc:creator>
      <dc:date>2017-07-31T01:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: CompositeSymbol don't display on ArcGISMapImageSublayer</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/compositesymbol-don-t-display-on/m-p/60937#M660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Feature layers are rendered client side so that is why it works. So are feature layers linked to tables in a local Runtime Geodatabase, so you can use that too.&lt;/P&gt;&lt;P&gt;File Geodatabases needs to be converted to runtime geodatabases, and then you'll be able to do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2017 15:52:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/compositesymbol-don-t-display-on/m-p/60937#M660</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2017-07-31T15:52:00Z</dc:date>
    </item>
  </channel>
</rss>

