fix text_transform upgrade issue - thx ajashton - closes #621
This commit is contained in:
parent
207168fafc
commit
48f7533808
3 changed files with 31 additions and 5 deletions
1
AUTHORS
1
AUTHORS
|
@ -25,6 +25,7 @@ Patches
|
|||
=======
|
||||
|
||||
- Andy Allen
|
||||
- AJ Ashton
|
||||
- Justin Bronn
|
||||
- Christopher Brown
|
||||
- Toby Collet
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Map srs="+proj=merc +lon_0=0 +lat_ts=0 +x_0=0 +y_0=0 +ellps=WGS84 +datum=WGS84 +units=m +no_defs" bgcolor="steelblue">
|
||||
<Map srs="+proj=merc +lon_0=0 +lat_ts=0 +x_0=0 +y_0=0 +ellps=WGS84 +datum=WGS84 +units=m +no_defs" background-color="steelblue">
|
||||
<Style name="style">
|
||||
|
||||
<!-- Asia - default dark color behind light polygon
|
||||
|
|
|
@ -1,18 +1,43 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- see: http://trac.mapnik.org/changeset/574 -->
|
||||
|
||||
<Map bgcolor="transparent" srs="+proj=longlat +ellps=airy +datum=OSGB36 +no_defs">
|
||||
|
||||
<FileSource name="foo">../images/</FileSource>
|
||||
|
||||
<Style name="test">
|
||||
<Style name="test1">
|
||||
<Rule>
|
||||
<PolygonSymbolizer fill="lavender" fill-opacity=".5" />
|
||||
<PointSymbolizer base="foo" file="dummy.png" width="16" height="16" type="png" />
|
||||
<PolygonSymbolizer />
|
||||
</Rule>
|
||||
</Style>
|
||||
|
||||
<Style name="test2">
|
||||
<Rule>
|
||||
<LineSymbolizer stroke="green" stroke-opacity=".5"/>
|
||||
</Rule>
|
||||
</Style>
|
||||
|
||||
<Style name="test3">
|
||||
<Rule>
|
||||
<PointSymbolizer />
|
||||
</Rule>
|
||||
</Style>
|
||||
|
||||
<Layer name="lay" status="off" srs="+proj=longlat +ellps=airy +datum=OSGB36 +no_defs ">
|
||||
<StyleName>test2</StyleName>
|
||||
<Datasource>
|
||||
<Parameter name="type">shape</Parameter>
|
||||
<Parameter name="base">../../data/shp/</Parameter>
|
||||
<Parameter name="file">poly.shp</Parameter>
|
||||
</Datasource>
|
||||
</Layer>
|
||||
|
||||
<Layer name="lay" srs="+proj=longlat +ellps=airy +datum=OSGB36 +no_defs ">
|
||||
<StyleName>test</StyleName>
|
||||
<StyleName>test1</StyleName>
|
||||
<StyleName>test2</StyleName>
|
||||
<StyleName>test3</StyleName>
|
||||
<StyleName>test3</StyleName>
|
||||
<StyleName>test3</StyleName>
|
||||
<Datasource>
|
||||
<Parameter name="type">shape</Parameter>
|
||||
<Parameter name="base">../../data/shp/</Parameter>
|
||||
|
|
Loading…
Add table
Reference in a new issue