Hi Sebastien,
To change the appearance of the coordinates and scale line text, you should customize the css style of the coordinates control and scale line control. For example, if you want to change the color of the text to white, just add some html following the definition of the map control like this:
[script removed]
</cc1:Map>
<style type="text/css">
div.olControlMousePosition
{
bottom: 0em;
right: 3px;
display: block;
position: absolute;
font-family: Arial, Helvetica, sans-serif;
font-size: x-small;
color: White;
background-color: Black;
}
.olControlScaleLine
{
background-color: Black;
left: 10px;
bottom: 15px;
font-family: Arial, Helvetica, sans-serif;
font-size: xx-small;
color: White;
}
</style>
Any more questions please let me know.
Thanks,
Sun