-
Notifications
You must be signed in to change notification settings - Fork 0
/
uni_colour.xml
53 lines (43 loc) · 1.18 KB
/
uni_colour.xml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<Map background-color='#000000' srs="+init=epsg:3857">
<Style name ="buildings">
<Rule>
<PolygonSymbolizer fill ="#CCCCCC"/>
</Rule>
</Style>
<Style name ="buildings_border">
<Rule>
<LineSymbolizer stroke ="#555555" stroke-width="0.5"/>
</Rule>
</Style>
<Style name ="road">
<Rule>
<LineSymbolizer stroke ="#171717" stroke-width="2" stroke-linecap="round"/>
</Rule>
</Style>
<Style name ="landuse" comp-op="multiply">
<Rule>
<Filter>[fclass]='park' or [fclass]='cemetery' or [fclass]='forest' or [fclass]='meadow' </Filter>
<PolygonSymbolizer fill="#125308" fill-opacity="0.8" />
</Rule>
</Style>
<Style name="water">
<Rule>
<PolygonSymbolizer fill="#1b3442"/>
</Rule>
</Style>
<Style name="raster">
<Rule>
<RasterSymbolizer scaling="bilinear" opacity="1">
</RasterSymbolizer>
</Rule>
</Style>
<Layer name="rast" status="on" srs="+init=epsg:4326">
<StyleName>raster</StyleName>
<Datasource>
<Parameter name="type">gdal</Parameter>
<Parameter name="file">myGeoTIFF.tif</Parameter>
<Parameter name="format">tiff</Parameter>
</Datasource>
</Layer>
</Map>