Remove powered by ESRI logo

16170
11
Jump to solution
08-20-2015 04:12 PM
MichaelRobb
Occasional Contributor III

any pointers on how to remove the 'Powered by ESRI' Logo and image attributes?

JavaScript API would be setting it to false..  but where in these Web Apps would that be done?

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

11 Replies
RicardasKvedaravicius
New Contributor

You can try this solution for javascript api 4.6:

var view = new MapView({ ... });

view.ui._removeComponents(["attribution"]);

MichaelRobb
Occasional Contributor III

You are posting in the webapp builder section.  This is not the JS API section.

0 Kudos