ESRI watermark

3281
4
Jump to solution
03-28-2014 10:15 AM
jaykapalczynski
Frequent Contributor
Anyone know how to remove the ESRI water mark and replace with my logo of choice in the main MAP?

Thanks
0 Kudos
1 Solution

Accepted Solutions
JonathanUihlein
Esri Regular Contributor
Jay, instead of making a new thread for every question you have, you should spend some time searching the forum or reading our API. You will find that more often than not, someone else has asked your question and received an answer.

      var map = new Map("mapDiv", {         basemap: "topo",         center: [-92.593, 38.5],         zoom: 7,         showAttribution:false,         logo:false       });


Hide Logo and Attribution:
http://forums.arcgis.com/threads/59229-To-remove-powered-by-esri-logo
http://forums.arcgis.com/threads/34111-HOW-TO-Remove-the-esri-logo

Replace Logo with Own:
http://forums.arcgis.com/threads/41800-Replace-ESRI-logo-with-custom-logo

Also, you may want to read this legal documentation to make sure you can freely remove the logo:
http://www.esri.com/legal/pdfs/mla_e204_e300/english.pdf

View solution in original post

0 Kudos
4 Replies
JonathanUihlein
Esri Regular Contributor
Jay, instead of making a new thread for every question you have, you should spend some time searching the forum or reading our API. You will find that more often than not, someone else has asked your question and received an answer.

      var map = new Map("mapDiv", {         basemap: "topo",         center: [-92.593, 38.5],         zoom: 7,         showAttribution:false,         logo:false       });


Hide Logo and Attribution:
http://forums.arcgis.com/threads/59229-To-remove-powered-by-esri-logo
http://forums.arcgis.com/threads/34111-HOW-TO-Remove-the-esri-logo

Replace Logo with Own:
http://forums.arcgis.com/threads/41800-Replace-ESRI-logo-with-custom-logo

Also, you may want to read this legal documentation to make sure you can freely remove the logo:
http://www.esri.com/legal/pdfs/mla_e204_e300/english.pdf
0 Kudos
jaykapalczynski
Frequent Contributor
I can turn the logo off with "logo:false"

But in the bottom hand corner of the map I can still see "ESRI, DeLorme, FAO, USGS, NOAA, EPA, NPS"  anyway to get rid of that or is that a requirment when consuming the imagery from ArcGIS Online    "basemap: "topo"
0 Kudos
KenBuja
MVP Esteemed Contributor
You forgot

showAttribution:false


as Jonathan had posted
0 Kudos
jaykapalczynski
Frequent Contributor
Kicked myself in the head...duhhh....

Thanks!!!!
0 Kudos