<?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: Map Components Info Div in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-components-info-div/m-p/1630758#M87337</link>
    <description>&lt;P&gt;You can currently add custom content to an expand using the `arcgis-placement` component inside expand.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-placement/" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-placement/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Here is your snippet updated.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;  &amp;lt;arcgis-map basemap="gray-vector" zoom="14" center="-88.1, 41.5"&amp;gt;
    &amp;lt;arcgis-search position="top-left"&amp;gt;&amp;lt;/arcgis-search&amp;gt;
    &amp;lt;arcgis-zoom position="top-left"&amp;gt;&amp;lt;/arcgis-zoom&amp;gt;
    &amp;lt;arcgis-home&amp;gt;&amp;lt;/arcgis-home&amp;gt;
    &amp;lt;arcgis-locate scale="5000"&amp;gt;&amp;lt;/arcgis-locate&amp;gt;
    &amp;lt;arcgis-swipe swipe-position="32"&amp;gt;&amp;lt;/arcgis-swipe&amp;gt;
    &amp;lt;arcgis-expand position="top-right"&amp;gt;
      &amp;lt;arcgis-layer-list&amp;gt;&amp;lt;/arcgis-layer-list&amp;gt;
    &amp;lt;/arcgis-expand&amp;gt;
    &amp;lt;arcgis-expand expand-icon="information" position="top-right"&amp;gt;
      &amp;lt;arcgis-placement&amp;gt;
        &amp;lt;div id="infoDiv"&amp;gt;

          &amp;lt;h2&amp;gt;Helpful Vocabulary*&amp;lt;/h2&amp;gt;
          &amp;lt;p&amp;gt;&amp;lt;b&amp;gt;CD&amp;lt;/b&amp;gt; Closed Depression Area-- low area of a field with no outlet that accumulates or receives
            runoff.
            In times of spring meltdown or heavy rainfall, runoff channels may form and deliver runoff water to
            closed depressions.
          &amp;lt;/p&amp;gt;

        &amp;lt;/div&amp;gt;
      &amp;lt;/arcgis-placement&amp;gt;
    &amp;lt;/arcgis-expand&amp;gt;
  &amp;lt;/arcgis-map&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;A href="https://codepen.io/odoe/pen/LEVwaqa?editors=1000" target="_blank"&gt;https://codepen.io/odoe/pen/LEVwaqa?editors=1000&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 07 Jul 2025 17:22:26 GMT</pubDate>
    <dc:creator>ReneRubalcava</dc:creator>
    <dc:date>2025-07-07T17:22:26Z</dc:date>
    <item>
      <title>Map Components Info Div</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-components-info-div/m-p/1630745#M87336</link>
      <description>&lt;P&gt;&lt;A href="https://codepen.io/underjollyroger/pen/raVXPvL" target="_self"&gt;example&lt;/A&gt;&lt;/P&gt;&lt;P&gt;How would I recreate this expandable "infoDiv" using map components? I don't understand how to get it in the view when there is no longer a view. I'd rather not create a html/css button outside the view.&lt;/P&gt;&lt;P&gt;This is the html of the app I'm currently creating.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;arcgis-map zoom="14" center="-88.1, 41.5"&amp;gt;
    &amp;lt;arcgis-search position="top-left"&amp;gt;&amp;lt;/arcgis-search&amp;gt;
    &amp;lt;arcgis-zoom position="top-left"&amp;gt;&amp;lt;/arcgis-zoom&amp;gt;
    &amp;lt;arcgis-home&amp;gt;&amp;lt;/arcgis-home&amp;gt;
    &amp;lt;arcgis-locate scale="5000"&amp;gt;&amp;lt;/arcgis-locate&amp;gt;
    &amp;lt;arcgis-swipe swipe-position="32"&amp;gt;&amp;lt;/arcgis-swipe&amp;gt;
    &amp;lt;arcgis-expand position="top-right"&amp;gt;
        &amp;lt;arcgis-layer-list&amp;gt;&amp;lt;/arcgis-layer-list&amp;gt;
    &amp;lt;/arcgis-expand&amp;gt;
&amp;lt;/arcgis-map&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 16:49:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-components-info-div/m-p/1630745#M87336</guid>
      <dc:creator>JaredPilbeam2</dc:creator>
      <dc:date>2025-07-07T16:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Map Components Info Div</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-components-info-div/m-p/1630758#M87337</link>
      <description>&lt;P&gt;You can currently add custom content to an expand using the `arcgis-placement` component inside expand.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-placement/" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-placement/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Here is your snippet updated.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;  &amp;lt;arcgis-map basemap="gray-vector" zoom="14" center="-88.1, 41.5"&amp;gt;
    &amp;lt;arcgis-search position="top-left"&amp;gt;&amp;lt;/arcgis-search&amp;gt;
    &amp;lt;arcgis-zoom position="top-left"&amp;gt;&amp;lt;/arcgis-zoom&amp;gt;
    &amp;lt;arcgis-home&amp;gt;&amp;lt;/arcgis-home&amp;gt;
    &amp;lt;arcgis-locate scale="5000"&amp;gt;&amp;lt;/arcgis-locate&amp;gt;
    &amp;lt;arcgis-swipe swipe-position="32"&amp;gt;&amp;lt;/arcgis-swipe&amp;gt;
    &amp;lt;arcgis-expand position="top-right"&amp;gt;
      &amp;lt;arcgis-layer-list&amp;gt;&amp;lt;/arcgis-layer-list&amp;gt;
    &amp;lt;/arcgis-expand&amp;gt;
    &amp;lt;arcgis-expand expand-icon="information" position="top-right"&amp;gt;
      &amp;lt;arcgis-placement&amp;gt;
        &amp;lt;div id="infoDiv"&amp;gt;

          &amp;lt;h2&amp;gt;Helpful Vocabulary*&amp;lt;/h2&amp;gt;
          &amp;lt;p&amp;gt;&amp;lt;b&amp;gt;CD&amp;lt;/b&amp;gt; Closed Depression Area-- low area of a field with no outlet that accumulates or receives
            runoff.
            In times of spring meltdown or heavy rainfall, runoff channels may form and deliver runoff water to
            closed depressions.
          &amp;lt;/p&amp;gt;

        &amp;lt;/div&amp;gt;
      &amp;lt;/arcgis-placement&amp;gt;
    &amp;lt;/arcgis-expand&amp;gt;
  &amp;lt;/arcgis-map&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;A href="https://codepen.io/odoe/pen/LEVwaqa?editors=1000" target="_blank"&gt;https://codepen.io/odoe/pen/LEVwaqa?editors=1000&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 17:22:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/map-components-info-div/m-p/1630758#M87337</guid>
      <dc:creator>ReneRubalcava</dc:creator>
      <dc:date>2025-07-07T17:22:26Z</dc:date>
    </item>
  </channel>
</rss>

