<BODY><P>Hi all,<BR>don't know where to post some improvement I've done. Don't know too, if I'm right to post that here :-| ... I've added some options to the Ruler widget as fellowing:<BR>Here is the xml tag:<BR> <Command xsi:type="FusionCommandType"><BR> <Name>Ruler</Name><BR> <Label></Label><BR> <Tooltip>Measure distance</Tooltip><BR> <Units>Meters</Units><BR> <Precision>10</Precision><BR> <RulerTooltipContainer>RulerContainerBox</RulerTooltipContainer><BR> <RulerTooltipType>dynamic</RulerTooltipType><BR> <!-- Only if Static --><BR> <RulerTipPositionTop>0</RulerTipPositionTop><BR> <RulerTipPositionLeft>100</RulerTipPositionLeft><BR> <ImageURL>images/icons/measure.png</ImageURL><BR> <TargetViewer>All</TargetViewer><BR> <Action>Ruler</Action><BR> </Command><BR><BR><BR><Precision> Allows to display fixed distances: Enter 10 for 0.1, 100 for 0.01, etc...<BR><BR><RulerTooltipContainer> The ID of a <div> you placed in the form for Distances display. When not given, a new div will be built on the fly.<BR><BR><RulerTooltipType> dynamic: the distance display box (div) will felow your Mouse, as already implemented.<BR>static: The distance display box (div) will be placed on a specific location, given by the 2 fellowing tags: <RulerTipPositionTop> and <RulerTipPositionLeft><BR><BR>---------------------------------------------<BR><BR>Put this code in your css file or in the <style></style> of your sheet. This enables to customise the appearance of the display box.<BR><BR>#RulerContainerBox {<BR> font: 12px tahoma<BR> position: absolute;<BR> width: 110px;<BR> float: left;<BR> border: solid #cc9966 2px;<BR> background-color: #B9C6E3;<BR> display : 'none';<BR> visibility : hidden;<BR>}<BR><BR><BR>What would be very nice, is to create an implementation of a tag, that allows to choose between distance measuring or area measuring. I'll try to do that in the next weeks...<BR><BR>Rémy</P></BODY>