<?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: Popup questions - only showing if I'm zoomed in very close, etc. in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-questions-only-showing-if-i-m-zoomed-in-very/m-p/746472#M69074</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there, I was wondering if there was any update on this. I too have noticed the hamburger disappear. Bug or no longer supported?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Apr 2019 14:21:56 GMT</pubDate>
    <dc:creator>WillFolsom</dc:creator>
    <dc:date>2019-04-17T14:21:56Z</dc:date>
    <item>
      <title>Popup questions - only showing if I'm zoomed in very close, etc.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-questions-only-showing-if-i-m-zoomed-in-very/m-p/746471#M69073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am currently pulling in a map service as a MapImageLayer.&amp;nbsp; I'm using the IdentifyTask to display results in a popup; however, I'm having a few issues:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I've noticed that if I have any custom actions in the popup, it no longer shows that action neatly next to the "Zoom To" action as though there's not room.&amp;nbsp; It hides it behind the "..." menu.&amp;nbsp; In order to have the custom actions shown directly in the popup and not have to click through, I have to set overwriteActions to true and get rid of "Zoom To" entirely.&amp;nbsp; Is there an option somewhere i can change, so that both can show?&amp;nbsp;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;When using the popup to show results of the identify task, it won't show the feature (list) menu.&amp;nbsp; There are still arrows so that I can cycle through results, but there's no longer the hamburger menu style button to show me a list of features to choose from.&amp;nbsp; If i set featureMenuOpen to true in the popup template, it IS there when I first click on something; but once I choose a feature, it disappears and I'm back to arrows only.&amp;nbsp; Any ideas on why that is, or how to re-enable the feature menu?&lt;/LI&gt;&lt;LI&gt;For some of the layers in my MapImageService, when I click on the feature, it won't show a popup for it... unless i zoom in very, very close.&amp;nbsp; The layer itself shows up when I'm zoomed out, but when I click, it returns nothing.&amp;nbsp; One in particular is a polygon layer (parcels) and I can click in the middle of a very large one, so pixel tolerance shouldn't be an issue.&amp;nbsp; However, I still have to zoom in very close in order to get a popup for it.&amp;nbsp; Any suggestions on how to get popups to show for these without having to zoom in?&amp;nbsp; It doesn't matter if I have the layer options set to "visible" or "all", the behavior remains the same.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Relevant code snippets:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mapView = new MapView({&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;container: app.containerMap,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;map: map,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;center: app.center,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;zoom: 9,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;padding: app.viewPadding,&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;popup: {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;highlightEnabled: true,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;featureNavigationEnabled : true&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var tLayer= new MapImageLayer({&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;url: "https://server/arcgis/rest/services/tViewerr/tLayers/MapServer"&lt;BR /&gt; });&lt;BR /&gt; map.add(tLayer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mapView.on("click", executeIdentifyTask);&lt;BR /&gt; &lt;BR /&gt; function executeIdentifyTask(event){&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;identifyURL = &lt;SPAN&gt;tLayer&lt;/SPAN&gt;.url;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;identifyTask = new IdentifyTask(identifyURL);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;identifyParams = new IdentifyParameters();&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;var identifyActions = [];&lt;BR /&gt;&amp;nbsp; &amp;nbsp;identifyParams.tolerance = 15;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;identifyParams.returnGeometry = true;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;identifyParams.layerIds = &amp;nbsp;&amp;nbsp;&amp;nbsp;[2,3,4,5,6];&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;identifyParams.geometry = event.mapPoint;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;identifyParams.mapExtent = mapView.extent;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;identifyTask.execute(identifyParams).then(function(response){ &lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var results = response.results; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return results.map(function(result){&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var feature = result.feature;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;identifyActions = createIdentifyActions(result);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var layerName = result.layerName;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;feature.popupTemplate = {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;title: layerName,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;content: "{*}",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;overwriteActions: true,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; actions: identifyActions&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}; &lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return feature;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;BR /&gt; }).then(showPopup);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function showPopup(response){&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;if (response.length &amp;gt; 0) {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mapView.popup.open({&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;features: response,&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;location: event.mapPoint&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}); &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mapView.popup.on("trigger-action", triggerPopupActions)&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Mar 2019 04:09:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-questions-only-showing-if-i-m-zoomed-in-very/m-p/746471#M69073</guid>
      <dc:creator>KarenEllett</dc:creator>
      <dc:date>2019-03-10T04:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Popup questions - only showing if I'm zoomed in very close, etc.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-questions-only-showing-if-i-m-zoomed-in-very/m-p/746472#M69074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there, I was wondering if there was any update on this. I too have noticed the hamburger disappear. Bug or no longer supported?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2019 14:21:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-questions-only-showing-if-i-m-zoomed-in-very/m-p/746472#M69074</guid>
      <dc:creator>WillFolsom</dc:creator>
      <dc:date>2019-04-17T14:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Popup questions - only showing if I'm zoomed in very close, etc.</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-questions-only-showing-if-i-m-zoomed-in-very/m-p/1099298#M74693</link>
      <description>&lt;P&gt;Hey, any issues to fix this yet do we know? I'm pulling in a popup for a raster, from a layer hosted in the Atlas (URL), same issue occurring, pop up only shows when zoomed right in&lt;/P&gt;</description>
      <pubDate>Fri, 17 Sep 2021 08:36:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-questions-only-showing-if-i-m-zoomed-in-very/m-p/1099298#M74693</guid>
      <dc:creator>Chris_Bean</dc:creator>
      <dc:date>2021-09-17T08:36:02Z</dc:date>
    </item>
  </channel>
</rss>

