<?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: Identify graphics from MultiPointBuilder in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/identify-graphics-from-multipointbuilder/m-p/1060828#M4155</link>
    <description>&lt;P&gt;Oh, great!&lt;/P&gt;&lt;P&gt;This is exactly what I wanted to do!&lt;/P&gt;&lt;P&gt;Thanks you for answer!!!&lt;/P&gt;</description>
    <pubDate>Mon, 24 May 2021 03:02:46 GMT</pubDate>
    <dc:creator>Kanzakiryu</dc:creator>
    <dc:date>2021-05-24T03:02:46Z</dc:date>
    <item>
      <title>Identify graphics from MultiPointBuilder</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/identify-graphics-from-multipointbuilder/m-p/1059306#M4142</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;I would like to identify the graphics for a specific point from MultiPointBuilder.&lt;/P&gt;&lt;P&gt;I tried using&lt;STRONG&gt; identifyGraphicsOverlay,&lt;/STRONG&gt; but I couldn't figure out how to know the number of the point I clicked on.&lt;/P&gt;&lt;P&gt;So I thought of a way to find and identify the latitude and longitude of the closest point to the clicked point from MultiPointBuilder.&lt;/P&gt;&lt;P&gt;However, I don't like to use this method because it might cause some unexpected glitches.&lt;/P&gt;&lt;P&gt;Is there anything else I can do?&lt;/P&gt;&lt;P&gt;I use ArcGISRuntime version is 100.9.&lt;/P&gt;</description>
      <pubDate>Wed, 19 May 2021 05:23:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/identify-graphics-from-multipointbuilder/m-p/1059306#M4142</guid>
      <dc:creator>Kanzakiryu</dc:creator>
      <dc:date>2021-05-19T05:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Identify graphics from MultiPointBuilder</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/identify-graphics-from-multipointbuilder/m-p/1059739#M4149</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/485542"&gt;@Kanzakiryu&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Unfortunately I don't believe there is any way to do what you're wanting. A Multipoint geometry is a single geometry containing multiple points, so if you identify any point of that Multipoint, you will get back the entire Multipoint from the identify operation.&lt;/P&gt;&lt;P&gt;If it is possible, using individual point geometries would alleviate this situation for you. You'd be able to identify every point uniquely.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/qt/qml/api-reference/qml-esri-arcgisruntime-multipoint.html#details" target="_blank"&gt;https://developers.arcgis.com/qt/qml/api-reference/qml-esri-arcgisruntime-multipoint.html#details&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;</description>
      <pubDate>Wed, 19 May 2021 23:34:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/identify-graphics-from-multipointbuilder/m-p/1059739#M4149</guid>
      <dc:creator>JamesBallard1</dc:creator>
      <dc:date>2021-05-19T23:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Identify graphics from MultiPointBuilder</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/identify-graphics-from-multipointbuilder/m-p/1059798#M4150</link>
      <description>&lt;P&gt;OK, I know.&lt;/P&gt;&lt;P&gt;I'm going to try to do it the way I figured it out.&lt;/P&gt;</description>
      <pubDate>Thu, 20 May 2021 06:42:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/identify-graphics-from-multipointbuilder/m-p/1059798#M4150</guid>
      <dc:creator>Kanzakiryu</dc:creator>
      <dc:date>2021-05-20T06:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Identify graphics from MultiPointBuilder</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/identify-graphics-from-multipointbuilder/m-p/1060029#M4153</link>
      <description>&lt;P&gt;Sounds like you really want to use multiple Graphics, where each graphic's geometry is a single point rather than a single graphic with a multipoint geometry.&lt;/P&gt;&lt;P&gt;However, &amp;nbsp;you could use &lt;A href="https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-geometryengine.html#nearestVertex" target="_self"&gt;&lt;STRONG&gt;GeometryEngine.nearestVertex()&lt;/STRONG&gt;&lt;/A&gt;, passing in the identified multipoint geometry and the identify map location. This returns a &lt;A href="https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-proximityresult.html" target="_self"&gt;&lt;STRONG&gt;ProximityResult&lt;/STRONG&gt;&lt;/A&gt; which includes a &lt;A href="https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-proximityresult.html#partIndex" target="_self"&gt;&lt;STRONG&gt;partIndex&lt;/STRONG&gt;&lt;/A&gt; and &lt;A href="https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-proximityresult.html#pointIndex" target="_self"&gt;&lt;STRONG&gt;pointIndex&lt;/STRONG&gt;&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 20 May 2021 16:43:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/identify-graphics-from-multipointbuilder/m-p/1060029#M4153</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2021-05-20T16:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Identify graphics from MultiPointBuilder</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/identify-graphics-from-multipointbuilder/m-p/1060828#M4155</link>
      <description>&lt;P&gt;Oh, great!&lt;/P&gt;&lt;P&gt;This is exactly what I wanted to do!&lt;/P&gt;&lt;P&gt;Thanks you for answer!!!&lt;/P&gt;</description>
      <pubDate>Mon, 24 May 2021 03:02:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/identify-graphics-from-multipointbuilder/m-p/1060828#M4155</guid>
      <dc:creator>Kanzakiryu</dc:creator>
      <dc:date>2021-05-24T03:02:46Z</dc:date>
    </item>
  </channel>
</rss>

