<?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: SketchEditor Polyline in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1493077#M12788</link>
    <description>&lt;P&gt;Are you able to provide a small sample app that reproduces this problem?&lt;/P&gt;</description>
    <pubDate>Fri, 14 Jun 2024 23:36:37 GMT</pubDate>
    <dc:creator>dotMorten_esri</dc:creator>
    <dc:date>2024-06-14T23:36:37Z</dc:date>
    <item>
      <title>SketchEditor Polyline</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1416439#M12649</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm currently using ArcGIS Runtime 100.15.4 SDK for .net , and I'm encountering an issue while attempting to draw a polyline on the map in the application im developing .&lt;/P&gt;&lt;P&gt;Here's the code snippet I'm using:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Geometry geometry = &lt;SPAN class=""&gt;await&lt;/SPAN&gt; mapView.SketchEditor.StartAsync(SketchCreationMode.Polyline, &lt;SPAN class=""&gt;true&lt;/SPAN&gt;);&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;the task returned by StartAsync is getting canceled.&lt;/P&gt;&lt;P&gt;Any insights or suggestions on how to resolve this.&lt;BR /&gt;Suggest me some documentations on Drawing Geometries on map Runtime.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 12:14:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1416439#M12649</guid>
      <dc:creator>NACHIKETA</dc:creator>
      <dc:date>2024-04-29T12:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: SketchEditor Polyline</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1416643#M12650</link>
      <description>&lt;P&gt;If a sketch is already in progress, the already-running sketch task will get cancelled and throw the Task canceled exception when a new start call is made. You should always handle that exception in your sketch tasks (generally you can ignore it and do any necessary cleanup, since it's often an expected thing to happen).&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 17:48:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1416643#M12650</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2024-04-29T17:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: SketchEditor Polyline</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1416880#M12654</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;hi, im unable to fix it , the startAsync method is returning TaskCancelled exception , although im able to draw other geometries but the problem arises when im trying to draw polyline,polygon and multipoint.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;A href="https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1416643#" target="_blank" rel="noopener"&gt;Add tags&lt;/A&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 30 Apr 2024 06:17:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1416880#M12654</guid>
      <dc:creator>NACHIKETA</dc:creator>
      <dc:date>2024-04-30T06:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: SketchEditor Polyline</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1417094#M12661</link>
      <description>&lt;P&gt;You're not able to try/catch the exception? Is the exception happening the first time you call StartAsync or on subsequent calls?&lt;BR /&gt;Do you have a small sample that reproduces the problem?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 16:10:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1417094#M12661</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2024-04-30T16:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: SketchEditor Polyline</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1417916#M12663</link>
      <description>&lt;P&gt;Yes the exception is happening on the first call of StartAsync, this problem arised when we migrated from ArcGISRuntime v100.6 to 100.15.4.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;this is the code snippent we used:-&lt;BR /&gt;SketchCreationMode creationMode = SketchCreationMode.Polyline;&lt;BR /&gt;Geometry geometry = await mapView.SketchEditor.StartAsync(creationMode, true);&lt;BR /&gt;&lt;BR /&gt;The moment we click on the Mapview ,the Exception of task being cancelled is showing up.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 05:47:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1417916#M12663</guid>
      <dc:creator>NACHIKETA</dc:creator>
      <dc:date>2024-05-02T05:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: SketchEditor Polyline</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1493077#M12788</link>
      <description>&lt;P&gt;Are you able to provide a small sample app that reproduces this problem?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 23:36:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/sketcheditor-polyline/m-p/1493077#M12788</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2024-06-14T23:36:37Z</dc:date>
    </item>
  </channel>
</rss>

