ThinkGeo.com    |     Documentation    |     Premium Support

How do I change overlay switcher font

Hi,


I enabled the overlay switcher. I can only change the title and background color. The font size of each layer name is too small (looks like 6 or 8). How do I change the font?


Thanks,


Wilson Jiang


I have the following lines of codes:



MapSAM.MapTools.OverlaySwitcher.Enabled =



true;"Layers";GeoColor.StandardColors.Black;


MapSAM.MapTools.OverlaySwitcher.DynamicOverlayTitle =


MapSAM.MapTools.OverlaySwitcher.BackgroundColor =



 


Hi, Wilson
If you want to change the font size of the layer names, and client-side could implement your requirements with ease. Please refer to the codes below; it will change font side to 16.
    <script type="text/javascript">
        var OnMapCreated = function (map) {
            var control = map.getControl("LayerSwitcher");
            control.div.style.fontSize = 16;
        }
    </script>
 
If you have additional questions, please let us know.
Thanks,
Khalil