<?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>idea Arcade expression in pop-up to get the location information where the user clicked by differentiate the overlapping and non-overlapping areas individually in ArcGIS Pro Ideas</title>
    <link>https://community.esri.com/t5/arcgis-pro-ideas/arcade-expression-in-pop-up-to-get-the-location/idi-p/931896</link>
    <description>&lt;P&gt;(On behalf of the customer)&lt;/P&gt;&lt;P&gt;The Intersects () arcade function can identify the overlapping polygon features and get the result attribute of the underlying polygons where the user clicked in pop-up dialogue box. But this function cannot differentiate the overlapping and non-overlapping areas individually. The entire polygon is considered as a single entity.&lt;/P&gt;&lt;P&gt;So, it would be good if any Arcade expression can access to the specific place area where the user&amp;nbsp;clicked and get the location information and by differentiate the overlapping and non-overlapping areas individually.&lt;/P&gt;</description>
    <pubDate>Thu, 03 Mar 2022 22:01:22 GMT</pubDate>
    <dc:creator>RinaYOKOTA</dc:creator>
    <dc:date>2022-03-03T22:01:22Z</dc:date>
    <item>
      <title>Arcade expression in pop-up to get the location information where the user clicked by differentiate the overlapping and non-overlapping areas individually</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcade-expression-in-pop-up-to-get-the-location/idi-p/931896</link>
      <description>&lt;P&gt;(On behalf of the customer)&lt;/P&gt;&lt;P&gt;The Intersects () arcade function can identify the overlapping polygon features and get the result attribute of the underlying polygons where the user clicked in pop-up dialogue box. But this function cannot differentiate the overlapping and non-overlapping areas individually. The entire polygon is considered as a single entity.&lt;/P&gt;&lt;P&gt;So, it would be good if any Arcade expression can access to the specific place area where the user&amp;nbsp;clicked and get the location information and by differentiate the overlapping and non-overlapping areas individually.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 22:01:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcade-expression-in-pop-up-to-get-the-location/idi-p/931896</guid>
      <dc:creator>RinaYOKOTA</dc:creator>
      <dc:date>2022-03-03T22:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade expression in pop-up to get the location information where the user clicked by differentiate the overlapping and non-overlapping areas individually</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcade-expression-in-pop-up-to-get-the-location/idc-p/931897#M3096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you explain a little more about what the expectation would be when returning data from the overlapping area vs. the non-overlapping area?&amp;nbsp; Maybe provide a quick example of the type of data associated with each polygon and what would be returned when the overlapping area is clicked vs. clicking in the non-overlappping area.&amp;nbsp; Would it be possible to use Union?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2019 12:36:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcade-expression-in-pop-up-to-get-the-location/idc-p/931897#M3096</guid>
      <dc:creator>KoryKramer</dc:creator>
      <dc:date>2019-10-29T12:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade expression in pop-up to get the location information where the user clicked by differentiate the overlapping and non-overlapping areas individually</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/arcade-expression-in-pop-up-to-get-the-location/idc-p/931898#M3097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 0mm 0mm 0pt;"&gt;&lt;SPAN style="color: #000000; font-size: medium; font-family: 游明朝;"&gt;Thank you for the response. Please have a look at the pictures below, prepare a partly overlapping green and blue polygons in a map viewer. When click on the area of green polygon underlying blue polygon, the Intersects () arcade expression can get the attribute of polygon ('Custom =Test2’ which is the green polygon name) in the blue polygon’s pops up. But also, my expectation is that if click on the non-overlapping area of green polygon, it would be able to configure and populate the 'Custom = Null' value in the blue polygon’s pop-up due to the area the user clicked is not overlapped.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Ovelapping_vs_Non_overlapping" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/469812_Ovelapping_vs_Non_overlapping.png" /&gt;&lt;/P&gt;&lt;P style="margin: 0mm 0mm 0pt;"&gt;&lt;SPAN&gt;Here is the Arcade expression I used.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0mm 0mm 0pt 18pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;var intersectLayer =Intersects(FeatureSetByName($map,"Test_2"), $feature)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0mm 0mm 0pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;for (var f in intersectLayer){&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0mm 0mm 0pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0mm 0mm 0pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; return f.NAME&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0mm 0mm 0pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0mm 0mm 0pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;}&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2019 01:53:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/arcade-expression-in-pop-up-to-get-the-location/idc-p/931898#M3097</guid>
      <dc:creator>RinaYOKOTA</dc:creator>
      <dc:date>2019-10-30T01:53:55Z</dc:date>
    </item>
  </channel>
</rss>

