<?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: No Identify-action when using magnifier on Android and IOS in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1611865#M13532</link>
    <description>&lt;P&gt;But for GeoView there is no hold+drag gesture.&lt;BR /&gt;Can this be done otherwise or will esri implement this event in future?&lt;/P&gt;</description>
    <pubDate>Tue, 06 May 2025 06:38:34 GMT</pubDate>
    <dc:creator>MarkusLackinger</dc:creator>
    <dc:date>2025-05-06T06:38:34Z</dc:date>
    <item>
      <title>No Identify-action when using magnifier on Android and IOS</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1606807#M13476</link>
      <description>&lt;P&gt;When using the "Magnifier" tool, no identify or zoom is performed after releasing. No event is triggered anywhere. I'm able to pan the map with magnifier. This behavior occurs on both Android and iOS.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to use magnifier for zooming and identify? in QT-SDK was it &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I am using this code to activate magnifier.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;myMapView.InteractionOptions = new MapViewInteractionOptions
{
IsEnabled = true
};&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Any ideas how to implement magnifier for identify? thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 09:05:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1606807#M13476</guid>
      <dc:creator>MarkusLackinger</dc:creator>
      <dc:date>2025-04-17T09:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: No Identify-action when using magnifier on Android and IOS</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1606947#M13479</link>
      <description>&lt;P&gt;Hi Marcus - I don't think that's enough information for MapViewInteractionOptions to do what you want. &amp;nbsp;You probably need to be explicitly configuring items within it and passing a new MapViewInteractionOptions object with only IsEnabled = true might be unintentionally disabling a lot of functionality. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Maybe try something like&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;myMapView.InteractionOptions = new MapViewInteractionOptions
{
IsMagnifierEnabled = true
};&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;And then make sure you have something in GeoViewTapped to actually do the identify:&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/net/api-reference/api/net/Maui/Esri.ArcGISRuntime.Maui.GeoView.GeoViewTapped.html" target="_blank"&gt;https://developers.arcgis.com/net/api-reference/api/net/Maui/Esri.ArcGISRuntime.Maui.GeoView.GeoViewTapped.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 16:14:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1606947#M13479</guid>
      <dc:creator>MichaelDavis3</dc:creator>
      <dc:date>2025-04-17T16:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: No Identify-action when using magnifier on Android and IOS</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1607049#M13481</link>
      <description>&lt;P&gt;I'm not quite following your expectations here, since identify operations aren't a built-in gesture.&lt;BR /&gt;Identify is a MapView operation you need to call in your custom code given an event, like for instance "tap".&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 18:27:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1607049#M13481</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2025-04-17T18:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: No Identify-action when using magnifier on Android and IOS</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1611529#M13528</link>
      <description>&lt;P&gt;Hi everyone!&amp;nbsp;&lt;BR /&gt;I probably didn't express myself clearly enough. Identifying features on the map when I tap it works perfectly. However, &lt;STRONG&gt;when the magnifier is already active and visible&lt;/STRONG&gt;, and then lift my finger from the map, no GeoViewTabbed-event is triggered.&lt;/P&gt;&lt;P&gt;Here's a brief outline of my implementation:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;myMapView.InteractionOptions = new MapViewInteractionOptions
{
      IsMagnifierEnabled = true
};

… 
myMapView.GeoViewTapped += MapTapped;
…

private async void MapTapped(object sender, GeoViewInputEventArgs e) 
{
      …
            Identify(e.Position);
      …
}

private async void Identify(Point pos) {
      …
      IReadOnlyList&amp;lt;IdentifyLayerResult&amp;gt; identifyResults = await myMapView.IdentifyLayersAsync(pos, 15, false);
      …
}
&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 07:34:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1611529#M13528</guid>
      <dc:creator>MarkusLackinger</dc:creator>
      <dc:date>2025-05-05T07:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: No Identify-action when using magnifier on Android and IOS</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1611681#M13530</link>
      <description>&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;and then lift my finger from the map, no GeoViewTabbed-event is triggered.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;That's correct, since that isn't a tap-gesture (it's a hold + drag gesture)&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 15:43:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1611681#M13530</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2025-05-05T15:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: No Identify-action when using magnifier on Android and IOS</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1611865#M13532</link>
      <description>&lt;P&gt;But for GeoView there is no hold+drag gesture.&lt;BR /&gt;Can this be done otherwise or will esri implement this event in future?&lt;/P&gt;</description>
      <pubDate>Tue, 06 May 2025 06:38:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/no-identify-action-when-using-magnifier-on-android/m-p/1611865#M13532</guid>
      <dc:creator>MarkusLackinger</dc:creator>
      <dc:date>2025-05-06T06:38:34Z</dc:date>
    </item>
  </channel>
</rss>

