20 lines
693 B
XML
20 lines
693 B
XML
|
<Map>
|
||
|
|
||
|
<!--
|
||
|
totally arbirary Parameters can also be attached to the map
|
||
|
which will be respected during serialization.
|
||
|
|
||
|
This makes it easier for calling applications that work with mapnik
|
||
|
xml, and leverage its serialization, to pass through directives that
|
||
|
the calling application needs which describe how to handle the map.
|
||
|
-->
|
||
|
|
||
|
<Parameters>
|
||
|
<Parameter name="key"><![CDATA[value]]></Parameter>
|
||
|
<!-- this one will override previous key with same name -->
|
||
|
<Parameter name="key"><![CDATA[value2]]></Parameter>
|
||
|
<Parameter name="key3"><![CDATA[value3]]></Parameter>
|
||
|
<Parameter name="unicode"><![CDATA[iván]]></Parameter>
|
||
|
</Parameters>
|
||
|
|
||
|
</Map>
|