Last active
August 29, 2015 14:07
-
-
Save rmamba/65da8fccbb6e2d3b6036 to your computer and use it in GitHub Desktop.
mapnik_style.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Map background-color="#f2efe9" srs="+proj=latlong +datum=WGS84"> | |
<FontSet name="book-fonts"> | |
<Font face-name="DejaVu Sans Book" /> | |
</FontSet> | |
<Style name="highways"> | |
<Rule> | |
<Filter>[highway] <> ''</Filter> | |
<LineSymbolizer stroke="#808080" stroke-width="2" stroke-linejoin="round" | |
stroke-linecap="round" /> | |
</Rule> | |
<Rule> | |
<Filter>[highway] <> ''</Filter> | |
<TextSymbolizer name="[name]" fontset-name="book-fonts" size="9" fill="#0000" halo-radius="1" placement="line" /> | |
</Rule> | |
</Style> | |
<Layer name="highways" status="on" srs="+proj=latlong +datum=WGS84"> | |
<StyleName>highways</StyleName> | |
<Datasource> | |
<Parameter name="type">osm</Parameter> | |
<Parameter name="file">slovenia-latest.osm</Parameter> | |
</Datasource> | |
</Layer> | |
</Map> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment