File: issue_296.result

package info (click to toggle)
node-carto 1.2.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,668 kB
  • sloc: javascript: 5,195; xml: 384; python: 33; makefile: 27
file content (37 lines) | stat: -rw-r--r-- 851 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE Map[]>
<Map>
<Style name="world" filter-mode="first" >
  <Rule>
    <Filter>([data_column] &gt;= 100)</Filter>
    <PolygonSymbolizer fill="#0000ff" />
  </Rule>
  <Rule>
    <Filter>([data_column] = null)</Filter>
    <PolygonSymbolizer fill="#ff0000" fill-opacity="0.5" />
  </Rule>
  <Rule>
    <PolygonSymbolizer fill="#808080" />
  </Rule>
</Style>
<Layer name="world">
    <StyleName>world</StyleName>
</Layer>
<Style name="sea" filter-mode="first" >
  <Rule>
    <Filter>([data_column] &gt;= 100)</Filter>
    <PolygonSymbolizer fill="#0000ff" />
  </Rule>
  <Rule>
    <Filter>([data_column] = null)</Filter>
    <PolygonSymbolizer fill="#ff0000" />
  </Rule>
  <Rule>
    <PolygonSymbolizer fill="#808080" />
  </Rule>
</Style>
<Layer name="sea">
  <StyleName>sea</StyleName>
</Layer>

</Map>