<?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: Custom Buttons For OverviewMap in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/custom-buttons-for-overviewmap/m-p/756276#M69929</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Kelly, I tried the solution you suggested and found that I had to include '!important' in each of ther entries in my local css, then it worked fine. Thanks for your help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Jul 2012 07:13:19 GMT</pubDate>
    <dc:creator>TimSkinner</dc:creator>
    <dc:date>2012-07-31T07:13:19Z</dc:date>
    <item>
      <title>Custom Buttons For OverviewMap</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/custom-buttons-for-overviewmap/m-p/756273#M69926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is there a way to override the default Show Overview Map and Hide Overview Map button icons ? My users like the overview map, but want to know if they can change the icons. I have looked at the documentation for the dijit and also examined the HTML and CSS using firefox, but can't see an obvious way of doing it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2012 12:27:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/custom-buttons-for-overviewmap/m-p/756273#M69926</guid>
      <dc:creator>TimSkinner</dc:creator>
      <dc:date>2012-07-30T12:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Buttons For OverviewMap</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/custom-buttons-for-overviewmap/m-p/756274#M69927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Tim,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you take a look at the OverviewMap.css file using Firefox you'll see references to overview.png. This is a sprite that contains all the images used by the OverviewMap widget (see attached). You can replace these images with your own images by modifying the following css classes to point to your new image.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]16478[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;

.esriOverviewMap .ovwMaximize {
&amp;nbsp;&amp;nbsp;&amp;nbsp; background: url("../images/overview.png") repeat scroll 0 -130px transparent;
}
.esriOverviewMap .ovwRestore {
&amp;nbsp;&amp;nbsp;&amp;nbsp; background: url("../images/overview.png") repeat scroll 0 -104px transparent;
}

.esriOverviewMap.ovwTL .ovwShow, .esriOverviewMap.ovwBR .ovwHide {
&amp;nbsp;&amp;nbsp;&amp;nbsp; background: url("../images/overview.png") repeat scroll 0 -26px transparent;
}
.esriOverviewMap.ovwTR .ovwShow, .esriOverviewMap.ovwBL .ovwHide {
&amp;nbsp;&amp;nbsp;&amp;nbsp; background: url("../images/overview.png") repeat scroll 0 0 transparent;
}
.esriOverviewMap.ovwBL .ovwShow, .esriOverviewMap.ovwTR .ovwHide {
&amp;nbsp;&amp;nbsp;&amp;nbsp; background: url("../images/overview.png") repeat scroll 0 -78px transparent;
}
.esriOverviewMap.ovwBR .ovwShow, .esriOverviewMap.ovwTL .ovwHide {
&amp;nbsp;&amp;nbsp;&amp;nbsp; background: url("../images/overview.png") repeat scroll 0 -52px transparent;
}
.esriOverviewMap .logo-med, .esriOverviewMap .logo-sm, .esriOverviewMap .bingLogo-lg {
&amp;nbsp;&amp;nbsp;&amp;nbsp; display: none;
}

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 08:04:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/custom-buttons-for-overviewmap/m-p/756274#M69927</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-12T08:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Buttons For OverviewMap</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/custom-buttons-for-overviewmap/m-p/756275#M69928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks kelly, I'll give that a go.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2012 07:01:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/custom-buttons-for-overviewmap/m-p/756275#M69928</guid>
      <dc:creator>TimSkinner</dc:creator>
      <dc:date>2012-07-31T07:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Buttons For OverviewMap</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/custom-buttons-for-overviewmap/m-p/756276#M69929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Kelly, I tried the solution you suggested and found that I had to include '!important' in each of ther entries in my local css, then it worked fine. Thanks for your help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2012 07:13:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/custom-buttons-for-overviewmap/m-p/756276#M69929</guid>
      <dc:creator>TimSkinner</dc:creator>
      <dc:date>2012-07-31T07:13:19Z</dc:date>
    </item>
  </channel>
</rss>

