<?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: Remove the footer on the Map displayed in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472091#M43757</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Depending on skill level you can code it out&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/en/javascript/jsapi/attribution-amd.html#destroy" rel="nofollow noopener noreferrer" target="_blank"&gt;https://developers.arcgis.com/en/javascript/jsapi/attribution-amd.html#destroy&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;or easy option&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;.esriAttribution {
display: none;
}&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in the css or create custom css page and add&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 20:52:48 GMT</pubDate>
    <dc:creator>AndyBurns</dc:creator>
    <dc:date>2021-12-11T20:52:48Z</dc:date>
    <item>
      <title>Remove the footer on the Map displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472090#M43756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are dynamically creating map by passing the lat and long parameter using the javascript api for ARCgis. However the default footer is displayed on map has to be removed. Can you please let me know how to remove the footer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;attached is the picture for the same&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 02:39:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472090#M43756</guid>
      <dc:creator>sunithanaik</dc:creator>
      <dc:date>2014-01-07T02:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: Remove the footer on the Map displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472091#M43757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Depending on skill level you can code it out&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/en/javascript/jsapi/attribution-amd.html#destroy" rel="nofollow noopener noreferrer" target="_blank"&gt;https://developers.arcgis.com/en/javascript/jsapi/attribution-amd.html#destroy&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;or easy option&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;.esriAttribution {
display: none;
}&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in the css or create custom css page and add&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:52:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472091#M43757</guid>
      <dc:creator>AndyBurns</dc:creator>
      <dc:date>2021-12-11T20:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Remove the footer on the Map displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472092#M43758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;instead of destroying or hiding it, why not just turn it off?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;map = new Map("map", { showAttribution: false });&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 11:37:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472092#M43758</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2014-01-07T11:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Remove the footer on the Map displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472093#M43759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff's option is the best, go for that one!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers Jeff, did not realize you could just turn it off like i use with the logo normally so thats changed some code for me!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jan 2014 06:43:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472093#M43759</guid>
      <dc:creator>AndyBurns</dc:creator>
      <dc:date>2014-01-08T06:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: Remove the footer on the Map displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472094#M43760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Jeff!&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I did what you suggested and it solved the problem&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2014 07:08:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472094#M43760</guid>
      <dc:creator>sunithanaik</dc:creator>
      <dc:date>2014-01-13T07:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Remove the footer on the Map displayed</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472095#M43761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sunitha, make sure you mark the thread as 'answered' (via the appropriate post) so that in the future, other people with a similar question can find the answer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jan 2014 14:59:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/remove-the-footer-on-the-map-displayed/m-p/472095#M43761</guid>
      <dc:creator>JonathanUihlein</dc:creator>
      <dc:date>2014-01-14T14:59:14Z</dc:date>
    </item>
  </channel>
</rss>

