3 |
|
|
4 |
Copyright (C) 2001, 2003, 2004 by Intevation GmbH |
Copyright (C) 2001, 2003, 2004 by Intevation GmbH |
5 |
Authors: |
Authors: |
6 |
Jan-Oliver Wagner <[email protected]> |
Jan-Oliver Wagner <[email protected]> |
7 |
Bernhard Herzog <[email protected]> |
Bernhard Herzog <[email protected]> |
8 |
|
|
9 |
This program is free software under the GPL (>=v2) |
This program is free software under the GPL (>=v2) |
153 |
<!-- the fill and stroke attributes can be either "None" or "#RRGGBB" |
<!-- the fill and stroke attributes can be either "None" or "#RRGGBB" |
154 |
RGB hex values |
RGB hex values |
155 |
|
|
156 |
All of fill, stroke and stroke_width may be omitted and default to |
All of fill, stroke, stroke_width and size may be omitted and default |
157 |
"None", "#000000" and "1" respectively. |
to "None", "#000000", "1" and "5" respectively. |
158 |
--> |
--> |
159 |
<!ATTLIST layer fill CDATA "None"> |
<!ATTLIST layer fill CDATA "None"> |
160 |
<!ATTLIST layer stroke CDATA "#000000"> |
<!ATTLIST layer stroke CDATA "#000000"> |
161 |
<!ATTLIST layer stroke_width CDATA "1"> |
<!ATTLIST layer stroke_width CDATA "1"> |
162 |
|
<!ATTLIST layer size CDATA "5"> |
163 |
|
|
164 |
|
|
165 |
<!-- a rasterlayer represents an image that has some geographic data |
<!-- a rasterlayer represents an image that has some geographic data |
202 |
the fill and stroke attributes can be either "None" or "#RRGGBB" |
the fill and stroke attributes can be either "None" or "#RRGGBB" |
203 |
RGB hex values |
RGB hex values |
204 |
|
|
205 |
All of fill, stroke and stroke_width may be omitted and default to |
TODO: Actually, 'size' is only sensible for points. But adding it to |
206 |
"None", "#000000" and "1" respectively. |
clpoint would not be enough since the 'size' must also be available |
207 |
|
for the clnull. And clnull again is applied for lines and polygons. |
208 |
|
So, at some later point, maybe with introducing symbols, this |
209 |
|
has to be improved. |
210 |
|
|
211 |
|
All of fill, stroke, stroke_width and size may be omitted and default to |
212 |
|
"None", "#000000", "1" and "5" respectively. |
213 |
--> |
--> |
214 |
<!ELEMENT cldata EMPTY> |
<!ELEMENT cldata EMPTY> |
215 |
<!ATTLIST cldata |
<!ATTLIST cldata |
216 |
stroke CDATA #IMPLIED |
stroke CDATA #IMPLIED |
217 |
stroke_width CDATA #IMPLIED |
stroke_width CDATA #IMPLIED |
218 |
fill CDATA #IMPLIED |
fill CDATA #IMPLIED |
219 |
|
size CDATA #IMPLIED |
220 |
> |
> |
221 |
|
|
222 |
|
|