我编写了一些 SLD 代码来设置我的地图图层的样式,该图层存储在 GeoServer 上。SLD 的 GeoServer 输入窗口没有显示任何错误消息,但是当我在 OpenLayers 中打开我的地图时,它没有按我的意愿显示地图。在这种情况下,我的意图是将国家多边形着色为类似于安全级别(我的 postgres 数据库中的小数),以便最终危险区域应该像红色和安全区域像绿色。
我的代码:
<!-- Template taken from: http://docs.geoserver.org/stable/en/user/styling/sld/cookbook/polygons.html#attribute-based-polygon -->
<?xml version="1.0" encoding="UTF-8"?>
<sld:UserStyle xmlns="http://www.opengis.net/sld" xmlns:sld="http://www.opengis.net/sld" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml">
<sld:Title/>
<FeatureTypeStyle>
<Rule>
<Name>HighRisk</Name>
<Title>WGI < -0.5</Title>
<ogc:Filter>
<ogc:PropertyIsLessThan>
<ogc:PropertyName>wgi</ogc:PropertyName>
<ogc:Literal>-0.5</ogc:Literal>
</ogc:PropertyIsLessThan>
</ogc:Filter>
<PolygonSymbolizer>
<Fill>
<CssParameter name="fill">#fc8d59</CssParameter>
</Fill>
</PolygonSymbolizer>
</Rule>
<Rule>
<Name>MediumRisk</Name>
<Title>WGI > -0.5 und < 0.5</Title>
<ogc:Filter>
<ogc:And>
<ogc:PropertyIsGreaterThanOrEqualTo>
<ogc:PropertyName>wgi</ogc:PropertyName>
<ogc:Literal>-0.5</ogc:Literal>
</ogc:PropertyIsGreaterThanOrEqualTo>
<ogc:PropertyIsLessThan>
<ogc:PropertyName>wgi</ogc:PropertyName>
<ogc:Literal>0.5</ogc:Literal>
</ogc:PropertyIsLessThan>
</ogc:And>
</ogc:Filter>
<PolygonSymbolizer>
<Fill>
<CssParameter name="fill">#ffffbf</CssParameter>
</Fill>
</PolygonSymbolizer>
</Rule>
<Rule>
<Name>LowRisk</Name>
<Title>WGI > 0.5</Title>
<ogc:Filter>
<ogc:PropertyIsGreaterThan>
<ogc:PropertyName>WGI</ogc:PropertyName>
<ogc:Literal>0.5</ogc:Literal>
</ogc:PropertyIsGreaterThan>
</ogc:Filter>
<PolygonSymbolizer>
<Fill>
<CssParameter name="fill">#91cf60</CssParameter>
</Fill>
</PolygonSymbolizer>
</Rule>
<Rule>
<Title>Boundary</Title>
<LineSymbolizer>
<Stroke>
<CssParameter name="stroke-width">0.2</CssParameter>
<CssParameter name="stroke">#e2e2e2</CssParameter>
</Stroke>
</LineSymbolizer>
<TextSymbolizer>
<Label>
<ogc:PropertyName>STATE_ABBR</ogc:PropertyName>
</Label>
<Font>
<CssParameter name="font-family">Times New Roman</CssParameter>
<CssParameter name="font-style">Normal</CssParameter>
<CssParameter name="font-size">14</CssParameter>
</Font>
<LabelPlacement>
<PointPlacement>
<AnchorPoint>
<AnchorPointX>-0.5</AnchorPointX>
<AnchorPointY>0.5</AnchorPointY>
</AnchorPoint>
</PointPlacement>
</LabelPlacement>
</TextSymbolizer>
</Rule>
</FeatureTypeStyle>
</sld:UserStyle>
不幸的是,到目前为止,我的地图看起来像这样:
任何帮助和提示表示赞赏!