<?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: How to show multiple popups simultaneously in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1069691#M73532</link>
    <description>&lt;P&gt;No this is not what I wanted, I just need to display the co-ordinates for the point clicked on the map and this solution is not at all ideal for that.&lt;/P&gt;</description>
    <pubDate>Fri, 18 Jun 2021 05:30:24 GMT</pubDate>
    <dc:creator>SelectivelySocial</dc:creator>
    <dc:date>2021-06-18T05:30:24Z</dc:date>
    <item>
      <title>How to show multiple popups simultaneously</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1067804#M73479</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;So I want to show the co-ordinates of multiple points clicked by user on a map in the popup content, but I am able to open just one popup at a time, this example&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/intro-popup/" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/javascript/latest/sample-code/intro-popup/&lt;/A&gt;&amp;nbsp;also shows one popup at a time, I want the same functionality in the above example but with multiple popups, is there a way to achieve this ?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 07:53:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1067804#M73479</guid>
      <dc:creator>SelectivelySocial</dc:creator>
      <dc:date>2021-06-14T07:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to show multiple popups simultaneously</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1067942#M73485</link>
      <description>&lt;P&gt;A popup is referring to a specific feature in the&amp;nbsp; map. When multiple features are clicked to initiate a popup, there is just an overflow arrow at the top corner to allow showing the next or previous feature one at a time. &lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/intro-popuptemplate/" target="_self"&gt;Here's a sample.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you want to cumulatively show information from a collection of features, you probably just want to display that information in a div and position it &lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/simple-ui/" target="_self"&gt;using the view's UI&lt;/A&gt;. You can populate the contents of the div with &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-views-MapView.html#hitTest" target="_self"&gt;hitTest()&lt;/A&gt;, writing the coordinates in some useful format into the results div as they come in.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 15:19:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1067942#M73485</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2021-06-14T15:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to show multiple popups simultaneously</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1067947#M73487</link>
      <description>&lt;P&gt;The popup by design is a single popup at a time. Like Blake said above, the popup will let you paginate multiple features. But if you want to display more than one popup content, you can use the Feature widget and display them somewhere else on the page like this sample that displays multiple Feature widgets.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/widgets-feature-multiplelayers/" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/sample-code/widgets-feature-multiplelayers/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 15:34:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1067947#M73487</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2021-06-14T15:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to show multiple popups simultaneously</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1069686#M73531</link>
      <description>&lt;P&gt;The problem with using View's UI is that it's not attached to the map, that is it doesn't stick to the map point but rather the screen point, so when a user drags the map or zoomins/zoomouts it's not ideal.&lt;BR /&gt;&lt;BR /&gt;So is there a way to avoid this issue ?&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 05:14:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1069686#M73531</guid>
      <dc:creator>SelectivelySocial</dc:creator>
      <dc:date>2021-06-18T05:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to show multiple popups simultaneously</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1069691#M73532</link>
      <description>&lt;P&gt;No this is not what I wanted, I just need to display the co-ordinates for the point clicked on the map and this solution is not at all ideal for that.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 05:30:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1069691#M73532</guid>
      <dc:creator>SelectivelySocial</dc:creator>
      <dc:date>2021-06-18T05:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to show multiple popups simultaneously</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1069822#M73536</link>
      <description>&lt;P&gt;I think in that case you'll need to &lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/watch-for-changes/" target="_self"&gt;listen for a click event&lt;/A&gt;&amp;nbsp;to capture the coordinate that was clicked, then use the &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GraphicsLayer.html" target="_self"&gt;GraphicsLayer&lt;/A&gt; to &lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=styling-icon-fonts" target="_self"&gt;display a TextSymbol&lt;/A&gt;&amp;nbsp;of the coordinate value. Graphics in the map are fixed to a certain location and move with the map. You'll also probably want a button on the UI for clearing the GraphicsLayer.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 18:33:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1069822#M73536</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2021-06-18T18:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to show multiple popups simultaneously</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1231888#M79334</link>
      <description>&lt;P&gt;Any luck with this ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am also trying to instantiate a popup but it doesn't show up on the map &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 18:22:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-show-multiple-popups-simultaneously/m-p/1231888#M79334</guid>
      <dc:creator>VictorBerchet</dc:creator>
      <dc:date>2022-11-15T18:22:23Z</dc:date>
    </item>
  </channel>
</rss>

