<?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: Measuring the distance between two clicked points in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1129171#M4470</link>
    <description>&lt;P&gt;No, SketchEditor only works in 2D MapView currently.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Dec 2021 15:26:25 GMT</pubDate>
    <dc:creator>LucasDanzinger</dc:creator>
    <dc:date>2021-12-28T15:26:25Z</dc:date>
    <item>
      <title>Measuring the distance between two clicked points</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1053609#M4093</link>
      <description>&lt;P&gt;We want to provide user a ruler that shows the distance between 2 points that are clicked by user? Is there a way to do that?&lt;/P&gt;</description>
      <pubDate>Sun, 02 May 2021 13:31:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1053609#M4093</guid>
      <dc:creator>FatmaAkdemir</dc:creator>
      <dc:date>2021-05-02T13:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring the distance between two clicked points</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1053869#M4096</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/70678"&gt;@FatmaAkdemir&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;&amp;nbsp; That is likely a feature that would be in our toolkit but we don't have any such toolkit component right now. I assume you know how to get the distance with the GeometryEngine, but are looking for a UI element to display on screen representing a ruler, is that correct?&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 17:09:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1053869#M4096</guid>
      <dc:creator>JamesBallard1</dc:creator>
      <dc:date>2021-05-03T17:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring the distance between two clicked points</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1055160#M4110</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/405084"&gt;@JamesBallard1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Yeah I was looking for a ready to use Ui element for ruler. Can I find an example in github which allows user to draw a line or polygon with mouse?&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 12:30:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1055160#M4110</guid>
      <dc:creator>FatmaAkdemir</dc:creator>
      <dc:date>2021-05-06T12:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring the distance between two clicked points</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1055337#M4111</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/70678"&gt;@FatmaAkdemir&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;We do have a sample that adds a polyline on mouse clicks with our Service Area sample.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-qt/tree/master/ArcGISRuntimeSDKQt_CppSamples/Routing/ServiceArea" target="_blank"&gt;https://github.com/Esri/arcgis-runtime-samples-qt/tree/master/ArcGISRuntimeSDKQt_CppSamples/Routing/ServiceArea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This code snippet shows the mouseClicked handler and how to get the projected point for the click location&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-qt/blob/master/ArcGISRuntimeSDKQt_CppSamples/Routing/ServiceArea/ServiceArea.cpp#L259-L286" target="_blank"&gt;https://github.com/Esri/arcgis-runtime-samples-qt/blob/master/ArcGISRuntimeSDKQt_CppSamples/Routing/ServiceArea/ServiceArea.cpp#L259-L286&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And this code block shows have to add points to a geometry builder and symbolize this on the graphics overlay.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-qt/blob/master/ArcGISRuntimeSDKQt_CppSamples/Routing/ServiceArea/ServiceArea.cpp#L295-L309" target="_blank"&gt;https://github.com/Esri/arcgis-runtime-samples-qt/blob/master/ArcGISRuntimeSDKQt_CppSamples/Routing/ServiceArea/ServiceArea.cpp#L295-L309&lt;/A&gt;&lt;/P&gt;&lt;P&gt;We are working on the Sketch Editor for Qt and hope to have this ready for the next release. That will be a big improvement in the sketching experience.&lt;/P&gt;&lt;P&gt;We also have a ShowLocationHistory sample that adds points as "breadcrumbs" to a polyline via PolylineBuilder.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-qt/tree/master/ArcGISRuntimeSDKQt_CppSamples/Maps/ShowLocationHistory" target="_blank"&gt;https://github.com/Esri/arcgis-runtime-samples-qt/tree/master/ArcGISRuntimeSDKQt_CppSamples/Maps/ShowLocationHistory&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 18:01:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1055337#M4111</guid>
      <dc:creator>JamesBallard1</dc:creator>
      <dc:date>2021-05-06T18:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring the distance between two clicked points</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1095953#M4406</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/70678"&gt;@FatmaAkdemir&lt;/a&gt;&amp;nbsp;the 100.12 release of ArcGIS Runtime now supports a SketchEditor, which greatly simplifies the workflow for sketching geometries on a map. This might be something worth considering integrating into your app. More details are in the release blog -&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-runtime-sdks-blog/sketcheditor-now-available-in-the-arcgis-runtime/ba-p/1094221" target="_blank"&gt;https://community.esri.com/t5/arcgis-runtime-sdks-blog/sketcheditor-now-available-in-the-arcgis-runtime/ba-p/1094221&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 15:10:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1095953#M4406</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2021-09-07T15:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring the distance between two clicked points</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1096651#M4413</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/184785"&gt;@LucasDanzinger&lt;/a&gt;thanks for the info! It looks great. We are currently using 100.8. If we upgrade to 100.12, I am sure we will add this feature to our project.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 08:04:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1096651#M4413</guid>
      <dc:creator>FatmaAkdemir</dc:creator>
      <dc:date>2021-09-09T08:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring the distance between two clicked points</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1128915#M4469</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/184785"&gt;@LucasDanzinger&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;Hope you're well! One simple question we have : Is there any way to use SketchEditor on 3D SceneGraphicsView instead of MapView?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Dec 2021 11:57:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1128915#M4469</guid>
      <dc:creator>FatmaAkdemir</dc:creator>
      <dc:date>2021-12-27T11:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring the distance between two clicked points</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1129171#M4470</link>
      <description>&lt;P&gt;No, SketchEditor only works in 2D MapView currently.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Dec 2021 15:26:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/measuring-the-distance-between-two-clicked-points/m-p/1129171#M4470</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2021-12-28T15:26:25Z</dc:date>
    </item>
  </channel>
</rss>

