Select to view content in your preferred language

Remove powered by ESRI logo

17326
11
Jump to solution
08-20-2015 04:12 PM
MichaelRobb
Honored Contributor

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
Honored Contributor

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

0 Kudos