Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Since 2024.02. Instead of the circle symbol an custom svg can be configured. Every layer / time series set can have it's own symbol. The svg should only use the color black.

Code Block
languagexml
<dataLayer>
	<symbolSvg>triangle.svg</symbolSvg> <!--	from Config/IconFiles-->
	<timeSeriesSet>
		<moduleInstanceId>DummyImport</moduleInstanceId>
		<valueType>scalar</valueType>
		<parameterId>H.m</parameterId>
		<locationId>SX.E7842</locationId>
		<timeSeriesType>external historical</timeSeriesType>
		<timeStep unit="hour"/>
		<readWriteMode>read complete forecast</readWriteMode>
	</timeSeriesSet>
</dataLayer>


Code Block
languagexml
<?xml version="1.0"?>
<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg" version="1.1">
	<polygon points="0,10 5,0 10,10" fill="black"/>
</svg>
wmsLayer

Use this option to show an animated wms layer which will be downloaded from a WMS server.

...