<?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 GeometryEditor FeedbackLine access in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543335#M13041</link>
    <description>&lt;P&gt;Can I access the FeedbackLine when dragging a node in the GeometryEditor to display, for example, the current polyline length during the drag? Thanks&lt;/P&gt;</description>
    <pubDate>Fri, 27 Sep 2024 07:43:41 GMT</pubDate>
    <dc:creator>DmitriyKolokolnikov</dc:creator>
    <dc:date>2024-09-27T07:43:41Z</dc:date>
    <item>
      <title>GeometryEditor FeedbackLine access</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543335#M13041</link>
      <description>&lt;P&gt;Can I access the FeedbackLine when dragging a node in the GeometryEditor to display, for example, the current polyline length during the drag? Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 07:43:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543335#M13041</guid>
      <dc:creator>DmitriyKolokolnikov</dc:creator>
      <dc:date>2024-09-27T07:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: GeometryEditor FeedbackLine access</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543361#M13042</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I think link to another thread could be helpful for you:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.esri.com/t5/net-maps-sdk-questions/add-geometrychanged-event-to-the-new/m-p/1352547" target="_blank"&gt;Solved: Add GeometryChanged event to the new GeometryEdito... - Esri Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 10:15:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543361#M13042</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2024-09-27T10:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: GeometryEditor FeedbackLine access</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543398#M13043</link>
      <description>&lt;P&gt;Thank you for the quick response. Unfortunately, this is not quite what I need. I need to obtain the geometry during the process of dragging a vertex. It seems that currently it’s only possible to get the geometry at the end of the dragging, i.e., after releasing the mouse.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 13:33:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543398#M13043</guid>
      <dc:creator>DmitriyKolokolnikov</dc:creator>
      <dc:date>2024-09-27T13:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: GeometryEditor FeedbackLine access</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543412#M13044</link>
      <description>&lt;P&gt;Have you read &lt;A href="https://www.esri.com/arcgis-blog/products/sdk-net/developers/migrating-your-legacy-sketcheditor-code-to-the-new-geometryeditor/" target="_self"&gt;blog&lt;/A&gt; about migrating&amp;nbsp;&lt;SPAN&gt;from SketchEditor -&amp;gt; GeometryEditor inside the thread I mentioned above. Look at the part "Asynchronous start task with geometry result"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 14:15:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543412#M13044</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2024-09-27T14:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: GeometryEditor FeedbackLine access</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543433#M13045</link>
      <description>&lt;P&gt;Yes, I have read that. I can get the geometry, but only after the node dragging is complete. However, I need to get it during the dragging.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 14:57:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543433#M13045</guid>
      <dc:creator>DmitriyKolokolnikov</dc:creator>
      <dc:date>2024-09-27T14:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: GeometryEditor FeedbackLine access</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543535#M13046</link>
      <description>&lt;P&gt;If you need to get it during dragging you need to listen for PropertyChanged event as in sample from thread:&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;mapView.GeometryEditor.PropertyChanged += (s, e) =&amp;gt;
{
    if (e.PropertyName == nameof(mapView.GeometryEditor.Geometry))
    {
        // Geometry has changed
    }
};&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 27 Sep 2024 18:37:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543535#M13046</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2024-09-27T18:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: GeometryEditor FeedbackLine access</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543609#M13047</link>
      <description>&lt;P&gt;The PropertyChanged for the GeometryEditor.Geometry property is triggered only after the vertex dragging is completed, i.e., after the mouse button is released.&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2024 05:47:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543609#M13047</guid>
      <dc:creator>DmitriyKolokolnikov</dc:creator>
      <dc:date>2024-09-28T05:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: GeometryEditor FeedbackLine access</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543795#M13048</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/235317"&gt;@DmitriyKolokolnikov&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Thank you for your question. Currently you cannot access the FeedbackLine length during a drag action, as you've mentioned it is only possible to retrieve the length after a subsequent vertex has been placed.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'll make a note of this as a potential enhancement.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 14:30:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1543795#M13048</guid>
      <dc:creator>HamishDuff</dc:creator>
      <dc:date>2024-09-30T14:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: GeometryEditor FeedbackLine access</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1544341#M13056</link>
      <description>&lt;P&gt;I'd like to register support for this as an enhancement. It sounds like OP and I have similar use cases where we would like to provide continuous feedback (length, area, etc.) about the interim geometry &lt;EM&gt;before&lt;/EM&gt; a vertex is actually placed by the user.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2024 15:39:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1544341#M13056</guid>
      <dc:creator>Mike_Quetel</dc:creator>
      <dc:date>2024-10-01T15:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: GeometryEditor FeedbackLine access</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1699966#M13914</link>
      <description>&lt;P&gt;I also have a use case where getting the geometry of the feedback line would be useful. I guess I can calculate it myself from the mouse position to the current selected vertex, but it would be handy if it was more accessible somehow. I want to show the user a label with the length of the feedback line displayed as they're drawing (among other things). Any update on this as a feature enhancement request, i.e. is the request tracked somewhere?&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2026 23:33:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1699966#M13914</guid>
      <dc:creator>FelicityRhone</dc:creator>
      <dc:date>2026-05-13T23:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: GeometryEditor FeedbackLine access</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1701946#M13933</link>
      <description>&lt;P&gt;Actually my workaround of calculating it myself won't work in the scenario where snapping is being applied, because then the mouse position doesn't match up perfectly with the snapped end of the feedback line &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;I just &lt;A href="https://community.esri.com/t5/net-maps-sdk-questions/access-to-snapped-location-from-geometryeditor/m-p/1701945#M13932" target="_self"&gt;started a new topic&lt;/A&gt; about this issue.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2026 23:32:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/geometryeditor-feedbackline-access/m-p/1701946#M13933</guid>
      <dc:creator>FelicityRhone</dc:creator>
      <dc:date>2026-05-13T23:32:20Z</dc:date>
    </item>
  </channel>
</rss>

