Select to view content in your preferred language

remove esri logo

3220
4
07-06-2011 02:37 PM
ChrisBradberry
Deactivated User
Hey,

Does anybody know if you can remove the esri logo at the bottom right corner of the map?

Thanks,
Chris
0 Kudos
4 Replies
RahulMetangale
Emerging Contributor
Hi Chris,

Try MapApplication.Current.Map.IsLogoVisible=false;
0 Kudos
ChrisBradberry
Deactivated User
Rahul,

Where do you put that code?  I tried putting it in a text editor web part, but it did not work. 

Chris
0 Kudos
AlagiriVenkatachal
Esri Contributor
Hi Chris,
To do this, you could create a Map behavior by extending the Map Web Part as discussed in the below doc:

http://help.arcgis.com/en/webapps/sharepoint/help/WritingMapBehaviors.html

and illustrated in the Interactive SDK sample:

http://sharepoint.arcgis.com/SitePages/Disable%20Map%20Animation.aspx

Upon attaching the Behavior, you would have to make a call to "Map.IsLogoVisible = false"; this should make the logo not visible. You would get access to the Map through the AssociatedObject (shown in the above doc also).

-Alagiri
0 Kudos
RahulMetangale
Emerging Contributor
Hi Chris,

Attached is sample behavior to hide ESRI logo based on Alagiri's instructions.  Please follow the steps from following url to configure the behavior:
http://help.arcgis.com/en/webapps/sharepoint/help/ConfiguringExtensions.html

-Rahul
0 Kudos