<?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: fade away on lines in dynamic graphics layer in Scene in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/fade-away-on-lines-in-dynamic-graphics-layer-in/m-p/60890#M655</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sure here is set of screen shots. This is a "range marker" there should 5 concentric circles at ranges of 200, 400, 600, 800, and 1000 km from the center. So zoomed way out, you cant see any rings, as you zoom in additional rings&amp;nbsp;"fade-in". This is due to the size of the line segments that make up the rings, each one takes 180 steps around the circumference. The rings&amp;nbsp;are made of polylines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="352468" alt="no rings" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/352468_rings1.png" style="width: 620px; height: 486px;" /&gt;&lt;IMG __jive_id="352469" alt="" class="image-2 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/352469_rings2.png" style="height: auto;" /&gt;&lt;IMG __jive_id="352470" alt="" class="image-3 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/352470_rings3.png" style="height: auto;" /&gt;&lt;IMG __jive_id="352471" alt="" class="image-4 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/352471_rings4.png" style="width: 620px; height: 483px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 May 2017 21:00:30 GMT</pubDate>
    <dc:creator>DavidHope</dc:creator>
    <dc:date>2017-05-17T21:00:30Z</dc:date>
    <item>
      <title>fade away on lines in dynamic graphics layer in Scene</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/fade-away-on-lines-in-dynamic-graphics-layer-in/m-p/60887#M652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to control the "fade" distance on a polyline drawn in a dynamic graphic layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For instance, if I use this code:&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;GraphicsOverlay mapOL = new GraphicsOverlay();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt; mapOL.SceneProperties.SurfacePlacement = SurfacePlacement.Draped;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt; mapOL.RenderingMode = GraphicsRenderingMode.Dynamic;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt; var lineSymbol = new SimpleLineSymbol() { Color = System.Windows.Media.Colors.Red, Width = 2 };&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;var polyLine1 = new Polyline(new MapPoint[] { new MapPoint(-100, 10), new MapPoint(-100, 11) }, SpatialReferences.Wgs84);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt; mapOL.Graphics.Add(new Graphic() { Geometry = polyLine1, Symbol = lineSymbol });&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;var polyLine2 = new Polyline(new MapPoint[] { new MapPoint(-100, 12), new MapPoint(-100, 15) }, SpatialReferences.Wgs84);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt; mapOL.Graphics.Add(new Graphic() { Geometry = polyLine2, Symbol = lineSymbol });&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;_scenegraphicsOverlays.Add(mapOL);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;Then, polyLine1 fades from view before polyLine2 does when zooming out in a Scene. I'm trying to create a complex figure with the polylines and want them all to display at the same time.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;How can I manage this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;(BTW, I know that I can use Graphics.RenderMode.Static, but prefer that the overlays be dynamic.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;David&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2017 13:51:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/fade-away-on-lines-in-dynamic-graphics-layer-in/m-p/60887#M652</guid>
      <dc:creator>DavidHope</dc:creator>
      <dc:date>2017-05-16T13:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: fade away on lines in dynamic graphics layer in Scene</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/fade-away-on-lines-in-dynamic-graphics-layer-in/m-p/60888#M653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BTW, I have the same issue if I have a multi-segment polyline, short segments will fadeout before longer segments do, leaving me an incomplete line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2017 19:40:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/fade-away-on-lines-in-dynamic-graphics-layer-in/m-p/60888#M653</guid>
      <dc:creator>DavidHope</dc:creator>
      <dc:date>2017-05-16T19:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: fade away on lines in dynamic graphics layer in Scene</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/fade-away-on-lines-in-dynamic-graphics-layer-in/m-p/60889#M654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just so I'm correctly understanding what the problem is, could you share a screenshot of the issue you're experiencing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2017 20:01:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/fade-away-on-lines-in-dynamic-graphics-layer-in/m-p/60889#M654</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2017-05-17T20:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: fade away on lines in dynamic graphics layer in Scene</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/fade-away-on-lines-in-dynamic-graphics-layer-in/m-p/60890#M655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sure here is set of screen shots. This is a "range marker" there should 5 concentric circles at ranges of 200, 400, 600, 800, and 1000 km from the center. So zoomed way out, you cant see any rings, as you zoom in additional rings&amp;nbsp;"fade-in". This is due to the size of the line segments that make up the rings, each one takes 180 steps around the circumference. The rings&amp;nbsp;are made of polylines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="352468" alt="no rings" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/352468_rings1.png" style="width: 620px; height: 486px;" /&gt;&lt;IMG __jive_id="352469" alt="" class="image-2 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/352469_rings2.png" style="height: auto;" /&gt;&lt;IMG __jive_id="352470" alt="" class="image-3 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/352470_rings3.png" style="height: auto;" /&gt;&lt;IMG __jive_id="352471" alt="" class="image-4 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/352471_rings4.png" style="width: 620px; height: 483px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2017 21:00:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/fade-away-on-lines-in-dynamic-graphics-layer-in/m-p/60890#M655</guid>
      <dc:creator>DavidHope</dc:creator>
      <dc:date>2017-05-17T21:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: fade away on lines in dynamic graphics layer in Scene</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/fade-away-on-lines-in-dynamic-graphics-layer-in/m-p/60891#M656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We've identified the rendering issue and will have it fixed in our upcoming release. Thank you for reporting this&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 May 2017 16:11:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/fade-away-on-lines-in-dynamic-graphics-layer-in/m-p/60891#M656</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2017-05-19T16:11:30Z</dc:date>
    </item>
  </channel>
</rss>

