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 });
Solved! Go to Solution.
You can try this solution for javascript api 4.6:
var view = new MapView({ ... });
view.ui._removeComponents(["attribution"]);
You are posting in the webapp builder section. This is not the JS API section.