<?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: Clicking/Hovering on marker in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308271#M1522</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I sent you C++. Here are the QML links:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-geoview.html#mouseClicked-signal" title="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-geoview.html#mouseClicked-signal"&gt;GeoView QML Type | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-mouseevent.html" title="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-mouseevent.html"&gt;MouseEvent QML Type | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Dec 2019 14:29:55 GMT</pubDate>
    <dc:creator>LucasDanzinger</dc:creator>
    <dc:date>2019-12-20T14:29:55Z</dc:date>
    <item>
      <title>Clicking/Hovering on marker</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308264#M1515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to add clicking and hovering functionalities on a marker.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am currently using a SimpleMarkerSymbol to display a marker. At the moment, I can click on it and it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However what I would like is to have a left click that would have a different function to a right click, as well as hovering. I don't think I have seen any examples regarding this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I am doing it at the moment is to use onMouseClicked with identifyGraphicsOverlay function in it and later&amp;nbsp;onIdentifyGraphicsOverlayStatusChanged.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2019 03:03:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308264#M1515</guid>
      <dc:creator>HaikalSyed</dc:creator>
      <dc:date>2019-11-25T03:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Clicking/Hovering on marker</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308265#M1516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The MouseEvent has some additional properties on it that will let you check whether it is a left or right button click -&amp;nbsp;&lt;A class="link-titled" href="https://doc.qt.io/qt-5/qml-qtquick-mouseevent.html#button-prop" title="https://doc.qt.io/qt-5/qml-qtquick-mouseevent.html#button-prop" rel="nofollow noopener noreferrer" target="_blank"&gt;MouseEvent QML Type | Qt Quick 5.13.2&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is some code for you to enable hovering:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; QtQuick &lt;SPAN class="number token"&gt;2.6&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; QtQuick&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Controls &lt;SPAN class="number token"&gt;2.2&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; Esri&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ArcGISRuntime &lt;SPAN class="number token"&gt;100.6&lt;/SPAN&gt;

ApplicationWindow &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    id&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; appWindow
    width&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;800&lt;/SPAN&gt;
    height&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;600&lt;/SPAN&gt;
    title&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"HoverTest"&lt;/SPAN&gt;

    &lt;SPAN class="comment token"&gt;// add a mapView component&lt;/SPAN&gt;
    MapView &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        anchors&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;fill&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; parent
        &lt;SPAN class="comment token"&gt;// set focus to enable keyboard navigation&lt;/SPAN&gt;
        focus&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt;

        &lt;SPAN class="comment token"&gt;// add a map to the mapview&lt;/SPAN&gt;
        Map &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
            &lt;SPAN class="comment token"&gt;// add the BasemapTopographic basemap to the map&lt;/SPAN&gt;
            BasemapTopographic &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
        &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

        MouseArea &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
            anchors&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;fill&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; parent
            hoverEnabled&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;true&lt;/SPAN&gt;

            onPositionChanged&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                &lt;SPAN class="comment token"&gt;// get mouse coordinates&lt;/SPAN&gt;
                console&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;log&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;mouse&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;x&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; mouse&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;y&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; mouse&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;button&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

                &lt;SPAN class="comment token"&gt;// reject mouse event so events go through to mapview&lt;/SPAN&gt;
                mouse&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;accepted &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
            &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

            onClicked&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                mouse&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;accepted &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
            &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

            onDoubleClicked&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                mouse&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;accepted &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
            &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

            onPressAndHold&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                mouse&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;accepted &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
            &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

            onPressed&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                mouse&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;accepted &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
            &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

            onReleased&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                mouse&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;accepted &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
            &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
        &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 14:45:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308265#M1516</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2021-12-11T14:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Clicking/Hovering on marker</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308266#M1517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. Thanks for reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems that the code works for the map since the parent is the MapView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, not for the marker (&lt;SPAN style="background-color: #ffffff;"&gt;SimpleMarkerSymbol&lt;/SPAN&gt;).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried putting a MouseArea inside GraphicsOverlay and nothing happens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Nov 2019 07:47:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308266#M1517</guid>
      <dc:creator>HaikalSyed</dc:creator>
      <dc:date>2019-11-28T07:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Clicking/Hovering on marker</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308267#M1518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MouseArea will only work if nested under a MapView or SceneView. If you are trying to identify an individual graphic on a mouse movement, you could try calling MapView.identifyGraphicsOverlay() on one of the mouse move signals&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Dec 2019 18:46:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308267#M1518</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2019-12-02T18:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Clicking/Hovering on marker</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308268#M1519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;MapView.identifyGraphicsOverlay(), is there anyway to detect left or right click or hovering?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Dec 2019 09:55:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308268#M1519</guid>
      <dc:creator>HaikalSyed</dc:creator>
      <dc:date>2019-12-19T09:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Clicking/Hovering on marker</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308269#M1520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hover implies no clicking - just hovering. If you want to perform identify after a click, use the mouseClicked signal -&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-mapquickview.html#mouseClicked" title="https://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-mapquickview.html#mouseClicked"&gt;MapQuickView Class | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MouseClicked will pass through a QMouseEvent object through as a parameter, and that object contains a method to determine if it was&amp;nbsp; left, right, or middle button click -&amp;nbsp;&lt;A class="link-titled" href="https://doc.qt.io/qt-5/qmouseevent.html#buttons" title="https://doc.qt.io/qt-5/qmouseevent.html#buttons"&gt;QMouseEvent Class | Qt GUI 5.14.0&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Dec 2019 15:23:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308269#M1520</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2019-12-19T15:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Clicking/Hovering on marker</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308270#M1521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all, sorry to be asking so many questions.&lt;/P&gt;&lt;P&gt;Secondly, this works for QML?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2019 03:07:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308270#M1521</guid>
      <dc:creator>HaikalSyed</dc:creator>
      <dc:date>2019-12-20T03:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: Clicking/Hovering on marker</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308271#M1522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I sent you C++. Here are the QML links:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-geoview.html#mouseClicked-signal" title="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-geoview.html#mouseClicked-signal"&gt;GeoView QML Type | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-mouseevent.html" title="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-mouseevent.html"&gt;MouseEvent QML Type | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2019 14:29:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/clicking-hovering-on-marker/m-p/308271#M1522</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2019-12-20T14:29:55Z</dc:date>
    </item>
  </channel>
</rss>

