<?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 only one layer on MapViewer Template For AppBuilder in ArcGIS AppStudio Questions</title>
    <link>https://community.esri.com/t5/arcgis-appstudio-questions/identify-only-one-layer-on-mapviewer-template-for/m-p/797189#M1213</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Frank,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That would inside views/MapPage.qml, look for identifyFeatures function, around line ~3271. We are using the &lt;A href="https://community.esri.com/space/2136"&gt;ArcGIS Runtime SDK for Qt&lt;/A&gt;‌ functionality called&amp;nbsp;identifyLayersWithMaxResults that would identify the topmost GeoElement in all of the map's layers at the specified screen coordinates. But you can replace it with&amp;nbsp;identifyLayerWithMaxResults&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-geoview.html#identifyLayerWithMaxResults-method" title="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-geoview.html#identifyLayerWithMaxResults-method"&gt;GeoView QML Type | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;that would&amp;nbsp;&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;Identify which GeoElements in the specified layer appears at the specified screen coordinates. The difference is you need to specify the layer object as an additional parameter.&amp;nbsp;&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;&lt;IMG class="image-1 jive-image" height="220" src="https://community.esri.com/legacyfs/online/510999_pastedImage_2.png" width="607" /&gt;&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;Also based on this notice,&amp;nbsp;&lt;A class="link-titled" href="https://support.esri.com/en/technical-article/000023241" title="https://support.esri.com/en/technical-article/000023241"&gt;FAQ: How is the World Geocoding Service affected by HTTPS Only enforcement?&lt;/A&gt;&amp;nbsp;, please check on views/SearchPage.qml around line 580, to make sure that the Geocoding URL is using HTTPS URL.&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;Thank you,&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;Erwin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Oct 2020 21:17:04 GMT</pubDate>
    <dc:creator>ErwinSoekianto</dc:creator>
    <dc:date>2020-10-14T21:17:04Z</dc:date>
    <item>
      <title>Identify only one layer on MapViewer Template For AppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/identify-only-one-layer-on-mapviewer-template-for/m-p/797188#M1212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to roll out a mobile app using MapViewer template for the AppStudio.&amp;nbsp; Right now, when you identify, it does an identify on all visible layers.&amp;nbsp; I need it to only identify on exactly one layer.&amp;nbsp; I've been able to figure out where/how to manipulate the attributes, but I can't seem to locate where in the code you have it focus only on one specific layer.&amp;nbsp; Any suggestions where in the Qt code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2020 20:32:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/identify-only-one-layer-on-mapviewer-template-for/m-p/797188#M1212</guid>
      <dc:creator>FrankLaFone</dc:creator>
      <dc:date>2020-10-13T20:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Identify only one layer on MapViewer Template For AppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-appstudio-questions/identify-only-one-layer-on-mapviewer-template-for/m-p/797189#M1213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Frank,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That would inside views/MapPage.qml, look for identifyFeatures function, around line ~3271. We are using the &lt;A href="https://community.esri.com/space/2136"&gt;ArcGIS Runtime SDK for Qt&lt;/A&gt;‌ functionality called&amp;nbsp;identifyLayersWithMaxResults that would identify the topmost GeoElement in all of the map's layers at the specified screen coordinates. But you can replace it with&amp;nbsp;identifyLayerWithMaxResults&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-geoview.html#identifyLayerWithMaxResults-method" title="https://developers.arcgis.com/qt/latest/qml/api-reference/qml-esri-arcgisruntime-geoview.html#identifyLayerWithMaxResults-method"&gt;GeoView QML Type | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;that would&amp;nbsp;&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;Identify which GeoElements in the specified layer appears at the specified screen coordinates. The difference is you need to specify the layer object as an additional parameter.&amp;nbsp;&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;&lt;IMG class="image-1 jive-image" height="220" src="https://community.esri.com/legacyfs/online/510999_pastedImage_2.png" width="607" /&gt;&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;Also based on this notice,&amp;nbsp;&lt;A class="link-titled" href="https://support.esri.com/en/technical-article/000023241" title="https://support.esri.com/en/technical-article/000023241"&gt;FAQ: How is the World Geocoding Service affected by HTTPS Only enforcement?&lt;/A&gt;&amp;nbsp;, please check on views/SearchPage.qml around line 580, to make sure that the Geocoding URL is using HTTPS URL.&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;Thank you,&lt;/P&gt;&lt;P style="color: #4c4c4c; background-color: #ffffff; margin-bottom: 1.5rem;"&gt;Erwin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2020 21:17:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-appstudio-questions/identify-only-one-layer-on-mapviewer-template-for/m-p/797189#M1213</guid>
      <dc:creator>ErwinSoekianto</dc:creator>
      <dc:date>2020-10-14T21:17:04Z</dc:date>
    </item>
  </channel>
</rss>

