To remove powered by esri logo

9308
5
Jump to solution
06-05-2012 12:37 AM
PramodHarithsa1
Occasional Contributor II
What is actually causing the logo to appear?
I am using api and base map from esri's server ! How can i remove it.. ?
How do i eliminate this dependancy?
0 Kudos
1 Solution

Accepted Solutions
nicogis
MVP Frequent Contributor
Display the esri logo on the map. The default value is true.

You can set false

map = new esri.Map("map", {    extent: initExtent,    logo:false  });

View solution in original post

5 Replies
nicogis
MVP Frequent Contributor
Display the esri logo on the map. The default value is true.

You can set false

map = new esri.Map("map", {    extent: initExtent,    logo:false  });
PramodHarithsa1
Occasional Contributor II
Thanks Domenico,
and how do i replace the logo with some other image?
0 Kudos
nicogis
MVP Frequent Contributor
0 Kudos
PramodHarithsa1
Occasional Contributor II
0 Kudos
SrikanthNarra
New Contributor
Hi Mr.Pramod,
   Apply the style to map
<style type="text/css">
         .map .logo-med, .map .logo-sm {
             background-image: url("http://mapserv.utah.gov/CDN/images/agrc_map_logo_small.png") !important;/*your logo */
             border:0;
             bottom: 5px;
             cursor: pointer;
             height: 25px !important; /* size of your image */
             position: absolute;
             right: 5px;
             width: 48px !important;/* size of your image */
             z-index: 49;
</style>
0 Kudos