remove GIS watermark

2389
4
Jump to solution
01-31-2014 06:00 AM
jaykapalczynski
Frequent Contributor
In my MapDiv There is a water mark with Sources and Powered By ESRI in the bottom right hand corner
Can I remove this?  I think I removed it in my Silverlight app but cant remember....
Maybe replace with my own images?

[ATTACH=CONFIG]31015[/ATTACH]

Thanks
0 Kudos
1 Solution

Accepted Solutions
AnthonyGiles
Frequent Contributor
Jay,

Add the showAttribution and logo attributes to your map class, eg:

map = new Map("map", {
fitExtent: true,
showAttribution: false,
logo: false,
zoom: 10,
center: [-78.89433, 35.996321]
});

Regards

Anthony

View solution in original post

0 Kudos
4 Replies
AnthonyGiles
Frequent Contributor
Jay,

Add the showAttribution and logo attributes to your map class, eg:

map = new Map("map", {
fitExtent: true,
showAttribution: false,
logo: false,
zoom: 10,
center: [-78.89433, 35.996321]
});

Regards

Anthony
0 Kudos
jaykapalczynski
Frequent Contributor
thanks....that was it...similar in Silverlight...
Cheers
0 Kudos
SteveCole
Frequent Contributor
I think what you want is to set the showAttribution property of the map object to false.

There is also an attribution class for you to define your own attribution. I haven't personally done this.
0 Kudos
ErwinSoekianto
Esri Regular Contributor
you should read license agreements here: http://www.esri.com/legal/pdfs/mla_e204_e300/english.pdf

4.2 (g) Licensee shall not remove or obscure any Esri or its licensors' patent, copyright, trademark, or proprietary rights notices contained in or affixed to Software, Data, Web Services, or Documentation.
0 Kudos