Select to view content in your preferred language

Remove Powered by ESRI in FlexViewer 2.1

4046
23
10-19-2010 05:30 AM
EricVenden
Frequent Contributor
I am pretty new to the Flex Viewer arena.  I am trying to find where the reference to the "Powered by ESRI" logo (lower right corner of the map window) is located.  I have found references in other older threads to the MapManager.mxml, but I cannot find this on the server (wondering if this is a version difference???)

Any help would be appreciated
Thanks
Eric Venden
Gurnee, IL
Tags (2)
0 Kudos
23 Replies
DasaPaddock
Esri Regular Contributor
In the new Flex Viewer 2.2 - you can remove the ESRI Logo in the config.xml
<esrilogovisible>


This goes on the map tag like this:
<map esrilogovisible="false">

For more options, see the help page at "Configure the Viewer" -> "Main configuration file":
http://help.arcgis.com/en/webapps/flexviewer/help/index.html
0 Kudos
glennhazelton
Deactivated User
...is there a way for a non- flex developer to remove the logo? Really we do not have the flex builder to be able to compile the sorce code if we make any changes ...


there is a sample that is compiled that give us allows those of us using 2.1 to turn off the ESRI logo without accessing the code.  http://www.arcgis.com/home/item.html?id=4837907e122246a893c9746a018fcd38
0 Kudos
JeffHarmon
Emerging Contributor
What if you are creating your application from scratch just using the the API and not Flex Viewer?  I have no MapManager.mxml.  Is there a snippet of code I can slip into the default.mxml to remove the logo?  Thanks.
0 Kudos
AniketWani
Esri Contributor
What if you are creating your application from scratch just using the the API and not Flex Viewer?  I have no MapManager.mxml.  Is there a snippet of code I can slip into the default.mxml to remove the logo?  Thanks.


Esri map has a property logovisible. You can set that to false, something like this.

<esri:Map logoVisible="false">

Read more : http://help.arcgis.com/en/webapi/flex/apiref/com/esri/ags/Map.html#logoVisible
0 Kudos