ThinkGeo.com    |     Documentation    |     Premium Support

Place a copyright notice on the map

Hi, 



I need to place a copyright notice on the maps that we render on the ThinkGeo
WPF Map Control and on bitmap images (GdiPlusGeoCanvas) which our code creates for
a map extent.



I need copyright text to be detached from the drawing of the Map itself and placed in a Map corner.
That way, when user pans the Map, the copyright text does not get pan along.





Do you have any code samples that show how to do this? 



Thanks,

Gene



Hi Gene,



There are two options to do this.



1. Please try the setting the LogoMapTool to show the copyright:


wpfMap1.MapTools.Logo.IsEnabled = true;
wpfMap1.MapTools.Logo.Source = new BitmapImage(new Uri(uri, UriKind.RelativeOrAbsolute));


The default value of Logo.IsEnabled value is true.



2. Use LogoAdornmentLayer or you can implement a custom adornment layer. The following url shows how to create a custom adornment layer.

wiki.thinkgeo.com/wiki/source_code_desktopeditionsample_graphiclogoadornmentlayer_cs_100128.zip




Thanks,


Peter