<?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: List pointing to different maps in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/list-pointing-to-different-maps/m-p/1251242#M7241</link>
    <description>&lt;P&gt;You might want to look at Experience Builder. Use a section widget to create multiple views. Each view would be a different map and then the view navigation widget would be your list of maps.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://doc.arcgis.com/en/experience-builder/latest/configure-widgets/section-widget.htm" target="_self"&gt;Section Widget&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://doc.arcgis.com/en/experience-builder/latest/configure-widgets/view-navigation-widget.htm" target="_self"&gt;View Navigation Widget&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Jan 2023 13:45:20 GMT</pubDate>
    <dc:creator>JenniferAcunto</dc:creator>
    <dc:date>2023-01-25T13:45:20Z</dc:date>
    <item>
      <title>List pointing to different maps</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/list-pointing-to-different-maps/m-p/1250836#M7230</link>
      <description>&lt;P&gt;Hi, everybody.&lt;/P&gt;&lt;P&gt;I would like to have a list of several maps and when I click one item, the map is showed in the map widget.&lt;/P&gt;&lt;P&gt;Anyone knows if there is a way to do this? I think I need a turn around. Something like an html list to add all maps but then I don't know how to specify the target window.&lt;/P&gt;&lt;P&gt;Or maybe if a service have several maps I can improve the configurations to do this. I really don't know. Any help?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Luís&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 16:02:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/list-pointing-to-different-maps/m-p/1250836#M7230</guid>
      <dc:creator>LMBaptista</dc:creator>
      <dc:date>2023-01-24T16:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: List pointing to different maps</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/list-pointing-to-different-maps/m-p/1250859#M7231</link>
      <description>&lt;P&gt;You can't really do this with a Map widget, as the widget will have a fixed source. You could, however, use an Embed widget. Together with a Data Expression for your list.&lt;/P&gt;&lt;P&gt;Create a list and use the following Data Expression. Extend the &lt;STRONG&gt;features&lt;/STRONG&gt; array and adjust the map names and itemIDs as needed.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;return FeatureSet(Text(
    {
        fields: [
            {name: 'map_name', type: 'esriFieldTypeString'},
            {name: 'itemid', type: 'esriFieldTypeString'}
        ],
        geometryType: '',
        features: [
            {attributes: {
                map_name: 'First Map',
                itemid: '2a0707009029489298f304fbf86641a3'
            }},
            {attributes: {
                map_name: 'Second Map',
                itemid: 'f558f04d000e4699a44561559ccae363'
            }},
            {attributes: {
                map_name: 'Third Map',
                itemid: '24d2a083327443dab1100fa68baafa14'
            }}]
    }))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Then you can configure your list to show the map name.&lt;/P&gt;&lt;P&gt;Next, create an embedded content widget, link it to the same datasource, and set the URL to&lt;/P&gt;&lt;PRE&gt;https://arcgis.com/apps/mapviewer/index.html?webmap={itemid}&lt;/PRE&gt;&lt;P&gt;Don't forget to add a filter action to the list! Now click your map list and watch the embed update!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Peek 2023-01-24 10-25.gif" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/61072i51412C323B62DCC0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Peek 2023-01-24 10-25.gif" alt="Peek 2023-01-24 10-25.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;You'll notice, of course, that the whole interface needs to load for each map, which could be jarring. You might not want the menus to appear. I'd suggest wrapping each map in a Minimal app or something, and using the embed to display &lt;EM&gt;those &lt;/EM&gt;instead. You could also adjust the expression to hold the entire URL, in the event that not all items are in the same type of app.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 24 Jan 2023 16:28:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/list-pointing-to-different-maps/m-p/1250859#M7231</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2023-01-24T16:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: List pointing to different maps</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/list-pointing-to-different-maps/m-p/1251209#M7236</link>
      <description>&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;I'll try this&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":ok_hand:"&gt;👌&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 11:55:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/list-pointing-to-different-maps/m-p/1251209#M7236</guid>
      <dc:creator>LMBaptista</dc:creator>
      <dc:date>2023-01-25T11:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: List pointing to different maps</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/list-pointing-to-different-maps/m-p/1251242#M7241</link>
      <description>&lt;P&gt;You might want to look at Experience Builder. Use a section widget to create multiple views. Each view would be a different map and then the view navigation widget would be your list of maps.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://doc.arcgis.com/en/experience-builder/latest/configure-widgets/section-widget.htm" target="_self"&gt;Section Widget&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://doc.arcgis.com/en/experience-builder/latest/configure-widgets/view-navigation-widget.htm" target="_self"&gt;View Navigation Widget&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 13:45:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/list-pointing-to-different-maps/m-p/1251242#M7241</guid>
      <dc:creator>JenniferAcunto</dc:creator>
      <dc:date>2023-01-25T13:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: List pointing to different maps</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/list-pointing-to-different-maps/m-p/1251788#M7257</link>
      <description>&lt;P&gt;Thank you, Jennifer.&lt;/P&gt;&lt;P&gt;That looks like an easy solution that fits the needs. Nice &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2023 09:16:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/list-pointing-to-different-maps/m-p/1251788#M7257</guid>
      <dc:creator>LMBaptista</dc:creator>
      <dc:date>2023-01-26T09:16:34Z</dc:date>
    </item>
  </channel>
</rss>

